From a71b4647d1e6443bad12cebb1fa6b85ac0ad74b8 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 21 十月 2025 18:11:52 +0800
Subject: [PATCH] fix: bug
---
 src/views/EmploymentManage/components/AddOrEditEmploymentView.vue |   33 ++++++++++++++++++++++++++++-----
 1 files changed, 28 insertions(+), 5 deletions(-)
diff --git a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
index 4368f34..47cbc93 100644
--- a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
+++ b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
@@ -25,7 +25,7 @@
                       if (!form.billingMethod) {
                         callback(new Error('璇烽�夋嫨鏈嶅姟璐圭被鍨�'));
                       }
-                      if (!form.serviceFee) {
+                      if (!form.serviceFee && form.billingMethod !== EnumBillingMethod.Face) {
                         callback(new Error('璇疯緭鍏ユ湇鍔¤垂'));
                       }
                       callback();
@@ -38,25 +38,37 @@
                   :value-enum="EnumBillingMethodText"
                   :showExtra="true"
                   :button-style="false"
+                  :disabled="feeCannotEdit"
                 >
                   <template #extra>
                     <ProFormInputNumber
+                      v-if="form.billingMethod !== EnumBillingMethod.Face"
                       :controls="false"
                       v-model="form.serviceFee"
                       placeholder="璇疯緭鍏�"
                       :min="0"
                       :max="999999999999"
                       :unit="EnumBillingMethodUnitText[form.billingMethod]"
+                      :disabled="feeCannotEdit"
                     ></ProFormInputNumber>
                   </template>
                 </RadioWithExtra>
               </ProFormItemV2>
             </ProFormColItem>
           </ProFormCol>
-          <template v-if="form.billingMethod === EnumBillingMethod.Hour">
+          <template
+            v-if="
+              form.billingMethod === EnumBillingMethod.Hour ||
+              form.billingMethod === EnumBillingMethod.Day
+            "
+          >
             <ProFormCol>
               <ProFormColItem :span="12">
-                <ProFormItemV2 label="鏍稿畾宸ユ椂:" prop="verifyWorkHours">
+                <ProFormItemV2
+                  label="鏍稿畾宸ユ椂:"
+                  prop="verifyWorkHours"
+                  :check-rules="[{ message: '璇疯緭鍏ユ牳瀹氬伐鏃�' }]"
+                >
                   <ProFormInputNumber
                     :controls="false"
                     v-model="form.verifyWorkHours"
@@ -64,13 +76,18 @@
                     :min="0"
                     :max="999999999999"
                     unit="灏忔椂/澶�"
+                    :disabled="feeCannotEdit"
                   ></ProFormInputNumber>
                 </ProFormItemV2>
               </ProFormColItem>
             </ProFormCol>
             <ProFormCol>
               <ProFormColItem :span="12">
-                <ProFormItemV2 label="瓒呮椂鏈嶅姟璐�:" prop="timeoutServiceFee">
+                <ProFormItemV2
+                  label="瓒呮椂鏈嶅姟璐�:"
+                  prop="timeoutServiceFee"
+                  :check-rules="[{ message: '璇疯緭鍏ヨ秴鏃舵湇鍔¤垂' }]"
+                >
                   <ProFormInputNumber
                     :controls="false"
                     v-model="form.timeoutServiceFee"
@@ -78,6 +95,7 @@
                     :min="0"
                     :max="999999999999"
                     unit="鍏�/灏忔椂"
+                    :disabled="feeCannotEdit"
                   ></ProFormInputNumber>
                 </ProFormItemV2>
               </ProFormColItem>
@@ -96,6 +114,7 @@
                   :value-enum="EnumSettlementCycleText"
                   :button-style="false"
                   @change="handleSettlementCycleChange"
+                  :disabled="feeCannotEdit"
                 ></ProFormRadio>
               </ProFormItemV2>
             </ProFormColItem>
@@ -374,9 +393,13 @@
 }
 
 function disabledapplyDate(time: Date) {
-  return dayjs(time).isBefore(form.time[0], 'day');
+  return dayjs(time).isBefore(form.time[0], 'day') || dayjs(time).isAfter(form.time[1], 'day');
 }
 
+const feeCannotEdit = computed(() => {
+  return dayjs().isAfter(form.time[0], 'second');
+});
+
 const eventContext = useGlobalEventContext();
 
 const { closeViewPush } = useRouteView();
--
Gitblit v1.9.1