12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import Vue from 'vue'
- import store from './store'
- import App from './App'
- import i18n from './libs/i18n/index.js'
- /**
- * 所有测试用数据均存放于根目录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._i18n = i18n;
- Vue.prototype.$store = store;
- Vue.prototype.$api = {msg, prePage};
- App.mpType = 'app'
- const app = new Vue({
- ...App,
- i18n
- })
- app.$mount()
|