This commit is contained in:
2025-12-25 08:26:09 +08:00
parent ab5c01bf5c
commit 964e4f9c33
72 changed files with 2474 additions and 1065 deletions

View File

@@ -26,7 +26,6 @@ Vue.mixin(mpShare)
Vue.component('customNavbar', customNavbar)
Vue.component('AuthLogin', AuthLogin)
Vue.component('PhoneSelect', PhoneSelect)
const app = new Vue({
store,
...App
@@ -34,8 +33,9 @@ const app = new Vue({
// http拦截器将此部分放在new Vue()和app.$mount()之间才能App.vue中正常使用
import httpInterceptor from '@/common/http.interceptor.js';
Vue.use(httpInterceptor, app);
// 挂载自定义 http 封装
Vue.use(httpInterceptor, app);
// 封装自定义提示框
import $mytip from 'common/utils/tip.js'
Vue.prototype.$mytip = $mytip