fix: clean and adjust

This commit is contained in:
puriphatt 2024-06-27 04:55:39 +00:00
parent aba75d06cc
commit 3882678e9f
3 changed files with 40 additions and 31 deletions

View file

@ -19,6 +19,7 @@ import ServiceProperties from 'src/components/04_product-service/ServiceProperti
import WorkNameManagement from 'src/components/04_product-service/WorkNameManagement.vue';
import useOptionStore from 'src/stores/options';
import FormServiceProperties from 'src/components/04_product-service/FormServiceProperties.vue';
import InfoForm from 'src/components/02_personnel-management/InfoForm.vue';
import useFlowStore from 'src/stores/flow';
import { Status } from 'src/stores/types';
@ -1763,17 +1764,21 @@ watch(currentPageService, async () => {
:close="() => (drawerInfo = false)"
>
<template #info>
<AppBox class="q-ma-md" bordered>
<BasicInformation
dense
:isType="productMode === 'type'"
:readonly="!isEdit"
v-model:remark="formDataGroup.remark"
v-model:name="formDataGroup.name"
v-model:code="formDataGroup.code"
v-model:detail="formDataGroup.detail"
/>
</AppBox>
<InfoForm noAddress>
<template #information>
<!-- <AppBox class="q-ma-md" bordered> -->
<BasicInformation
dense
:isType="productMode === 'type'"
:readonly="!isEdit"
v-model:remark="formDataGroup.remark"
v-model:name="formDataGroup.name"
v-model:code="formDataGroup.code"
v-model:detail="formDataGroup.detail"
/>
<!-- </AppBox> -->
</template>
</InfoForm>
</template>
</DrawerInfo>