1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import Vue from 'vue'
- import App from './App'
- import store from './store/store.js'
- import { $http } from '@escook/request-miniprogram'
- uni.$http = $http
- $http.baseUrl = 'https://hometeacher2.natappvip.cc'
- uni.$wsLocation = 'wss://hometeacher2.natappvip.cc'
- uni.$showMsg = function (title = '数据加载失败!', duration = 1500) {
- uni.showToast({
- title,
- duration,
- icon: 'none',
- })
- }
- $http.beforeRequest = function(options) {
- uni.showLoading({
- title: '数据加载中'
- })
- this.header = {
- token: uni.getStorageSync('token')
- }
- }
- $http.afterRequest = res => {
- uni.hideLoading()
- if (!res.data.success) {
- uni.$showMsg(res.data.message)
- if (res.data.message === '登录过期,请重新登录') {
- uni.setStorageSync('token', '')
- setTimeout(() => {
- uni.redirectTo({
- url:'/subpkg/my/user/my_user_login'
- })
- }, 500);
- }
- }
- }
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App,
-
- store
- })
- app.$mount()
- import { createSSRApp } from 'vue'
- import App from './App.vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
|