Browse Source

巡更app 登录页默认域名调整、巡更app退出添加密码校验

wangtao 3 months ago
parent
commit
abb8113190
4 changed files with 54 additions and 20 deletions
  1. 2 2
      src/manifest.json
  2. 5 7
      src/pages/login.vue
  3. 18 0
      src/plugins/modal.plugins.js
  4. 29 11
      src/store/modules/setting.js

+ 2 - 2
src/manifest.json

@@ -2,8 +2,8 @@
     "name" : "智能巡更",
     "appid" : "__UNI__BF1A1F0",
     "description" : "智能巡更app,是一款用于监督和记录巡逻人员按照预定路线和时间进行巡逻的系统。",
-    "versionName" : "2.2.9",
-    "versionCode" : 29,
+    "versionName" : "2.3.0",
+    "versionCode" : 30,
     "transformPx" : false,
     "app-plus" : {
         "compatible" : {

+ 5 - 7
src/pages/login.vue

@@ -183,8 +183,7 @@ function init() {
     linkUrl.value = window.location.host;
     // linkUrl.value = "192.168.10.165:13200";
     // linkUrl.value = "localhost:81";
-    // linkUrl.value = "xf.usky.cn:13212";
-    
+    linkUrl.value = "xf.usky.cn:13212";
     useStore.GetMobileTenantConfig({ url: linkUrl.value });
   }
   //#endif
@@ -192,17 +191,16 @@ function init() {
   //#ifdef APP-PLUS || MP-WEIXIN
   if (uni.getStorageSync("serveUrl")) {
     linkUrl.value = uni.getStorageSync("serveUrl");
-    // linkUrl.value = "localhost:81";
     useStore.GetMobileTenantConfig({ url: linkUrl.value });
   } else {
     if(config.appInfo.appid == '__UNI__BF1A1F0'){
       uni.setStorageSync("serveUrl", "xf.usky.cn:13212");
+      commonStore.setServeList("xf.usky.cn:13212", "");
     }else{
       uni.setStorageSync("serveUrl", "manager.usky.cn");
+      commonStore.setServeList("manager.usky.cn", "");
     }
-    commonStore.setServeList("manager.usky.cn", "");
     linkUrl.value = uni.getStorageSync("serveUrl");
-    // linkUrl.value = "localhost:81";
     useStore.GetMobileTenantConfig({ url: linkUrl.value });
   }
   //#endif
@@ -299,9 +297,9 @@ function handlePrivacy() {
 }
 
 onShow(() => {
-  nextTick(() => {
+  // nextTick(() => {
     init();
-  });
+  // });
 });
 
 onLoad((options) => {

+ 18 - 0
src/plugins/modal.plugins.js

@@ -49,6 +49,24 @@ export default {
       });
     });
   },
+  // 确认窗体带输入框
+  confirmInput(content,placeholderText) {
+    return new Promise((resolve, reject) => {
+      uni.showModal({
+        title: content,
+        editable: true,
+        inputType: "text",
+        placeholderText: placeholderText,
+        cancelText: "取消",
+        confirmText: "确定",
+        success: function (res) {
+          if (res.confirm) {
+            resolve(res);
+          }
+        },
+      });
+    });
+  },
   // 提示信息
   showToast(option) {
     if (typeof option === "object") {

+ 29 - 11
src/store/modules/setting.js

@@ -361,19 +361,37 @@ const settingStores = defineStore("storage-setting", {
          */
         handleLogout() {
             const useStore = useStores();
-            modal.confirm("确定注销并退出系统吗?").then(() => {
-                useStore.LogOut().then(() => {
-                    if (localStorage.getItem("type")) {
-                        console.log('内嵌h5')
-                        wx.miniProgram.navigateTo({
-                            appId: 'wxf5ad8734295d43f8',
-                            url: '/pages/login?type=logout'
-                        })
-                    } else {
-                        tab.reLaunch("/pages/index");
+            if(config.appInfo.appid == '__UNI__BF1A1F0'){
+                modal.confirmInput("确定注销并退出系统吗?","请输入密码").then((res) => {
+                    if(res.confirm){
+                        if(!res.content){
+                            modal.msg("请输入密码")
+                        }else if(res.content == "sh628628"){
+                            useStore.LogOut().then(() => {
+                                modal.msgSuccess("退出成功")
+                                tab.reLaunch("/pages/index");
+                            });
+                        }else{
+                            modal.msg("密码错误")
+                        }
                     }
                 });
-            });
+            }else{
+                modal.confirm("确定注销并退出系统吗?").then(() => {
+                    useStore.LogOut().then(() => {
+                        if (localStorage.getItem("type")) {
+                            console.log('内嵌h5')
+                            wx.miniProgram.navigateTo({
+                                appId: 'wxf5ad8734295d43f8',
+                                url: '/pages/login?type=logout'
+                            })
+                        } else {
+                            tab.reLaunch("/pages/index");
+                        }
+                    });
+                });
+            }
+            
         },
         /**
          * @初始化默认主题