fix: hide prop doc check & form
This commit is contained in:
parent
18a533de34
commit
97e76d952b
2 changed files with 12 additions and 2 deletions
|
|
@ -536,7 +536,14 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- type -->
|
<!-- type -->
|
||||||
<div class="col-md col-12">
|
<div
|
||||||
|
v-if="
|
||||||
|
prop.fieldName === 'documentCheck' ||
|
||||||
|
prop.fieldName === 'designForm'
|
||||||
|
"
|
||||||
|
class="col-md col-12"
|
||||||
|
></div>
|
||||||
|
<div v-else class="col-md col-12">
|
||||||
<q-select
|
<q-select
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,10 @@ defineEmits<{
|
||||||
<main class="q-px-md q-py-sm" :class="{ row: $q.screen.gt.sm }">
|
<main class="q-px-md q-py-sm" :class="{ row: $q.screen.gt.sm }">
|
||||||
<section class="col-7" :class="{ 'q-pr-sm': $q.screen.gt.sm }">
|
<section class="col-7" :class="{ 'q-pr-sm': $q.screen.gt.sm }">
|
||||||
<span
|
<span
|
||||||
v-for="(prop, i) in propertiesToShow"
|
v-for="(prop, i) in propertiesToShow.filter(
|
||||||
|
(v) =>
|
||||||
|
v.fieldName !== 'documentCheck' && v.fieldName !== 'designForm',
|
||||||
|
)"
|
||||||
:key="i"
|
:key="i"
|
||||||
class="row items-center q-pb-sm"
|
class="row items-center q-pb-sm"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue