updated command officer
This commit is contained in:
parent
23e4b14a26
commit
a4133792d9
2 changed files with 16 additions and 6 deletions
|
|
@ -38,7 +38,7 @@ let formData = reactive<FormDataDetail>({
|
||||||
issue: null,
|
issue: null,
|
||||||
commandAffectDate: null, //วันที่ลงนาม
|
commandAffectDate: null, //วันที่ลงนาม
|
||||||
commandExcecuteDate: null, //วันที่คำสั่งมีผล
|
commandExcecuteDate: null, //วันที่คำสั่งมีผล
|
||||||
isBangkok: false,
|
isBangkok: null,
|
||||||
isAttachment: true,
|
isAttachment: true,
|
||||||
});
|
});
|
||||||
const modalPreview = ref<boolean>(false); //แสดงตัวอย่าง
|
const modalPreview = ref<boolean>(false); //แสดงตัวอย่าง
|
||||||
|
|
@ -418,13 +418,23 @@ defineExpose({
|
||||||
</q-card> -->
|
</q-card> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-12">
|
<div class="col-12 q-gutter-sm">
|
||||||
<q-checkbox
|
<q-radio
|
||||||
keep-color
|
keep-color
|
||||||
color="primary"
|
color="primary"
|
||||||
dense
|
dense
|
||||||
v-model="formData.isBangkok"
|
v-model="formData.isBangkok"
|
||||||
label="นี่คือคำสั่งกรุงเทพมหานคร"
|
label="คำสั่งสำนักปลัดกรุงเทพมหานคร"
|
||||||
|
val="OFFICE"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<q-radio
|
||||||
|
keep-color
|
||||||
|
color="primary"
|
||||||
|
dense
|
||||||
|
v-model="formData.isBangkok"
|
||||||
|
label="คำสั่งกรุงเทพมหานคร"
|
||||||
|
val="BANGKOK"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@ interface FormDataDetail {
|
||||||
commandExcecuteDate: Date | null;
|
commandExcecuteDate: Date | null;
|
||||||
commandSysId?: string;
|
commandSysId?: string;
|
||||||
commandTypeName?: string;
|
commandTypeName?: string;
|
||||||
isBangkok?: boolean;
|
isBangkok?: string;
|
||||||
isAttachment:boolean
|
isAttachment: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ListCommandSalaryType {
|
interface ListCommandSalaryType {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue