From 4b5a4c322d5a777f2715e1574ab3ef7cbcf14d6d Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 13 八月 2025 18:46:01 +0800
Subject: [PATCH] fix: 验收管理

---
 apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue |   30 +++++++++++++++++++++++++++---
 1 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue b/apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue
index 6552419..4fdb0ed 100644
--- a/apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue
+++ b/apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue
@@ -1,17 +1,28 @@
 <template>
   <ContentView style="background-color: transparent" class="job-detail-content">
-    <FlexJobTopView size="small" class="job-detail-content-top" />
+    <FlexJobTopView
+      :avatar="avatar"
+      :name="name"
+      :age="age"
+      :isReal="isReal"
+      :gender="gender"
+      :personalIdentityContent="personalIdentityContent"
+      :educationalBackgroundContent="educationalBackgroundContent"
+      :taskCount="taskCount"
+      size="small"
+      class="job-detail-content-top"
+    />
     <div class="job-detail-content-contact-info">
       <div class="job-detail-content-contact-info-item">
         <div class="job-detail-content-contact-info-item-label">鎵嬫満鍙凤細</div>
         <div class="job-detail-content-contact-info-item-text">
-          {{ isCollapse ? '13333333333' : '绔嬪嵆鑱旂郴鍚庡彲鏌ョ湅' }}
+          {{ isCollapse ? contactPhoneNumber : '绔嬪嵆鑱旂郴鍚庡彲鏌ョ湅' }}
         </div>
       </div>
       <div class="job-detail-content-contact-info-item">
         <div class="job-detail-content-contact-info-item-label">韬唤璇佸彿锛�</div>
         <div class="job-detail-content-contact-info-item-text">
-          {{ isCollapse ? hiddenIDNumberForEnd6('330902199909123456') : '绔嬪嵆鑱旂郴鍚庡彲鏌ョ湅' }}
+          {{ isCollapse ? hiddenIDNumberForEnd6(identity) : '绔嬪嵆鑱旂郴鍚庡彲鏌ョ湅' }}
         </div>
       </div>
     </div>
@@ -42,6 +53,7 @@
 import { hiddenIDNumberForEnd6 } from '@12333/utils';
 import curriculumView from './components/curriculumView.vue';
 import experienceView from './components/experienceView.vue';
+import { EnumUserGender } from '@12333/constants';
 
 defineOptions({
   name: 'JobDetailContent',
@@ -49,6 +61,18 @@
 
 type Props = {
   isCollapse: boolean;
+
+  avatar?: string;
+  name?: string;
+  gender?: EnumUserGender;
+  age?: number;
+  isReal?: boolean;
+  personalIdentityContent?: string;
+  educationalBackgroundContent?: string;
+  taskCount?: number;
+  contactPhoneNumber?: string;
+  identity?: string;
+  userId?: string;
 };
 
 const tab = ref('1');

--
Gitblit v1.9.1