路由 uview升级 api

This commit is contained in:
2020-07-16 10:02:57 +08:00
parent 6e727816ce
commit a2f522479b
6 changed files with 70 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
const install = (Vue, vm) => {
// 此为自定义配置参数,具体参数见上方说明
Vue.prototype.$u.http.setConfig({
baseUrl: 'https://dmmall.sdbairui.com//storeapi/',
loadingText: '努力加载中~',
loadingTime: 800,
// 设置自定义头部content-type
// header: {
// 'content-type': 'xxx'
// }
// ......
});
}
export default {
install
}