fix isDirector
This commit is contained in:
parent
7f004f48d1
commit
b33a50e839
5 changed files with 5 additions and 0 deletions
|
|
@ -292,6 +292,7 @@ async function getDataTable(id: string, level: number = 0) {
|
|||
node: e.node,
|
||||
nodeId: e.nodeId,
|
||||
isCondition: e.isCondition,
|
||||
isDirector: e.isDirector,
|
||||
}));
|
||||
|
||||
positionNo.value = listPosNo;
|
||||
|
|
|
|||
|
|
@ -277,6 +277,7 @@ async function getDataTable(id: string, level: number = 0) {
|
|||
node: e.node,
|
||||
nodeId: e.nodeId,
|
||||
isCondition: e.isCondition,
|
||||
isDirector: e.isDirector,
|
||||
}));
|
||||
|
||||
positionNo.value = listPosNo;
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ interface PositionMain {
|
|||
node: number;
|
||||
nodeId: string;
|
||||
isCondition: boolean;
|
||||
isDirector: boolean;
|
||||
}
|
||||
|
||||
interface PositionNo {
|
||||
|
|
|
|||
|
|
@ -74,6 +74,7 @@ interface PositionMaim {
|
|||
node: number;
|
||||
nodeId: string;
|
||||
isCondition: boolean;
|
||||
isDirector: boolean;
|
||||
}
|
||||
|
||||
interface PositionNo {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ export const useSelectOrgStore = defineStore("selectorg", () => {
|
|||
node: e.node,
|
||||
nodeId: e.nodeId,
|
||||
isCondition: e.isCondition,
|
||||
isDirector: e.isDirector,
|
||||
}));
|
||||
|
||||
return listPosNo;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue