import Vue from 'vue' import App from './App' import uView from "uview-ui"; import {minRequest, flowableRequest, admRequest, getWxconfig} from './pages/common/min.js' import {parseTime} from './pages/common/parseTime.js' Vue.config.productionTip = false Vue.prototype.request = minRequest Vue.prototype.flowableRequest = flowableRequest Vue.prototype.admRequest = admRequest Vue.prototype.getWxconfig = getWxconfig Vue.prototype.parseTime = parseTime Vue.use(uView); App.mpType = 'app' const app = new Vue({ ...App }) app.$mount()