|
@@ -243,7 +243,8 @@ import { useTable } from "./useTable";
|
|
|
import { useTableColumnSet } from "@/hooks/useTableColumnSet";
|
|
|
import { CommonTableFormatter } from "~/common";
|
|
|
import { Query } from "@/api/webApi";
|
|
|
-
|
|
|
+import { useUserStore } from "@/store/user";
|
|
|
+const router = useRouter();
|
|
|
const props = defineProps({
|
|
|
name: {
|
|
|
type: String,
|
|
@@ -407,25 +408,27 @@ const { tableColumns, tableData, getTableData } = useTable(
|
|
|
loading
|
|
|
);
|
|
|
const gueryRoles = async () => {
|
|
|
- const { code, returnData } = await Query({
|
|
|
- id: DATACONTENT_ID.allId,
|
|
|
- dataContent: [
|
|
|
- sessionStorage.getItem("auth-id"),
|
|
|
- sessionStorage.getItem("User_Id"),
|
|
|
- ],
|
|
|
- });
|
|
|
- conditon.value = returnData.listValues[0].query_col_conditon;
|
|
|
- tableCols.value = [];
|
|
|
- if (conditon.value == null) {
|
|
|
- tableCols.value = tableColumns.value;
|
|
|
- } else {
|
|
|
- conditon.value.split(",").forEach((element) => {
|
|
|
- tableColumns.value.forEach((res) => {
|
|
|
- if (element === res.columnName) {
|
|
|
- tableCols.value.push(res);
|
|
|
- }
|
|
|
- });
|
|
|
+ const route = router.currentRoute;
|
|
|
+ const authMap = useUserStore().authMap;
|
|
|
+ const role = route.value.meta?.roles?.[0];
|
|
|
+ if (authMap[role] !== null) {
|
|
|
+ const { code, returnData } = await Query({
|
|
|
+ id: DATACONTENT_ID.allId,
|
|
|
+ dataContent: [authMap[role], sessionStorage.getItem("User_Id")],
|
|
|
});
|
|
|
+ conditon.value = returnData.listValues[0].query_col_conditon;
|
|
|
+ tableCols.value = [];
|
|
|
+ if (conditon.value == null) {
|
|
|
+ tableCols.value = tableColumns.value;
|
|
|
+ } else {
|
|
|
+ conditon.value.split(",").forEach((element) => {
|
|
|
+ tableColumns.value.forEach((res) => {
|
|
|
+ if (element === res.columnName) {
|
|
|
+ tableCols.value.push(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
gueryRoles();
|
|
@@ -496,8 +499,6 @@ const cellClass = ({ row, column, rowIndex, columnIndex }) => {
|
|
|
return classes.join(" ");
|
|
|
};
|
|
|
|
|
|
-const router = useRouter();
|
|
|
-
|
|
|
const cellClickHandler = (row, column, cell, event) => {
|
|
|
switch (props.name) {
|
|
|
case "flight": {
|