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">
|
<script setup lang="ts">
|
||||||
const remark = defineModel<string>('remark');
|
const remark = defineModel<string>('remark');
|
||||||
const detail = defineModel<string>('detail');
|
const detail = defineModel<string>('detail');
|
||||||
|
const process = defineModel<number>('process');
|
||||||
const name = defineModel<string>('name');
|
const name = defineModel<string>('name');
|
||||||
const code = defineModel<string>('code');
|
const code = defineModel<string>('code');
|
||||||
|
|
||||||
|
|
@ -20,6 +21,7 @@ defineProps<{
|
||||||
</div>
|
</div>
|
||||||
<div class="col-8 row q-col-gutter-md">
|
<div class="col-8 row q-col-gutter-md">
|
||||||
<q-input
|
<q-input
|
||||||
|
for="input-code"
|
||||||
:dense="dense"
|
:dense="dense"
|
||||||
:outlined="!readonly"
|
:outlined="!readonly"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
|
@ -30,6 +32,7 @@ defineProps<{
|
||||||
v-model="code"
|
v-model="code"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
|
for="input-name"
|
||||||
:dense="dense"
|
:dense="dense"
|
||||||
:outlined="!readonly"
|
:outlined="!readonly"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
|
@ -40,6 +43,7 @@ defineProps<{
|
||||||
v-model="name"
|
v-model="name"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
|
for="input-detail"
|
||||||
:dense="dense"
|
:dense="dense"
|
||||||
:outlined="!readonly"
|
:outlined="!readonly"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
|
@ -51,6 +55,7 @@ defineProps<{
|
||||||
v-model="detail"
|
v-model="detail"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
|
for="input-remark"
|
||||||
:dense="dense"
|
:dense="dense"
|
||||||
:outlined="!readonly"
|
:outlined="!readonly"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
|
@ -62,6 +67,7 @@ defineProps<{
|
||||||
v-model="remark"
|
v-model="remark"
|
||||||
/>
|
/>
|
||||||
<q-input
|
<q-input
|
||||||
|
for="input-process"
|
||||||
:dense="dense"
|
:dense="dense"
|
||||||
:outlined="!readonly"
|
:outlined="!readonly"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
|
|
@ -69,7 +75,8 @@ defineProps<{
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
class="col-4"
|
class="col-4"
|
||||||
label="ระยะเวลาในการดำเนินการ"
|
label="ระยะเวลาในการดำเนินการ"
|
||||||
v-model="remark"
|
v-model="process"
|
||||||
|
type="number"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue