1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // #ifndef VUE3
- import Vue from 'vue'
- import App from './App'
- // 导入网络请求的包
- import { $http } from '@escook/request-miniprogram'
- uni.$http = $http
- // 请求拦截器
- $http.beforeRequest = function(options) {
- uni.showLoading({
- title: '数据加载中'
- })
- }
- // 请求的根路径
- $http.baseUrl = 'https://www.uinav.com'
- // 响应拦截器
- import { $http } from '@escook/request-miniprogram'
- $http.afterRequest = function() {
- uni.hideLoading()
- }
- // 封装弹窗的方法
- uni.$showMsg = function (title = '数据加载失败!', duration = 1500) {
- uni.showToast({
- title,
- duration,
- icon: 'none',
- })
- }
- 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
- }
- }
- // #endif
|