From fd27927fd340e25967eebe51089c33fd5248bff4 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 20 十月 2025 16:24:10 +0800
Subject: [PATCH] fix: s

---
 src/views/EmploymentManage/components/AddOrEditEmploymentView.vue |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
index f5f4079..4a8aa94 100644
--- a/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
+++ b/src/views/EmploymentManage/components/AddOrEditEmploymentView.vue
@@ -53,7 +53,7 @@
               </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">
@@ -304,7 +304,7 @@
           >
             <ProFormSelect
               v-model="form.settlementAccess"
-              :value-enum="EnumEnterpriseWalletAccessText"
+              :value-enum="settlementAccessList"
               :disabled="isEdit"
               placeholder="璇烽�夋嫨缁撶畻鏂瑰紡"
             ></ProFormSelect>
@@ -367,6 +367,8 @@
 const id = route.params.id as string;
 const isEdit = !!id;
 
+const { settlementAccessList } = useEnterpriseWalletAccessSelect();
+
 function disabledDate(time: Date) {
   return dayjs(time).isBefore(dayjs(), 'day');
 }

--
Gitblit v1.9.1