support toggle field option
This commit is contained in:
parent
994b61a454
commit
8b191a93b8
1 changed files with 18 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
import { computed, ref } from 'vue'
|
import { computed, ref } from 'vue'
|
||||||
import { v7 as uuidv7 } from 'uuid'
|
import { v7 as uuidv7 } from 'uuid'
|
||||||
import Button from 'primevue/button'
|
import Button from 'primevue/button'
|
||||||
|
import Checkbox from 'primevue/checkbox'
|
||||||
import DataTable from 'primevue/datatable'
|
import DataTable from 'primevue/datatable'
|
||||||
import Column from 'primevue/column'
|
import Column from 'primevue/column'
|
||||||
import Image from 'primevue/image'
|
import Image from 'primevue/image'
|
||||||
|
@ -130,6 +131,15 @@ DataTable.data-editor(
|
||||||
span(
|
span(
|
||||||
v-else
|
v-else
|
||||||
) No image
|
) No image
|
||||||
|
div(
|
||||||
|
v-else-if='col.type === "toggle"'
|
||||||
|
)
|
||||||
|
Checkbox(
|
||||||
|
v-model='slotProps.data[col.name]'
|
||||||
|
:name='`${slotProps.data._id} ${col.name}`'
|
||||||
|
binary
|
||||||
|
disabled
|
||||||
|
)
|
||||||
div(
|
div(
|
||||||
v-else
|
v-else
|
||||||
)
|
)
|
||||||
|
@ -150,6 +160,14 @@ DataTable.data-editor(
|
||||||
:disabled='!slotProps.data[col.name]'
|
:disabled='!slotProps.data[col.name]'
|
||||||
:onClick='(e) => onRemoveImage(e, slotProps)'
|
:onClick='(e) => onRemoveImage(e, slotProps)'
|
||||||
)
|
)
|
||||||
|
div(
|
||||||
|
v-else-if='col.type === "toggle"'
|
||||||
|
)
|
||||||
|
Checkbox(
|
||||||
|
v-model='slotProps.data[col.name]'
|
||||||
|
:name='`toggle for ${slotProps.data.name || slotProps.data._id} ${col.name}`'
|
||||||
|
binary
|
||||||
|
)
|
||||||
div(
|
div(
|
||||||
v-else
|
v-else
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue