import Vue from 'vue' import store from './store' import App from './App' import uView from 'uview-ui' // #ifdef H5 import dsbridge from '@/static/js/dsbridge.js' import alipay from '@/static/js/alipay.js' import weixin from '@/static/js/weixin.js' // #endif Vue.use(uView) /** * 所有测试用数据均存放于根目录json.js * * css部分使用了App.vue下的全局样式和iconfont图标,有需要图标库的可以留言。 * 示例使用了uni.scss下的变量, 除变量外已尽量移除特有语法,可直接替换为其他预处理器使用 */ const msg = (title, duration=1500, mask=false, icon='none')=>{ //统一提示方便全局修改 if(Boolean(title) === false){ return; } uni.showToast({ title, duration, mask, icon }); } const prePage = ()=>{ // 获取当前页面 let pages = getCurrentPages(); let prePage = pages[pages.length - 2]; // #ifdef H5 return prePage; // #endif return prePage.$vm; } Vue.config.productionTip = false Vue.prototype.$fire = new Vue(); Vue.prototype.$store = store; Vue.prototype.$api = {msg, prePage}; // #ifdef H5 Vue.prototype.$dsbridge = dsbridge Vue.prototype.$alipay = alipay Vue.prototype.$weixin = weixin // #endif App.mpType = 'app' const app = new Vue({ ...App }) app.$mount()