加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 2.97 KB
一键复制 编辑 原始数据 按行查看 历史
linjunlong 提交于 2022-03-23 14:22 . * 新增 用车管理-车辆档案
import Vue from 'vue'
import App from './App'
import store from './store'
import loading from "@/pages/selectUser/components/Loading.vue";
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
//统一提示
global.show_nativeUI_toast = function(msg, icontype = 'success'){
const iconTypeUrl = {
error: '/static/toast-image/warn.png',
success: '/static/toast-image/success.png',
warn: '/static/toast-image/warn.png'
}
uni.showToast({
title: msg,
image: iconTypeUrl[icontype]
})
}
//判断token 是否有效
Vue.prototype.checkToken = function(callback) {
let uniIdToken = uni.getStorageSync('uni_id_token')
if (uniIdToken) {
uniCloud.callFunction({
name: 'user-center',
data: {
action: 'checkToken',
},
success: (e) => {
if (e.result.code == 0) {
callback(true)
}else{
callback(false)
uni.showToast({
title:"登录信息过期,请重新登录!",
icon:'none'
})
const value = uni.getStorageSync('launchFlag');
// #ifdef APP-PLUS
if (value) {
// launchFlag=true直接跳转到首页
uni.reLaunch({
url: '/pages/login/login'
});
} else {
uni.reLaunch({
url: '/pages/index/loading'
});
}
// #endif
// #ifdef MP||H5
uni.reLaunch({
url: '/pages/login/login'
});
// #endif
}
},
fail(e) {
uni.showModal({
content: JSON.stringify(e),
showCancel: false
})
}
})
}else{
callback(false)
const value = uni.getStorageSync('launchFlag');
// #ifdef APP-PLUS
if (value) {
// launchFlag=true直接跳转到首页
uni.reLaunch({
url: '/pages/login/login'
});
} else {
uni.reLaunch({
url: '/pages/index/loading'
});
}
// #endif
// #ifdef MP||H5
uni.reLaunch({
url: '/pages/login/login'
});
// #endif
}
};
Vue.prototype.carColor = function(e){
let color = [{
"text": "黑色",
"value": 0
}, {
"text": "银色",
"value": 1
}, {
"text": "白色",
"value": 2
}, {
"text": "红色",
"value": 3
}, {
"text": "黄色",
"value": 4
}, {
"text": "橙色",
"value": 5
}, {
"text": "蓝色",
"value": 6
}]
return color[e].text
}
Vue.component('loading',loading)
//判断昵称是否存在
Vue.prototype.checkNickname = function(callback) {
let nickname = uni.getStorageSync('userInfo').nickname
let uid = uni.getStorageSync('userInfo')._id
if (nickname) {
callback(true)
}else{
callback(false)
uni.showToast({
title:"请维护个人信息!",
icon:'none'
})
setTimeout(function() {
uni.redirectTo({
url: '/pages/contacts/edit?id=' + uid
});
}, 1000);
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化