2024-11-13 09:42:42 +08:00
|
|
|
|
// #ifndef VUE3
|
|
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
import uView from '@/uni_modules/uview-ui'
|
|
|
|
|
|
Vue.use(uView)
|
|
|
|
|
|
import App from './App'
|
|
|
|
|
|
import {
|
|
|
|
|
|
$http
|
|
|
|
|
|
} from '@escook/request-miniprogram'
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
uni.$http = $http
|
2025-10-11 10:37:07 +08:00
|
|
|
|
$http.baseUrl = 'http://223.75.53.141:83'
|
|
|
|
|
|
// $http.baseUrl = 'http://local.gunshiiot.com:18083'
|
2025-09-30 17:23:21 +08:00
|
|
|
|
// $http.baseUrl = 'http://192.168.66.27:24105'
|
2024-11-13 09:42:42 +08:00
|
|
|
|
// 请求拦截器
|
|
|
|
|
|
$http.beforeRequest = function (options) {
|
2025-12-12 11:08:38 +08:00
|
|
|
|
if (options.url.indexOf('/login') == -1) {
|
2024-11-13 09:42:42 +08:00
|
|
|
|
options.header = {
|
2025-12-12 11:08:38 +08:00
|
|
|
|
...(options.header || {}),
|
|
|
|
|
|
'Authorization': 'Bearer ' + uni.getStorageSync('Gs-Token'),
|
|
|
|
|
|
loginType: 1
|
2024-11-13 09:42:42 +08:00
|
|
|
|
}
|
2025-12-12 11:08:38 +08:00
|
|
|
|
// if (options.url.indexOf('/gunshiApp/tsg/visitMenuLog/insert') !== -1) {
|
|
|
|
|
|
// options.header = {
|
|
|
|
|
|
// ...options.header,
|
|
|
|
|
|
// loginType: 1
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }
|
2024-11-13 09:42:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 响应拦截器
|
|
|
|
|
|
$http.afterRequest = function (options) {
|
|
|
|
|
|
if (options.data.code == 405) {
|
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
|
url: '/pages/login/login'
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
// uni.hideLoading()
|
|
|
|
|
|
}
|
2025-11-06 15:56:02 +08:00
|
|
|
|
uni.$showMsg = function (title, duration = 1500) {
|
|
|
|
|
|
// 空文案时不弹toast,避免出现一个小黑点的空提示
|
|
|
|
|
|
if (!title) return;
|
|
|
|
|
|
return uni.showToast({
|
|
|
|
|
|
title: String(title),
|
|
|
|
|
|
duration,
|
|
|
|
|
|
icon: 'none'
|
|
|
|
|
|
})
|
2024-11-13 09:42:42 +08:00
|
|
|
|
}
|
2025-09-26 17:15:37 +08:00
|
|
|
|
uni.$stcd = '61610700'
|
2024-11-13 09:42:42 +08:00
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
App.mpType = 'app'
|
|
|
|
|
|
|
|
|
|
|
|
const app = new Vue({
|
|
|
|
|
|
...App
|
|
|
|
|
|
})
|
|
|
|
|
|
app.$mount()
|
|
|
|
|
|
// #endif
|
|
|
|
|
|
|
|
|
|
|
|
// #ifdef VUE3
|
|
|
|
|
|
import {
|
|
|
|
|
|
createSSRApp
|
|
|
|
|
|
} from 'vue'
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
|
export function createApp() {
|
|
|
|
|
|
const app = createSSRApp(App)
|
|
|
|
|
|
return {
|
|
|
|
|
|
app
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-12-12 11:08:38 +08:00
|
|
|
|
// #endif
|