chenrui  1 年之前
父节点
当前提交
6098c17267
共有 2 个文件被更改,包括 73 次插入15 次删除
  1. 14 14
      public/baseConfig.js
  2. 59 1
      src/views/userManagement/account/index.vue

+ 14 - 14
public/baseConfig.js

@@ -1,33 +1,33 @@
 /* url配置 */
 const PLATFROM_CONFIG = {
   baseNewUrl: "", //登录前的http请求地址
-  baseUrl: 'http://10.81.40.201:8095/', // 4A-http请求地址
-  appKeyString: '9inu7zpllz1folzsljm498dcpi0lsog1', //appSecret
-  appId: 'q7kdjmmaf0kerwpf', //appid
-  baseURLCA: 'http://10.81.40.201:16300', // 登录后的http请求地址-测试
-  baggageMessageURL: '/openApi/query',
-}
-const baseNewUrl = window.location.hostname
+  baseUrl: "http://10.81.40.201:8095/", // 4A-http请求地址
+  appKeyString: "9inu7zpllz1folzsljm498dcpi0lsog1", //appSecret
+  appId: "q7kdjmmaf0kerwpf", //appid
+  baseURLCA: "http://10.81.40.201:16300", // 登录后的http请求地址-测试
+  baggageMessageURL: "/openApi/query",
+};
+const baseNewUrl = window.location.hostname;
 switch (baseNewUrl) {
   case "10.81.160.49":
-    PLATFROM_CONFIG.baseNewUrl = "http://10.81.160.49:8095/"
+    PLATFROM_CONFIG.baseNewUrl = "http://10.81.160.49:8095/";
     break;
   case "172.29.13.5":
-    PLATFROM_CONFIG.baseNewUrl = "http://172.29.13.5:8095/"
+    PLATFROM_CONFIG.baseNewUrl = "http://172.29.13.5:8095/";
     break;
   case "10.83.36.15":
-    PLATFROM_CONFIG.baseNewUrl = "http://10.83.36.15:8095/"
+    PLATFROM_CONFIG.baseNewUrl = "http://10.83.36.15:8095/";
     break;
   case "10.81.40.201":
   case "10.81.40.202":
   case "10.81.40.226":
-    PLATFROM_CONFIG.baseNewUrl = "http://10.81.40.201:8095/"
+    PLATFROM_CONFIG.baseNewUrl = "http://10.81.40.201:8095/";
     break;
   case "120.26.64.82":
   case "localhost":
-    PLATFROM_CONFIG.baseNewUrl = "http://120.26.64.82:8084/"
+    PLATFROM_CONFIG.baseNewUrl = "http://120.26.64.82:8084/";
     break;
   case "172.23.61.29":
   default:
-    PLATFROM_CONFIG.baseNewUrl = "http://172.23.61.1:8095/"
-}
+    PLATFROM_CONFIG.baseNewUrl = "http://172.23.61.1:8095/";
+}

+ 59 - 1
src/views/userManagement/account/index.vue

@@ -146,11 +146,13 @@ import { useUserStore } from "@/store/user";
 import * as _ from "lodash";
 import MD5 from "blueimp-md5";
 import table from "../hooks/useTable";
+import { forEach } from "lodash";
 const router = useRouter();
 const ruleFormRef = ref<FormInstance>();
 const tableHeader = ref<any>([]);
 const tableData = ref<any>([]);
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
 const tableBtnGroup = <any>[
   {
     name: "编辑",
@@ -229,6 +231,10 @@ const gueryRoles = async () => {
     sessionStorage.getItem("User_Id"),
   ]);
   conditon.value = res.tableData.value[0].query_col_conditon;
+  // console.log(
+  //   JSON.parse(JSON.stringify(res.tableData.value[0].query_row_condition))
+  // );
+  conditonLisy.value = JSON.parse(res.tableData.value[0].query_row_condition);
   accountList();
 };
 //获取table
@@ -274,7 +280,59 @@ const accountList = async (type?: string) => {
         });
       });
     }
-    tableData.value = listValues;
+    // tableData.value = listValues;
+    let art = [];
+    if (conditonLisy.value == null) {
+      tableData.value = listValues;
+    } else {
+      listValues.forEach((res) => {
+        if (
+          Number(res[conditonLisy.value[0].key]) -
+            Number(conditonLisy.value[0].val) >
+          0
+        ) {
+          if (">" == conditonLisy.value[0].conn) {
+            if (
+              Number(res[conditonLisy.value[0].key]) -
+                Number(conditonLisy.value[1].val) >
+              0
+            ) {
+              if (">" == conditonLisy.value[1].conn) {
+                art.push(res);
+              }
+            } else if ("<" == conditonLisy.value[1].conn) {
+              art.push(res);
+            }
+          }
+        } else {
+          if ("<" == conditonLisy.value[0].conn) {
+            if (
+              Number(res[conditonLisy.value[0].key]) -
+                Number(conditonLisy.value[1].val) >
+              0
+            ) {
+              if (">" == conditonLisy.value[1].conn) {
+                art.push(res);
+              }
+            } else if ("<" == conditonLisy.value[1].conn) {
+              art.push(res);
+            }
+          }
+        }
+      });
+      art.forEach((element) => {
+        if (element[conditonLisy.value[3].key] == conditonLisy.value[3].val) {
+          if (
+            element[conditonLisy.value[2].key].includes(
+              conditonLisy.value[2].val
+            )
+          ) {
+            tableData.value.push(element);
+          }
+        }
+        element[conditonLisy.value[3].key];
+      });
+    }
     submitID.value = returnData.submitID;
   } else {
     ElMessage.error(message);