diff --git a/src/pages/00_manual/ViewPage.vue b/src/pages/00_manual/ViewPage.vue index eabccd6f..074a49cf 100644 --- a/src/pages/00_manual/ViewPage.vue +++ b/src/pages/00_manual/ViewPage.vue @@ -328,14 +328,6 @@ async function scrollTo(id: string) { padding: 0px 16px; } -.markdown :deep(h4) { - text-align: left; - margin-block: 0; - font-size: 16px; - font-weight: 600; - padding: 0px 16px; -} - .markdown :deep(video) { width: 100%; } diff --git a/src/pages/03_customer-management/form.ts b/src/pages/03_customer-management/form.ts index a6592304..150c8a8c 100644 --- a/src/pages/03_customer-management/form.ts +++ b/src/pages/03_customer-management/form.ts @@ -1294,7 +1294,7 @@ export const useEmployeeForm = defineStore('form-employee', () => { state.value.currentEmployee?.status === 'CREATED' ? 'ACTIVE' : state.value.currentEmployee?.status, - customerBranchId: state.value.currentBranchId || '', + customerBranchId: state.value.formDataEmployeeOwner?.id || '', employeeWork: [], employeeCheckup: [], employeeOtherInfo: undefined, diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index d3e392a6..fdc36d8b 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -1509,7 +1509,6 @@ function covertToNode() { :quotation-status=" quotationFormState.source?.quotationStatus === 'Expired' " - :created-at="quotationFormState.createdAt" v-model:urgent="quotationFormData.urgent" v-model:work-name="quotationFormData.workName" v-model:contactor="quotationFormData.contactName"