feat: scroll inside product / service
This commit is contained in:
parent
ff7b4d1f76
commit
37d19e8600
1 changed files with 116 additions and 121 deletions
|
|
@ -1227,31 +1227,28 @@ watch(inputSearchProductAndService, async () => {
|
|||
<!-- group/type -->
|
||||
<div
|
||||
v-if="productMode === 'group' || productMode === 'type'"
|
||||
class="surface-1 col bordered rounded q-px-md q-pt-md scroll column"
|
||||
>
|
||||
<div class="row justify-between">
|
||||
<div
|
||||
v-if="productMode === 'type'"
|
||||
class="text-h6 text-weight-bold q-mb-md"
|
||||
class="surface-1 col bordered rounded column no-wrap"
|
||||
>
|
||||
<div class="row surface-2 bordered-b q-px-md q-py-sm">
|
||||
<div v-if="productMode === 'type'" class="text-h6 text-weight-bold">
|
||||
{{ $t('productAndServiceType') }}
|
||||
</div>
|
||||
<div
|
||||
v-else-if="productMode === 'group'"
|
||||
class="text-h6 text-weight-bold q-mb-md"
|
||||
class="text-h6 text-weight-bold"
|
||||
>
|
||||
{{ $t('productAndServiceAll') }}
|
||||
</div>
|
||||
<div
|
||||
v-if="productMode === 'group' || productMode === 'type'"
|
||||
class="row q-px-md q-pb-md"
|
||||
class="row q-ml-auto"
|
||||
>
|
||||
<q-input
|
||||
style="width: 300px"
|
||||
outlined
|
||||
dense
|
||||
:label="$t('search')"
|
||||
class="q-mr-lg"
|
||||
class="q-mr-sm"
|
||||
:bg-color="$q.dark.isActive ? 'dark' : 'white'"
|
||||
v-model="inputSearch"
|
||||
debounce="500"
|
||||
|
|
@ -1309,7 +1306,8 @@ watch(inputSearchProductAndService, async () => {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row q-col-gutter-md col scroll">
|
||||
<div style="height: 100%" class="q-pa-md scroll">
|
||||
<div class="row q-col-gutter-md col">
|
||||
<div
|
||||
:class="`${$q.screen.gt.sm ? 'col-3' : $q.screen.gt.xs ? 'col-6' : 'col-12'}`"
|
||||
v-for="(v, i) in productMode === 'type'
|
||||
|
|
@ -1407,11 +1405,7 @@ watch(inputSearchProductAndService, async () => {
|
|||
drawerInfo = true;
|
||||
}
|
||||
"
|
||||
@deleteCard="
|
||||
() => {
|
||||
deleteProductById(v.id);
|
||||
}
|
||||
"
|
||||
@deleteCard="deleteProductById(v.id)"
|
||||
@on-click="
|
||||
async () => {
|
||||
pathGroupName = v.name;
|
||||
|
|
@ -1424,6 +1418,7 @@ watch(inputSearchProductAndService, async () => {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue