แก้โครงฟอร์มลา
This commit is contained in:
parent
346ba79606
commit
2c351bbb15
46 changed files with 8182 additions and 11803 deletions
|
|
@ -176,6 +176,13 @@ onMounted(async () => {
|
|||
<q-td key="status" :props="props">
|
||||
<div class="col-12 row items-center">
|
||||
<div @click="onClickView(props.row.id, props.row.status)">
|
||||
<q-icon
|
||||
v-if="props.row.status == 'DRAFT'"
|
||||
size="10px"
|
||||
color="light-grey"
|
||||
name="mdi-circle"
|
||||
class="q-mr-sm"
|
||||
/>
|
||||
<q-icon
|
||||
v-if="props.row.status == 'APPROVE'"
|
||||
size="10px"
|
||||
|
|
@ -217,6 +224,11 @@ onMounted(async () => {
|
|||
<q-space />
|
||||
|
||||
<q-btn
|
||||
v-if="
|
||||
props.row.status != 'DELETE' &&
|
||||
props.row.status != 'REJECT' &&
|
||||
props.row.status != 'CANCEL'
|
||||
"
|
||||
flat
|
||||
icon="mdi-dots-vertical"
|
||||
color="grey-8"
|
||||
|
|
@ -228,11 +240,6 @@ onMounted(async () => {
|
|||
<q-menu>
|
||||
<q-list>
|
||||
<q-item
|
||||
v-if="
|
||||
props.row.status != 'DELETE' &&
|
||||
props.row.status != 'REJECT' &&
|
||||
props.row.status != 'CANCEL'
|
||||
"
|
||||
clickable
|
||||
v-close-popup
|
||||
@click="onClickView(props.row.id, 'CANCEL')"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue