代码拉取完成,页面将自动刷新
同步操作将从 广东优势智云信息科技股份有限公司/企业移动办公 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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);
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。