misId
This commit is contained in:
parent
eedab43e4a
commit
5729625d80
2 changed files with 6 additions and 6 deletions
|
|
@ -82,7 +82,7 @@ const formData = reactive<FormDataAgency>({
|
|||
responsibility: "",
|
||||
isOfficer: false,
|
||||
isDeputy: false,
|
||||
orgMisId: "",
|
||||
misId: "",
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
@ -121,7 +121,7 @@ function onSubmit() {
|
|||
["org" + type + "Fax"]: formData.orgFax,
|
||||
["org" + type + "Rank"]: formData.orgLevel,
|
||||
["org" + type + "RankSub"]: formData.orgLevelSub,
|
||||
misId: formData.orgMisId,
|
||||
misId: formData.misId,
|
||||
|
||||
[nameId]: rootId,
|
||||
responsibility:
|
||||
|
|
@ -208,7 +208,7 @@ function closeClear() {
|
|||
formData.orgLevel = "";
|
||||
formData.responsibility = "";
|
||||
formData.isOfficer = false;
|
||||
formData.orgMisId = "";
|
||||
formData.misId = "";
|
||||
props.close?.();
|
||||
}
|
||||
|
||||
|
|
@ -406,7 +406,7 @@ watch(
|
|||
formData.responsibility = props.dataNode.responsibility;
|
||||
formData.isOfficer = props.dataNode.isOfficer ?? false;
|
||||
formData.isDeputy = props.dataNode.isDeputy ?? false;
|
||||
formData.orgMisId = props.dataNode.isDeputy;
|
||||
formData.misId = props.dataNode.misId;
|
||||
orgLevelOption.value =
|
||||
props.dataNode.orgTreeRank === "DEPARTMENT"
|
||||
? orgLevelOptionMain.value
|
||||
|
|
@ -603,7 +603,7 @@ watch(
|
|||
</div>
|
||||
<div class="col-4">
|
||||
<q-input
|
||||
v-model="formData.orgMisId"
|
||||
v-model="formData.misId"
|
||||
ref="orgMisIdRef"
|
||||
dense
|
||||
outlined
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ interface FormDataAgency {
|
|||
responsibility: string;
|
||||
isOfficer?: boolean;
|
||||
isDeputy?: boolean;
|
||||
orgMisId: string;
|
||||
misId: string;
|
||||
}
|
||||
|
||||
interface FormDataPosition {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue