chenrui  1 gadu atpakaļ
vecāks
revīzija
4dc98c5144

+ 59 - 1
src/components/SimpleTable/index.vue

@@ -64,6 +64,8 @@ import { useUserStore } from "@/store/user";
 const router = useRouter();
 const dataContent = ref({});
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 type SummaryMethod<T> = (data: {
   columns: TableColumnCtx<T>[];
   data: T[];
@@ -282,6 +284,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
 };
 gueryRoles();
 const tableColumns = ref<CommonTableColumn[]>([]);
@@ -324,7 +329,60 @@ watchEffect(() => {
       });
     });
   }
-  tableData.value = props.data;
+  tableDatacp.value = props.data;
+  tableData.value = [];
+  if (conditonLisy.value == null) {
+    tableData.value = tableDatacp.value;
+  } else {
+    let art = [];
+    let arts = [];
+    let art2 = [];
+    let art3 = [];
+    conditonLisy.value.forEach((element) => {
+      if (element.conn == "%") {
+        tableDatacp.value.forEach((res) => {
+          if (res[element.key] && res[element.key].includes(element.val)) {
+            art.push(res);
+          }
+        });
+      }
+      if (element.conn == "=") {
+        if (art.length == 0) {
+          art = tableDatacp.value;
+        }
+        art.forEach((res) => {
+          if (res[element.key] == element.val) {
+            arts.push(res);
+          }
+        });
+      }
+      setTimeout(() => {
+        if (element.conn == ">") {
+          if (arts.length == 0) {
+            arts = tableDatacp.value;
+          }
+          arts.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) > 0) {
+              art2.push(res);
+            }
+          });
+        }
+      });
+      setTimeout(() => {
+        if (element.conn == "<") {
+          if (art2.length == 0) {
+            art2 = tableDatacp.value;
+          }
+          art2.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) < 0) {
+              art3.push(res);
+            }
+          });
+        }
+        tableData.value = art3.length > 0 ? art3 : art2;
+      });
+    });
+  }
 });
 
 const hasFixedColumn = computed(() =>

+ 60 - 1
src/views/BasicsData/airlineCompany/index.vue

@@ -161,6 +161,7 @@ const noMore = ref(false);
 const rowTitle = ref("");
 const tableCols = ref<any[]>([]); //表头数据
 const serviceId = ref<number | null>(null);
+const conditonLisy = ref<any>([]);
 const tableObj = ref({}); //增删改数据缓存
 const flag = ref(false); //弹窗开关
 const type = ref(""); //判断是否删除
@@ -179,6 +180,7 @@ const tableForm = reactive({
 }); //弹窗内容
 //列表
 const tableData = ref<any[]>([]);
+const tableDatacp = ref<any[]>([]);
 const tableBtnGroup = ref([
   {
     name: "编辑",
@@ -270,6 +272,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -291,7 +296,61 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableDatacp.value.push(...returnData.listValues);
+      // arr.push(...returnData.listValues);
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 59 - 1
src/views/BasicsData/airportCompany/index.vue

@@ -155,6 +155,8 @@ const tableOptionser = ref<any>([]); //弹窗下拉
 const tableOptionCopys = ref<any>([]); //弹窗下拉
 const tableColsCopys = reactive([]); //弹窗
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const tableForm = reactive<any>({
   companyName: "",
   parentID: "",
@@ -276,6 +278,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -297,12 +302,65 @@ const getQuery = async (val = "") => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value = [...returnData.listValues];
+      tableDatacp.value = [...returnData.listValues];
       returnData.columnSet.forEach((item) => {
         if (item.listqueryTemplateID && item.columnName === "parentID") {
           getSelectData(item.listqueryTemplateID);
         }
       });
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 59 - 1
src/views/BasicsData/airportInfo/index.vue

@@ -389,6 +389,8 @@ const state = reactive({
 const company = ref("所属公司");
 const data = ref([]);
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 //新增
 const addForm = () => {
   // console.log(companyID.value);
@@ -498,6 +500,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -519,7 +524,60 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableDatacp.value.push(...returnData.listValues);
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       if (returnData.columnSet) {
         btnGroupWidth.value = "300px";
       } else {

+ 60 - 2
src/views/BasicsData/cargoInformation/index.vue

@@ -130,6 +130,8 @@ const tableObj = ref({}); //增删改数据缓存
 const flag = ref<boolean>(false); //弹窗开关
 const type = ref<string>(""); //判断是否删除
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const msgTitle = ref<string>("新增货代管理"); //弹窗标题
 const tableColsCopys = reactive<Object>({}); //弹窗
 const tableForm = reactive<any>({
@@ -250,6 +252,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -273,9 +278,62 @@ const getQuery = async (val = "") => {
         rowTitle.value = titleColumn.columnName;
       }
       if (val) {
-        tableData.value = [...returnData.listValues];
+        tableDatacp.value = [...returnData.listValues];
       } else {
-        tableData.value.push(...returnData.listValues);
+        tableDatacp.value.push(...returnData.listValues);
+      }
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
       }
       tableCols.value = [];
       if (conditon.value == null) {

+ 59 - 1
src/views/BasicsData/containerMaintenance/index.vue

@@ -130,6 +130,8 @@ const tableObj = ref({}); //增删改数据缓存
 const flag = ref<boolean>(false); //弹窗开关
 const type = ref<string>(""); //判断是否删除
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const msgTitle = ref<string>("新增容器维护"); //弹窗标题
 const tableColsCopys = reactive<Object>({}); //弹窗
 const tableForm = reactive<any>({
@@ -251,6 +253,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -272,7 +277,60 @@ const getQuery = async (val = "") => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value = [...returnData.listValues];
+      tableDatacp.value = [...returnData.listValues];
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 59 - 1
src/views/BasicsData/deployNode/index.vue

@@ -120,6 +120,8 @@ const tableForm = reactive<any>({
 //列表
 const tableData = ref<any>([]);
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 //表头
 const state = reactive({
   list: [
@@ -218,6 +220,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -239,7 +244,60 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableDatacp.value.push(...returnData.listValues);
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 59 - 1
src/views/BasicsData/equipmentMaintenance/index.vue

@@ -159,6 +159,8 @@ const type = ref<string>(""); //判断是否删除
 const msgTitle = ref<string>("新增设备维护"); //弹窗标题
 const tableColsCopys = reactive<Object>({}); //弹窗
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const tableForm = reactive<any>({
   deviceID: "",
   deviceName: "",
@@ -282,6 +284,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -303,7 +308,60 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableDatacp.value.push(...returnData.listValues);
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 59 - 1
src/views/BasicsData/hiddenCompany/index.vue

@@ -113,6 +113,8 @@ const tableColumns = [
   ...column,
 }));
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const formRules = useElement().formRules;
 const page = ref(0); //分页参数
 const dataContent = ref<any>({});
@@ -208,6 +210,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   if (conditon.value == null) {
     tableColst.value = tableCols.value;
   } else {
@@ -234,13 +239,66 @@ const getQuery = async () => {
         page.value--;
         noMore.value = true;
       }
-      tableData.value.push(
+      tableDatacp.value.push(
         ...returnData.listValues.map((row) => ({
           in_type_zh: row.in_type ? "是" : "否",
           out_type_zh: row.out_type ? "是" : "否",
           ...row,
         }))
       );
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       serviceId.value = returnData.submitID!;
     } else {
       page.value--;

+ 59 - 1
src/views/BasicsData/modelMaintenance/index.vue

@@ -127,6 +127,8 @@ const flag = ref<boolean>(false); //弹窗开关
 const type = ref<string>(""); //判断是否删除
 const msgTitle = ref<string>("新增机型维护"); //弹窗标题
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const tableColsCopys = reactive<Object>({}); //弹窗
 const tableBtnGroup = ref<any>([
   {
@@ -255,6 +257,9 @@ const gueryRoles = async () => {
     ddataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -276,7 +281,60 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableDatacp.value.push(...returnData.listValues);
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = returnData.columnSet;

+ 60 - 2
src/views/BasicsData/specialCargoMaintenance/index.vue

@@ -132,6 +132,8 @@ const type = ref<string>(""); //判断是否删除
 const msgTitle = ref<string>("新增特殊货物类型维护"); //弹窗标题
 const tableColsCopys = reactive<Object>({}); //弹窗
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const tableForm = reactive<any>({
   specialTypeID: "",
   specialType: "",
@@ -251,6 +253,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -274,9 +279,62 @@ const getQuery = async (val = "") => {
         rowTitle.value = titleColumn.columnName;
       }
       if (val) {
-        tableData.value = [...returnData.listValues];
+        tableDatacp.value = [...returnData.listValues];
       } else {
-        tableData.value.push(...returnData.listValues);
+        tableDatacp.value.push(...returnData.listValues);
+      }
+      tableData.value = [];
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
       }
       tableCols.value = [];
       if (conditon.value == null) {

+ 58 - 0
src/views/dataQuery/components/DataQueryView/index.vue

@@ -257,6 +257,8 @@ const props = defineProps({
 });
 const tableCols = ref<any[]>([]); //表头数据
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const dataContent = ref({});
 const currentPage = ref(1);
 const pageSize = ref(50);
@@ -417,6 +419,9 @@ const gueryRoles = async () => {
       dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
     });
     conditon.value = returnData.listValues[0].query_col_conditon;
+    conditonLisy.value = returnData.listValues[0].query_row_condition
+      ? JSON.parse(returnData.listValues[0].query_row_condition)
+      : null;
     tableCols.value = [];
     if (conditon.value == null) {
       tableCols.value = tableColumns.value;
@@ -429,6 +434,59 @@ const gueryRoles = async () => {
         });
       });
     }
+    tableData.value = [];
+    if (conditonLisy.value == null) {
+      tableDatacp.value = tableData.value;
+    } else {
+      let art = [];
+      let arts = [];
+      let art2 = [];
+      let art3 = [];
+      conditonLisy.value.forEach((element) => {
+        if (element.conn == "%") {
+          tableData.value.forEach((res) => {
+            if (res[element.key] && res[element.key].includes(element.val)) {
+              art.push(res);
+            }
+          });
+        }
+        if (element.conn == "=") {
+          if (art.length == 0) {
+            art = tableData.value;
+          }
+          art.forEach((res) => {
+            if (res[element.key] == element.val) {
+              arts.push(res);
+            }
+          });
+        }
+        setTimeout(() => {
+          if (element.conn == ">") {
+            if (arts.length == 0) {
+              arts = tableData.value;
+            }
+            arts.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) > 0) {
+                art2.push(res);
+              }
+            });
+          }
+        });
+        setTimeout(() => {
+          if (element.conn == "<") {
+            if (art2.length == 0) {
+              art2 = tableData.value;
+            }
+            art2.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) < 0) {
+                art3.push(res);
+              }
+            });
+          }
+          tableDatacp.value = art3.length > 0 ? art3 : art2;
+        });
+      });
+    }
   }
 };
 gueryRoles();

+ 59 - 2
src/views/systemSettings/warningSet/index.vue

@@ -303,6 +303,8 @@ const tableColsCopys = reactive<Object>({}); //弹窗\
 const tableOptionser = ref<any>([]); //弹窗下拉
 const submitID = ref<string | any>("");
 const conditon = ref("");
+const conditonLisy = ref<any>([]);
+const tableDatacp = ref<any[]>([]);
 const delName = ref<string>("");
 const listqueryTemplateID = ref<string | any>("");
 const inputRef = ref(null);
@@ -465,6 +467,9 @@ const gueryRoles = async () => {
     dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
   });
   conditon.value = returnData.listValues[0].query_col_conditon;
+  conditonLisy.value = returnData.listValues[0].query_row_condition
+    ? JSON.parse(returnData.listValues[0].query_row_condition)
+    : null;
   getQuery();
 };
 //获取表格数据
@@ -693,12 +698,64 @@ const getQuery = async (data?) => {
         noMore.value = true;
       }
       if (data) {
-        tableData.value = [...returnData];
+        tableDatacp.value = [...returnData];
         tableDataCopy.value = [...returnData];
       } else {
-        tableData.value.push(...returnData);
+        tableDatacp.value.push(...returnData);
         tableDataCopy.value.push(...returnData);
       }
+      if (conditonLisy.value == null) {
+        tableData.value = tableDatacp.value;
+      } else {
+        let art = [];
+        let arts = [];
+        let art2 = [];
+        let art3 = [];
+        conditonLisy.value.forEach((element) => {
+          if (element.conn == "%") {
+            tableDatacp.value.forEach((res) => {
+              if (res[element.key] && res[element.key].includes(element.val)) {
+                art.push(res);
+              }
+            });
+          }
+          if (element.conn == "=") {
+            if (art.length == 0) {
+              art = tableDatacp.value;
+            }
+            art.forEach((res) => {
+              if (res[element.key] == element.val) {
+                arts.push(res);
+              }
+            });
+          }
+          setTimeout(() => {
+            if (element.conn == ">") {
+              if (arts.length == 0) {
+                arts = tableDatacp.value;
+              }
+              arts.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) > 0) {
+                  art2.push(res);
+                }
+              });
+            }
+          });
+          setTimeout(() => {
+            if (element.conn == "<") {
+              if (art2.length == 0) {
+                art2 = tableDatacp.value;
+              }
+              art2.forEach((res) => {
+                if (Number(res[element.key]) - Number(element.val) < 0) {
+                  art3.push(res);
+                }
+              });
+            }
+            tableData.value = art3.length > 0 ? art3 : art2;
+          });
+        });
+      }
       tableCols.value = [];
       if (conditon.value == null) {
         tableCols.value = columnSet;

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

@@ -194,6 +194,22 @@ const PageIndex = ref(1);
 const searchInfo = ref("");
 const pwdInfo = ref(null);
 const submitID = ref<any>("");
+
+const gueryRoles = async () => {
+  const route = router.currentRoute;
+  const authMap = useUserStore().authMap;
+  const role = route.value.meta?.roles?.[0];
+  const res = await table.getTable(DATACONTENT_ID.allId, [
+    authMap[role],
+    sessionStorage.getItem("User_Id"),
+  ]);
+  conditon.value = res.tableData.value[0].query_col_conditon;
+  conditonLisy.value = res.tableData.value[0].query_row_condition
+    ? JSON.parse(res.tableData.value[0].query_row_condition)
+    : null;
+  getGroupSelect();
+  accountList();
+};
 //获取用户组
 const getGroup = async () => {
   const { code, returnData } = await Query({
@@ -222,21 +238,6 @@ const getGroup = async () => {
     data.value = [dataObj];
   }
 };
-const gueryRoles = async () => {
-  const route = router.currentRoute;
-  const authMap = useUserStore().authMap;
-  const role = route.value.meta?.roles?.[0];
-  const res = await table.getTable(DATACONTENT_ID.allId, [
-    authMap[role],
-    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
 const accountList = async (type?: string) => {
   let result: any = null;
@@ -281,56 +282,57 @@ const accountList = async (type?: string) => {
       });
     }
     // tableData.value = listValues;
-    let art = [];
+    tableData.value = [];
     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) {
+      let art = [];
+      let arts = [];
+      let art2 = [];
+      let art3 = [];
+      conditonLisy.value.forEach((element) => {
+        if (element.conn == "%") {
+          listValues.forEach((res) => {
+            if (res[element.key] && res[element.key].includes(element.val)) {
               art.push(res);
             }
+          });
+        }
+        if (element.conn == "=") {
+          if (art.length == 0) {
+            art = listValues;
           }
-        } 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((res) => {
+            if (res[element.key] == element.val) {
+              arts.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);
+        setTimeout(() => {
+          if (element.conn == ">") {
+            if (arts.length == 0) {
+              arts = listValues;
+            }
+            arts.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) > 0) {
+                art2.push(res);
+              }
+            });
           }
-        }
-        element[conditonLisy.value[3].key];
+        });
+        setTimeout(() => {
+          if (element.conn == "<") {
+            if (art2.length == 0) {
+              art2 = listValues;
+            }
+            art2.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) < 0) {
+                art3.push(res);
+              }
+            });
+          }
+          tableData.value = art3.length > 0 ? art3 : art2;
+        });
       });
     }
     submitID.value = returnData.submitID;
@@ -381,7 +383,59 @@ const getGroupSelect = async () => {
   });
   if (res.code == 0) {
     const { listValues } = res.returnData;
-    options.value = listValues;
+    options.value = [];
+    if (conditonLisy.value == null) {
+      options.value = listValues;
+    } else {
+      let art = [];
+      let arts = [];
+      let art2 = [];
+      let art3 = [];
+      conditonLisy.value.forEach((element) => {
+        if (element.conn == "%") {
+          listValues.forEach((res) => {
+            if (res[element.key] && res[element.key].includes(element.val)) {
+              art.push(res);
+            }
+          });
+        }
+        if (element.conn == "=") {
+          if (art.length == 0) {
+            art = listValues;
+          }
+          art.forEach((res) => {
+            if (res[element.key] == element.val) {
+              arts.push(res);
+            }
+          });
+        }
+        setTimeout(() => {
+          if (element.conn == ">") {
+            if (arts.length == 0) {
+              arts = listValues;
+            }
+            arts.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) > 0) {
+                art2.push(res);
+              }
+            });
+          }
+        });
+        setTimeout(() => {
+          if (element.conn == "<") {
+            if (art2.length == 0) {
+              art2 = listValues;
+            }
+            art2.forEach((res) => {
+              if (Number(res[element.key]) - Number(element.val) < 0) {
+                art3.push(res);
+              }
+            });
+          }
+          options.value = art3.length > 0 ? art3 : art2;
+        });
+      });
+    }
   } else {
     ElMessage.error(res.message);
   }
