加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lumos 提交于 2022-12-09 16:51 . 提交代码
import App from './App'
import Vue from 'vue'
// 导入store
import store from './store/store.js'
// 引入uview插件
// 引入escook/request-miniprogram
import {$http} from '@escook/request-miniprogram'
// 将$http挂载在uni对象上
uni.$http = $http;
// 配置请求根路径
$http.baseUrl = 'https://api-hmugo-web.itheima.net'
// 请求拦截器
$http.beforeRequest = function (options){
uni.showLoading({
title:"数据加载中..."
})
}
// 响应拦截器
$http.afterRequest = function () {
uni.hideLoading()
}
// 封装uni.$showMsg()方法
// 为uni对象挂载自定义的$showMsg()方法
uni.$showMsg = function (title = '数据加载失败', duration = 1500){
uni.showToast({
title,
duration,
icon: 'none'
})
}
Vue.config.productionTip = false
App.mpType = 'app'
import uview from 'uview-ui'
Vue.use(uview)
const app = new Vue({
...App,
store
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化