1 Star 0 Fork 188

herryz/zxshop 微信小程序商城 多商户 可视化设计

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 699 Bytes
一键复制 编辑 原始数据 按行查看 历史
zx 提交于 2020-09-29 17:41 . 更新已有功能
import Vue from 'vue'
import App from './App'
import store from './store'
const msg = (title, duration=1500, mask=false, icon='none')=>{
//统一提示方便全局修改
if(Boolean(title) === false){
return;
}
uni.showToast({
title,
duration,
mask,
icon
});
}
const navTo = (url)=>{
uni.navigateTo({
url: url
})
}
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.$store = store;
Vue.prototype.$api = {msg, navTo ,prePage};
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/herryzz/zxshop.git
git@gitee.com:herryzz/zxshop.git
herryzz
zxshop
zxshop 微信小程序商城 多商户 可视化设计
master

搜索帮助