3 Star 1 Fork 1

/uni-app-template

forked from wally/uni-templete 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
wally 提交于 2020-03-10 16:37 . 修复bug
import Vue from 'vue';
import moment from 'moment';
import { http } from 'plugins/request/index';
import App from './App';
import store from './store';
// 白名单页面
const whitePathList = [
'basic-info',
'statistics',
'user-code',
'sign',
'my-signs',
'my-code',
'my-trips',
];
/**
* 检查url是否在是否在白名单内
* @param {string} url path+query
*/
const checkWhitePath = url => {
let str = url.slice(7).split('/')[0];
return whitePathList.includes(str);
};
Vue.config.productionTip = false;
Vue.prototype.$http = http;
Vue.prototype.$moment = moment;
moment.locale('zh-cn');
Vue.prototype.goHome = () => {
uni.reLaunch({
url: '/pages/index/index',
});
};
Vue.prototype.openPage = function(path, query = '') {
let url = query ? `${path}?${query}` : path;
store.commit('user/setPagePath', url);
const isWhite = checkWhitePath(url);
if ((!store.state.user.userInfo || !store.state.user.userInfo.id) && !isWhite) {
url = '/pages/basic-info/basic-info';
}
uni.navigateTo({ url });
};
App.mpType = 'app';
const app = new Vue({
store,
...App,
});
app.$mount();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/x298017064010/uni-app-template.git
git@gitee.com:x298017064010/uni-app-template.git
x298017064010
uni-app-template
uni-app-template
master

搜索帮助