fixing display วินัยการยุติเรื่อง
This commit is contained in:
parent
0c3bcd7f68
commit
ec6e19444a
7 changed files with 73 additions and 56 deletions
|
|
@ -319,7 +319,7 @@ watch(
|
|||
<div class="full-width">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'profileType' && item.name !== 'isSend' && item.name !== 'remarkReject')"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'profileType' && item.name !== 'isSend' && item.name !== 'remarkReject' && item.name !== 'disciplineRejectDoc')"
|
||||
:rows="rows"
|
||||
row-key="personId"
|
||||
flat
|
||||
|
|
|
|||
|
|
@ -554,7 +554,7 @@ onMounted(async () => {
|
|||
<div class="col-12 row q-pa-sm">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject')"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject' && item.name !== 'disciplineRejectDoc')"
|
||||
:rows="mainStore.rowsAdd"
|
||||
row-key="idcard"
|
||||
flat
|
||||
|
|
|
|||
|
|
@ -968,20 +968,6 @@ onMounted(async () => {
|
|||
>
|
||||
<q-tooltip>ดูข้อมูลในทะเบียนประวัติ</q-tooltip>
|
||||
</q-btn>
|
||||
<q-btn
|
||||
v-if="props.row.disciplineRejectDoc.length > 0"
|
||||
flat
|
||||
round
|
||||
dense
|
||||
color="blue"
|
||||
icon="mdi-download"
|
||||
@click="
|
||||
onLoadFile(props.row.disciplineRejectDoc[0])
|
||||
"
|
||||
><q-tooltip
|
||||
>ไฟล์เอกสารที่เกี่ยวข้องกับการยุติเรื่อง</q-tooltip
|
||||
></q-btn
|
||||
>
|
||||
<q-btn
|
||||
v-if="
|
||||
(!isReadonly &&
|
||||
|
|
@ -1036,6 +1022,27 @@ onMounted(async () => {
|
|||
size="sm"
|
||||
color="primary"
|
||||
></q-icon>
|
||||
<div v-else>-</div>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="col.name === 'disciplineRejectDoc'"
|
||||
class="text-center"
|
||||
>
|
||||
<q-btn
|
||||
v-if="props.row.disciplineRejectDoc.length > 0"
|
||||
flat
|
||||
round
|
||||
dense
|
||||
color="blue"
|
||||
icon="mdi-download"
|
||||
@click="
|
||||
onLoadFile(props.row.disciplineRejectDoc[0])
|
||||
"
|
||||
><q-tooltip
|
||||
>ดาวน์โหลดไฟล์การยุติเรื่อง</q-tooltip
|
||||
></q-btn
|
||||
>
|
||||
<div v-else>-</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ col.value ?? "-" }}
|
||||
|
|
|
|||
|
|
@ -917,7 +917,7 @@ onMounted(async () => {
|
|||
<div class="col-xs-12 q-pa-sm">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=> item.name !== 'isSend' && item.name !== 'remarkReject')"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=> item.name !== 'isSend' && item.name !== 'remarkReject' && item.name !== 'disciplineRejectDoc')"
|
||||
:rows="mainStore.rowsAdd"
|
||||
row-key="personId"
|
||||
flat
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ watch(
|
|||
<div class="col-xs-12 q-pa-sm">
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject')"
|
||||
:columns="mainStore.columnsRespondent?.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject' && item.name !== 'disciplineRejectDoc')"
|
||||
:rows="mainStore.rowsAdd"
|
||||
row-key="idcard"
|
||||
flat
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ watch(
|
|||
</div>
|
||||
<d-table
|
||||
ref="table"
|
||||
:columns="props.columns.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject')"
|
||||
:columns="props.columns.filter((item:any)=>item.name !== 'isSend' && item.name !== 'remarkReject' && item.name !== 'disciplineRejectDoc')"
|
||||
:rows="rows"
|
||||
row-key="personId"
|
||||
flat
|
||||
|
|
@ -219,7 +219,7 @@ watch(
|
|||
{{ props.rowIndex + 1 }}
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ col.value ? col.value:'-' }}
|
||||
{{ col.value ? col.value : "-" }}
|
||||
</div>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
|
|
|
|||
|
|
@ -136,12 +136,21 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
{
|
||||
name: "remarkReject",
|
||||
align: "left",
|
||||
label: "หมายเหตุการยุติ",
|
||||
label: "หมายเหตุการยุติเรื่อง",
|
||||
sortable: true,
|
||||
field: "remarkReject",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "disciplineRejectDoc",
|
||||
align: "left",
|
||||
label: "เอกสารการยุติเรื่อง",
|
||||
sortable: true,
|
||||
field: "disciplineRejectDoc",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
]);
|
||||
|
||||
/** หัวข้อที่เเสดงในตารางผู้ถูกร้องเรียน */
|
||||
|
|
@ -157,6 +166,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
"organization",
|
||||
"isSend",
|
||||
"remarkReject",
|
||||
"disciplineRejectDoc",
|
||||
]);
|
||||
|
||||
/** หัวตารางกรรมการ */
|
||||
|
|
@ -287,7 +297,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"มาตรา ๘๑ ข้าราชการพลเรือนสามัญต้องสนับสนุนการปกครองระบอบประชาธิปไตยอันมีพระมหากษัตริย์ทรงเป็นประมุขด้วยความบริสุทธิ์ใจ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
|
|
@ -295,7 +305,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"มาตรา ๘๒ ข้าราชการพลเรือนสามัญต้องกระทำการอันเป็นข้อปฏิบัติดังต่อไปนี้",
|
||||
value: false,
|
||||
status_select:0
|
||||
status_select: 0,
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
|
|
@ -303,7 +313,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๑) ต้องปฏิบัติหน้าที่ราชการด้วยความซื่อสัตย์ สุจริต และเที่ยงธรรม",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
|
|
@ -311,7 +321,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๒) ต้องปฏิบัติหน้าที่ราชการให้เป็นไปตามกฎหมาย กฎ ระเบียบของทางราชการ มติของคณะรัฐมนตรี นโยบายของรัฐบาล และปฏิบัติตามระเบียบแบบแผนของทางราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
|
|
@ -319,7 +329,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๓) ต้องปฏิบัติหน้าที่ราชการให้เกิดผลดีหรือความก้าวหน้าแก่ราชการด้วยความตั้งใจอุตสาหะ เอาใจใส่ และรักษาประโยชน์ของทางราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
|
|
@ -327,7 +337,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๔) ต้องปฏิบัติตามคำสั่งของผู้บังคับบัญชาซึ่งสั่งในหน้าที่ราชการ โดยชอบด้วยกฎหมายและระเบียบของทางราชการ โดยไม่ขัดขืนหรือหลีกเลี่ยง แต่ถ้าเห็นว่าการปฏิบัติตามคำสั่งนั้นจะทำให้เสียหายแก่ราชการ หรือจะเป็นการไม่รักษาประโยชน์ของทางราชการ จะต้องเสนอความเห็นเป็นหนังสือทันทีเพื่อให้ผู้บังคับบัญชาทบทวนคำสั่งนั้น และเมื่อได้เสนอความเห็นแล้ว ถ้าผู้บังคับบัญชายืนยันให้ปฏิบัติตามคำสั่งเดิม ผู้อยู่ใต้บังคับบัญชาต้องปฏิบัติตาม",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
|
|
@ -335,14 +345,14 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๕) ต้องอุทิศเวลาของตนให้แก่ราชการ จะละทิ้งหรือทอดทิ้งหน้าที่ราชการมิได้",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
subId: 2,
|
||||
title: "(๖) ต้องรักษาความลับของทางราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
|
|
@ -350,7 +360,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๗) ต้องสุภาพเรียบร้อย รักษาความสามัคคี และต้องช่วยเหลือกันในการปฏิบัติราชการระหว่างข้าราชการด้วยกันและผู้ร่วมปฏิบัติราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
|
|
@ -358,7 +368,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๘) ต้องต้อนรับ ให้ความสะดวก ให้ความเป็นธรรม และให้การสงเคราะห์แก่ประชาชนผู้ติดต่อราชการเกี่ยวกับหน้าที่ของตน",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 11,
|
||||
|
|
@ -366,7 +376,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๙) ต้องวางตนเป็นกลางทางการเมืองในการปฏิบัติหน้าที่ราชการ และในการปฏิบัติการอื่นที่เกี่ยวข้องกับประชาชน ทั้งจะต้องปฏิบัติตามระเบียบของทางราชการว่าด้วยมารยาททางการเมืองของข้าราชการด้วย",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 12,
|
||||
|
|
@ -374,14 +384,14 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๑๐) ต้องรักษาชื่อเสียงของตน และรักษาเกียรติศักดิ์ของตำแหน่งหน้าที่ราชการของตนมิให้เสื่อมเสีย",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 13,
|
||||
subId: 2,
|
||||
title: "(๑๑) กระทำการอื่นใดตามที่กำหนดในกฎ ก.พ.",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 14,
|
||||
|
|
@ -389,7 +399,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"มาตรา ๘๓ ข้าราชการพลเรือนสามัญต้องไม่กระทำการใดอันเป็นข้อห้ามดังต่อไปนี้",
|
||||
value: false,
|
||||
status_select:0
|
||||
status_select: 0,
|
||||
},
|
||||
{
|
||||
id: 15,
|
||||
|
|
@ -397,7 +407,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๑) ต้องไม่รายงานเท็จต่อผู้บังคับบัญชา การรายงานโดยปกปิดข้อความซึ่งควรต้องแจ้ง ถือว่าเป็นการรายงานเท็จด้วย",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 16,
|
||||
|
|
@ -405,7 +415,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๒) ต้องไม่ปฏิบัติราชการอันเป็นการกระทำการข้ามผู้บังคับบัญชาเหนือตน เว้นแต่ผู้บังคับบัญชาเหนือตนขึ้นไปเป็นผู้สั่งให้กระทำ หรือได้รับอนุญาตเป็นพิเศษชั่วคราว",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 17,
|
||||
|
|
@ -413,14 +423,14 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๓) ต้องไม่อาศัยหรือยอมให้ผู้อื่นอาศัยตำแหน่งหน้าที่ราชการของตนหาประโยชน์ให้แก่ตนเองหรือผู้อื่น",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 18,
|
||||
subId: 14,
|
||||
title: "(๔) ต้องไม่ประมาทเลินเล่อในหน้าที่ราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 19,
|
||||
|
|
@ -428,7 +438,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๕) ต้องไม่กระทำการหรือยอมให้ผู้อื่นกระทำการหาผลประโยชน์อันอาจทำให้เสียความเที่ยงธรรม หรือเสื่อมเสียเกียรติศักดิ์ของตำแหน่งหน้าที่ราชการของตน",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
|
|
@ -436,7 +446,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๖) ต้องไม่เป็นกรรมการ ผู้จัดการ หรือดำรงตำแหน่งอื่นใดที่มีลักษณะงานคล้ายคลึงกันนั้นในห้างหุ้นส่วนหรือบริษัท",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 21,
|
||||
|
|
@ -444,7 +454,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๗) ต้องไม่กระทำการอย่างใดที่เป็นการกลั่นแกล้ง กดขี่ หรือข่มเหงกันในการปฏิบัติราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 22,
|
||||
|
|
@ -452,7 +462,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๘) ต้องไม่กระทำการอันเป็นการล่วงละเมิดหรือคุกคามทางเพศตามที่กำหนดในกฎ ก.พ.",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 23,
|
||||
|
|
@ -460,14 +470,14 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๙) ต้องไม่ดูหมิ่น เหยียดหยาม กดขี่ หรือข่มเหงประชาชนผู้ติดต่อราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 24,
|
||||
subId: 14,
|
||||
title: "(๑๐) ไม่กระทำการอื่นใดตามที่กำหนดในกฎ ก.พ.",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 25,
|
||||
|
|
@ -475,7 +485,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"มาตรา ๘๔ ข้าราชการพลเรือนสามัญผู้ใดไม่ปฏิบัติตามข้อปฏิบัติตามมาตรา ๘๑ และมาตรา ๘๒ หรือฝ่าฝืนข้อห้ามตามมาตรา ๘๓ ผู้นั้นเป็นผู้กระทำผิดวินัย",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 26,
|
||||
|
|
@ -483,7 +493,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"มาตรา ๘๕ การกระทำผิดวินัยในลักษณะดังต่อไปนี้ เป็นความผิดวินัยอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:0
|
||||
status_select: 0,
|
||||
},
|
||||
{
|
||||
id: 27,
|
||||
|
|
@ -491,7 +501,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๑) ปฏิบัติหรือละเว้นการปฏิบัติหน้าที่ราชการโดยมิชอบเพื่อให้เกิดความเสียหายอย่างร้ายแรงแก่ผู้หนึ่งผู้ใด หรือปฏิบัติหรือละเว้นการปฏิบัติหน้าที่ราชการโดยทุจริต",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 28,
|
||||
|
|
@ -499,7 +509,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๒) ละทิ้งหรือทอดทิ้งหน้าที่ราชการโดยไม่มีเหตุผลอันสมควรเป็นเหตุให้เสียหายแก่ราชการอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 29,
|
||||
|
|
@ -507,14 +517,14 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๓) ละทิ้งหน้าที่ราชการติดต่อกันในคราวเดียวกันเป็นเวลาเกินสิบห้าวันโดยไม่มีเหตุอันสมควร หรือโดยมีพฤติการณ์อันแสดงถึงความจงใจไม่ปฏิบัติตามระเบียบของทางราชการ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 30,
|
||||
subId: 26,
|
||||
title: "(๔) กระทำการอันได้ชื่อว่าเป็นผู้ประพฤติชั่วอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 31,
|
||||
|
|
@ -522,7 +532,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๕) ดูหมิ่น เหยียดหยาม กดขี่ ข่มเหง หรือทำร้ายประชาชนผู้ติดต่อราชการอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 32,
|
||||
|
|
@ -530,7 +540,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๖) กระทำความผิดอาญาจนได้รับโทษจำคุกหรือโทษที่หนักกว่าโทษจำคุก โดยคำพิพากษาถึงที่สุดให้จำคุกหรือให้รับโทษที่หนักกว่าโทษจำคุก เว้นแต่เป็นโทษสำหรับความผิดที่ได้กระทำโดยประมาทหรือความผิดลหุโทษ",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 33,
|
||||
|
|
@ -538,7 +548,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๗) ละเว้นการกระทำหรือกระทำการใด ๆ อันเป็นการไม่ปฏิบัติตามมาตรา ๘๒ หรือฝ่าฝืนข้อห้ามตามมาตรา ๘๓ อันเป็นเหตุให้เสียหายแก่ราชการอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
{
|
||||
id: 34,
|
||||
|
|
@ -546,7 +556,7 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
title:
|
||||
"(๘) ละเว้นการกระทำหรือกระทำการใด ๆ อันเป็นการไม่ปฏิบัติตามมาตรา ๘๐ วรรคสอง และมาตรา ๘๒ (๑๑) หรือฝ่าฝืนข้อห้ามตามมาตรา ๘๓ (๑๐) ที่มีกฎ ก.พ. กำหนดให้เป็นความผิดวินัยอย่างร้ายแรง",
|
||||
value: false,
|
||||
status_select:1
|
||||
status_select: 1,
|
||||
},
|
||||
]);
|
||||
|
||||
|
|
@ -864,6 +874,6 @@ export const useDisciplineMainStore = defineStore("disciplineMainStore", () => {
|
|||
pathComplaintsChannal,
|
||||
pathDirector,
|
||||
convertType,
|
||||
checkValueFaultT
|
||||
checkValueFaultT,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue