feat: เพิ่ม id
This commit is contained in:
parent
372d63f99e
commit
887ef1ae6a
1 changed files with 8 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
<script setup lang="ts">
|
||||
const remark = defineModel<string>('remark');
|
||||
const detail = defineModel<string>('detail');
|
||||
const process = defineModel<number>('process');
|
||||
const name = defineModel<string>('name');
|
||||
const code = defineModel<string>('code');
|
||||
|
||||
|
|
@ -20,6 +21,7 @@ defineProps<{
|
|||
</div>
|
||||
<div class="col-8 row q-col-gutter-md">
|
||||
<q-input
|
||||
for="input-code"
|
||||
:dense="dense"
|
||||
:outlined="!readonly"
|
||||
:readonly="readonly"
|
||||
|
|
@ -30,6 +32,7 @@ defineProps<{
|
|||
v-model="code"
|
||||
/>
|
||||
<q-input
|
||||
for="input-name"
|
||||
:dense="dense"
|
||||
:outlined="!readonly"
|
||||
:readonly="readonly"
|
||||
|
|
@ -40,6 +43,7 @@ defineProps<{
|
|||
v-model="name"
|
||||
/>
|
||||
<q-input
|
||||
for="input-detail"
|
||||
:dense="dense"
|
||||
:outlined="!readonly"
|
||||
:readonly="readonly"
|
||||
|
|
@ -51,6 +55,7 @@ defineProps<{
|
|||
v-model="detail"
|
||||
/>
|
||||
<q-input
|
||||
for="input-remark"
|
||||
:dense="dense"
|
||||
:outlined="!readonly"
|
||||
:readonly="readonly"
|
||||
|
|
@ -62,6 +67,7 @@ defineProps<{
|
|||
v-model="remark"
|
||||
/>
|
||||
<q-input
|
||||
for="input-process"
|
||||
:dense="dense"
|
||||
:outlined="!readonly"
|
||||
:readonly="readonly"
|
||||
|
|
@ -69,7 +75,8 @@ defineProps<{
|
|||
hide-bottom-space
|
||||
class="col-4"
|
||||
label="ระยะเวลาในการดำเนินการ"
|
||||
v-model="remark"
|
||||
v-model="process"
|
||||
type="number"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue