|
@@ -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);
|