diff --git a/src/components/Workflow/DialogSelectPerson.vue b/src/components/Workflow/DialogSelectPerson.vue index 797538f..10bc48c 100644 --- a/src/components/Workflow/DialogSelectPerson.vue +++ b/src/components/Workflow/DialogSelectPerson.vue @@ -39,28 +39,19 @@ const columns = ref([ style: "font-size: 14px", }, { - name: "position", + name: "posExecutiveName", align: "left", - label: "ตำแหน่งในสายงาน", + label: "ตำแหน่งทางการบริหาร", sortable: true, - field: "position", + field: "posExecutiveName", headerStyle: "font-size: 14px", style: "font-size: 14px", }, - // { - // name: "posType", - // align: "left", - // label: "ประเภทตำแหน่ง", - // sortable: true, - // field: "posType", - // headerStyle: "font-size: 14px", - // style: "font-size: 14px", - // }, { - name: "orgRoot", + name: "actFullName", align: "left", - label: "สังกัด", - field: "orgRoot", + label: "รักษาการ", + field: "actFullName", sortable: true, headerStyle: "font-size: 14px", style: "font-size: 14px", @@ -220,7 +211,11 @@ watch(modal, (val) => { +
diff --git a/src/components/Workflow/interface/index/Main.ts b/src/components/Workflow/interface/index/Main.ts index ae0e81a..88d6451 100644 --- a/src/components/Workflow/interface/index/Main.ts +++ b/src/components/Workflow/interface/index/Main.ts @@ -5,6 +5,7 @@ interface Permission { isUpdate: boolean; //แก้ไขเอกสารได้ isDelete: boolean; //ลบเอกสารได้ (ถ้ามี) isCancel: boolean; //ลบเอกสารได้ (ถ้ามี) + isSing: boolean; } export type { Permission };