|
@@ -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",
|