diff --git a/config.js b/config.js index 0a1cc51..8600e44 100644 --- a/config.js +++ b/config.js @@ -1,8 +1,8 @@ // 应用全局配置 module.exports = { //baseUrl: 'https://www.nuoyunr.com/admin-api', - // baseUrl: 'https://3w823u8516.vicp.fun', - baseUrl: 'http://192.168.1.4:48080', + baseUrl: 'https://3w823u8516.vicp.fun', + // baseUrl: 'http://192.168.1.4:48080', imagesUrl: 'http://shequ.0315e.com/static/images/pages/', baseImageUrl: 'http://122.51.230.86:9000/', //wsUrl: 'wss://www.nuoyunr.com/admin-api', diff --git a/pages/login/login.vue b/pages/login/login.vue index 3b29d10..1424d66 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -67,7 +67,9 @@ export default { yzm: '', wrod: '', activeid: 0, - tenantCode: 'lanan' + tenantCode: 'lanan', + // 标志位,初始值为false + isFirstLoad: false } }, computed: { @@ -88,14 +90,41 @@ export default { mounted() { }, created(){ - this.checkIfLogin() + // 如果是第一次加载,执行一些初始化操作 + if (!this.isFirstLoad) { + this.isFirstLoad = true; + // 初始化代码 + this.checkIfLogin() + } }, onShow() { - + // 如果不是第一次加载,不执行任何操作 + if (this.isFirstLoad) { + // 每次页面显示时需要做的操作 + if(getToken()){ + //已登录 + uni.reLaunch({ + url: '/pages/home/home' + }) + }else { + uni.showModal({ + title: '提示', + content: '请关闭本页面重新打开', + success: function (res) { + if (res.confirm) { + console.log('用户点击确定'); + // 用户点击了确定按钮的相关逻辑可以在这里编写 + } else if (res.cancel) { + console.log('用户点击取消'); + // 用户点击了取消按钮的相关逻辑可以在这里编写 + } + } + }); + } + } }, methods: { - checkIfLogin(){ if(getToken()){ //已登录 @@ -104,7 +133,7 @@ export default { }) }else{ //未登录 - // this.checkIfCode() + this.checkIfCode() } }, /** diff --git a/pages/my/register.vue b/pages/my/register.vue index a26e569..d9238e1 100644 --- a/pages/my/register.vue +++ b/pages/my/register.vue @@ -1,6 +1,6 @@