From efcb82acbac87cd3b8fc09df690c22391178b8ab Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 12 九月 2025 15:50:48 +0800 Subject: [PATCH] feat: 支付宝充值 --- src/views/EmploymentManage/components/AddOrEditEmploymentView.vue | 18 ++++++++---------- 1 files changed, 8 insertions(+), 10 deletions(-) diff --git a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue index 7704888..58f278e 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> @@ -162,9 +162,7 @@ <ProFormItemV2 label="浠诲姟鍦扮偣:" prop="weMapInfo" - :check-rules="[ - { message: '璇烽�夋嫨浠诲姟鍦扮偣', validator: FormValidator.validatorWeMap }, - ]" + :check-rules="[{ message: '璇烽�夋嫨浠诲姟鍦扮偣', type: 'weMap' }]" > <WeMap v-if="!isDetail" v-model="form.weMapInfo" /> <div v-else> @@ -279,12 +277,12 @@ const form = reactive({ name: '', - billingMethod: EnumBillingMethod.Month, - serviceFee: 0, - settlementCycle: EnumSettlementCycle.Month, + billingMethod: EnumBillingMethod.Day, + serviceFee: null, + settlementCycle: EnumSettlementCycle.Day, 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