From 268bf6d9cbfc7c534f231991e88bab727c6e0a28 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期四, 14 八月 2025 11:06:08 +0800 Subject: [PATCH] feat: 接口 --- src/views/EmploymentManage/components/AddOrEditEmploymentView.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue index c40ec24..f828627 100644 --- a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue +++ b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue @@ -110,14 +110,14 @@ > <ProFormInputNumber :controls="false" - :min="1" + :min="0" v-model="form.ageMinLimit" placeholder="璇疯緭鍏�" ></ProFormInputNumber> <div class="form-input-separator">鑷�</div> <ProFormInputNumber :controls="false" - :min="1" + :min="0" v-model="form.ageMaxLimit" placeholder="璇疯緭鍏�" ></ProFormInputNumber> @@ -279,12 +279,12 @@ const form = reactive({ name: '', - billingMethod: '' as any as EnumBillingMethod, - serviceFee: 0, + billingMethod: EnumBillingMethod.Month, + serviceFee: null, settlementCycle: EnumSettlementCycle.Month, benefits: [] as string[], - ageMinLimit: 0, - ageMaxLimit: 0, + ageMinLimit: null, + ageMaxLimit: null, genderLimit: 0 as any as EnumUserGender, credentialLimits: [] as string[], time: [] as unknown as ModelValueType, -- Gitblit v1.9.1