123456789101112131415161718192021222324252627282930313233 |
- import Vue from 'vue'
- import App from './App'
- import {
- myRequest
- } from './util/api.js'
- Vue.prototype.$myRequest = myRequest
- // 引入colorui组件
- import cuCustom from 'colorui/components/cu-custom.vue'
- Vue.component('cu-custom', cuCustom)
- //配置公共方法
- import common from './common/common.js'
- Vue.prototype.$noMultipleClicks = common.noMultipleClicks; // (禁止重复点击)
- // Vue.prototype.$websiteUrl = common.websiteUrl;
- // Vue.prototype.$BASE_URL = common.BASE_URL;
- Vue.prototype.$websiteUrl = 'https://qhome.usky.cn';
- Vue.prototype.$BASE_URL = 'https://qhome.usky.cn/USKYZHAF/USKYZHAF.php/Home/';
- import JsonExcel from 'vue-json-excel'
- Vue.component('downloadExcel', JsonExcel)
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|