1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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()
- import { createSSRApp } from 'vue'
- import App from './App.vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
|