@@ -391,7 +445,6 @@ onBeforeMount(() => {
   getGroup();
   gueryRoles();
   // accountList();
-  getGroupSelect();
 });
 
 const handleNodeClick = (data) => {
@@ -432,7 +485,6 @@ const btnClick = (index, row, param) => {
     pwdInfo.value = row.user_pwd;
     editDialogTitle.value = "编辑账号";
     ruleForm.value = _.cloneDeep(row);
-    console.log(ruleForm.value);
   } else {
     router.push({
       path: "/userManagement/account/accountAuth",

+ 120 - 1
src/views/userManagement/accountGroup/index.vue

@@ -83,6 +83,7 @@ const ruleFormRef = ref<FormInstance>();
 const tableHeader = ref<any>([]);
 const tableData = ref<any>([]);
 const router = useRouter();
+const conditonLisy = ref<any>([]);
 const tableBtnGroup = <any>[
   {
     name: "编辑",
@@ -123,6 +124,9 @@ const gueryRoles = async () => {
     sessionStorage.getItem("User_Id"),
   ]);
   conditon.value = res.tableData.value[0].query_col_conditon;
+  conditonLisy.value = res.tableData.value[0].query_row_condition
+    ? JSON.parse(res.tableData.value[0].query_row_condition)
+    : null;
   accountList();
 };
 //获取账号组数据
@@ -130,7 +134,122 @@ const accountList = async () => {
   const res = await table.getTable(DATACONTENT_ID.accountGroupTableId, [
     searchInfo.value,
   ]);
-  tableData.value = res.tableData.value;
+  tableData.value = [];
+  if (conditonLisy.value == null) {
+    tableData.value = res.tableData.value;
+  } else {
+    let art = [];
+    let arts = [];
+    let art2 = [];
+    let art3 = [];
+    conditonLisy.value.forEach((element) => {
+      if (element.conn == "%") {
+        res.tableData.value.forEach((res) => {
+          if (res[element.key].includes(element.val)) {
+            art.push(res);
+          }
+        });
+      }
+      if (element.conn == "=") {
+        if (art.length == 0) {
+          art = res.tableData.value;
+        }
+        art.forEach((res) => {
+          if (res[element.key] == element.val) {
+            arts.push(res);
+          }
+        });
+      }
+      setTimeout(() => {
+        if (element.conn == ">") {
+          if (arts.length == 0) {
+            arts = res.tableData.value;
+          }
+          arts.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) > 0) {
+              art2.push(res);
+            }
+          });
+        }
+      });
+      setTimeout(() => {
+        if (element.conn == "<") {
+          if (art2.length == 0) {
+            art2 = res.tableData.value;
+          }
+          art2.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) < 0) {
+              art3.push(res);
+            }
+          });
+        }
+        tableData.value = art3.length > 0 ? art3 : art2;
+      });
+    });
+    // res.tableData.value.forEach((res) => {
+    //   if (
+    //     Number(res[conditonLisy.value[0].key]) -
+    //       Number(conditonLisy.value[0].val) >
+    //     0
+    //   ) {
+    //     if (">" == conditonLisy.value[0].conn) {
+    //       if (conditonLisy.value[1]) {
+    //         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 {
+    //         art.push(res);
+    //       }
+    //     }
+    //   } else {
+    //     if ("<" == conditonLisy.value[0].conn) {
+    //       if (conditonLisy.value[1]) {
+    //         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 {
+    //         art.push(res);
+    //       }
+    //     }
+    //   }
+    // });
+    // if (conditonLisy.value[2]) {
+    //   art.forEach((element) => {
+    //     if (
+    //       element[conditonLisy.value[2].key].includes(conditonLisy.value[2].val)
+    //     ) {
+    //       if (conditonLisy.value[3]) {
+    //         if (
+    //           element[conditonLisy.value[3].key] == conditonLisy.value[3].val
+    //         ) {
+    //           console.log(element);
+    //           tableData.value.push(element);
+    //         }
+    //       } else {
+    //         tableData.value.push(element);
+    //       }
+    //     }
+    //   });
+    // } else {
+    //   tableData.value = art;
+    // }
+  }
   submitID.value = res.msgId.value;
   if (conditon.value == null) {
     tableHeader.value = res.tableHeader.value;

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

@@ -136,6 +136,7 @@ const dT = ref("add");
 const submitID = ref(0);
 const editDialogVisible = ref(false);
 const editDialogTitle = ref("新增应用");
+const conditonLisy = ref<any>([]);
 const ruleForm = ref<any>({
   app_id: "",
   app_name: "",
@@ -157,6 +158,9 @@ const gueryRoles = async () => {
     authMap[role],
     sessionStorage.getItem("User_Id"),
   ]);
+  conditonLisy.value = res.tableData.value[0].query_row_condition
+    ? JSON.parse(res.tableData.value[0].query_row_condition)
+    : null;
   conditon.value = res.tableData.value[0].query_col_conditon;
   getApp();
 };
@@ -164,7 +168,61 @@ const getApp = async () => {
   const res = await table.getTable(DATACONTENT_ID.appTableId, [
     searchInfo.value,
   ]);
-  tableData.value = res.tableData.value;
+  // tableData.value = res.tableData.value;
+  tableData.value = [];
+  if (conditonLisy.value == null) {
+    tableData.value = res.tableData.value;
+  } else {
+    let art = [];
+    let arts = [];
+    let art2 = [];
+    let art3 = [];
+    conditonLisy.value.forEach((element) => {
+      if (element.conn == "%") {
+        res.tableData.value.forEach((res) => {
+          if (res[element.key] && res[element.key].includes(element.val)) {
+            art.push(res);
+          }
+        });
+      }
+      if (element.conn == "=") {
+        if (art.length == 0) {
+          art = res.tableData.value;
+        }
+        art.forEach((res) => {
+          if (res[element.key] == element.val) {
+            arts.push(res);
+          }
+        });
+      }
+      setTimeout(() => {
+        if (element.conn == ">") {
+          if (arts.length == 0) {
+            arts = res.tableData.value;
+          }
+          arts.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) > 0) {
+              art2.push(res);
+            }
+          });
+        }
+      });
+      setTimeout(() => {
+        if (element.conn == "<") {
+          if (art2.length == 0) {
+            art2 = res.tableData.value;
+          }
+          art2.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) < 0) {
+              art3.push(res);
+            }
+          });
+        }
+        tableData.value = art3.length > 0 ? art3 : art2;
+      });
+    });
+  }
+
   submitID.value = res.msgId.value;
   if (conditon.value == null) {
     tableHeader.value = res.tableHeader.value;

+ 57 - 1
src/views/userManagement/role/index.vue

@@ -111,6 +111,7 @@ const router = useRouter();
 const ruleFormRef = ref<FormInstance>();
 const tableHeader = ref([]);
 const tableData = ref([]);
+const conditonLisy = ref<any>([]);
 const tableBtnGroup = <any>[
   {
     name: "编辑",
@@ -161,6 +162,9 @@ const gueryRoles = async () => {
     sessionStorage.getItem("User_Id"),
   ]);
   conditon.value = res.tableData.value[0].query_col_conditon;
+  conditonLisy.value = res.tableData.value[0].query_row_condition
+    ? JSON.parse(res.tableData.value[0].query_row_condition)
+    : null;
   gueryRole();
 };
 const gueryRole = async () => {
@@ -168,7 +172,59 @@ const gueryRole = async () => {
     searchInfo.value,
     sessionStorage.getItem("User_Id"),
   ]);
-  tableData.value = res.tableData.value;
+  tableData.value = [];
+  if (conditonLisy.value == null) {
+    tableData.value = res.tableData.value;
+  } else {
+    let art = [];
+    let arts = [];
+    let art2 = [];
+    let art3 = [];
+    conditonLisy.value.forEach((element) => {
+      if (element.conn == "%") {
+        res.tableData.value.forEach((res) => {
+          if (res[element.key].includes(element.val)) {
+            art.push(res);
+          }
+        });
+      }
+      if (element.conn == "=") {
+        if (art.length == 0) {
+          art = res.tableData.value;
+        }
+        art.forEach((res) => {
+          if (res[element.key] == element.val) {
+            arts.push(res);
+          }
+        });
+      }
+      setTimeout(() => {
+        if (element.conn == ">") {
+          if (arts.length == 0) {
+            arts = res.tableData.value;
+          }
+          arts.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) > 0) {
+              art2.push(res);
+            }
+          });
+        }
+      });
+      setTimeout(() => {
+        if (element.conn == "<") {
+          if (art2.length == 0) {
+            art2 = res.tableData.value;
+          }
+          art2.forEach((res) => {
+            if (Number(res[element.key]) - Number(element.val) < 0) {
+              art3.push(res);
+            }
+          });
+        }
+        tableData.value = art3.length > 0 ? art3 : art2;
+      });
+    });
+  }
   submitID.value = res.msgId.value;
   if (conditon.value == null) {
     tableHeader.value = res.tableHeader.value;