直播添加标签
This commit is contained in:
@@ -1,15 +1,20 @@
|
||||
const install = (Vue, vm) => {
|
||||
// 此为自定义配置参数,具体参数见上方说明
|
||||
Vue.prototype.$u.http.setConfig({
|
||||
baseUrl: 'https://dmmall.sdbairui.com//storeapi/',
|
||||
baseUrl: 'https://dmmall.sdbairui.com//storeapi',
|
||||
loadingText: '努力加载中~',
|
||||
loadingTime: 800,
|
||||
// 设置自定义头部content-type
|
||||
// header: {
|
||||
// 'content-type': 'xxx'
|
||||
// "Authorization" : "122"
|
||||
// }
|
||||
// ......
|
||||
});
|
||||
});
|
||||
Vue.prototype.$u.http.interceptor.request = (config) => {
|
||||
const token = uni.getStorageSync('token');
|
||||
config.header.Authorization = 'Bearer' + " " + token;
|
||||
return config;
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
|
||||
Reference in New Issue
Block a user