app.js 196 B

12345678910111213141516
  1. import {
  2. ApiModel
  3. } from './utils/Api';
  4. App({
  5. onLaunch() {
  6. wx.getSystemInfo({
  7. success (res) {
  8. console.log(res)
  9. }
  10. })
  11. },
  12. globalData: {
  13. http: new ApiModel(), //接口文件
  14. }
  15. })