zhengyiming
2025-11-28 66c65e2d22f465daefa0f09bffcd7585c3654994
apps/bMiniApp/src/components/JobDetailContent/JobDetailContent.vue
@@ -22,7 +22,7 @@
      <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(identity) : '立即联系后可查看' }}
          {{ isCollapse ? hiddenIDNumberForEnd4(identity) : '立即联系后可查看' }}
        </div>
      </div>
    </div>
@@ -48,10 +48,12 @@
          :photos="photos"
          :height="height"
          :weight="weight"
          :shoeSize="shoeSize"
          :videos="videos"
        />
      </ProTabPane>
      <ProTabPane :title="`经历`" pane-key="2">
        <experienceView />
        <experienceView :taskInfoUsers="taskInfoUsers" />
      </ProTabPane>
    </ProTabs>
  </div>
@@ -63,7 +65,7 @@
<script setup lang="ts">
import { FlexJobTopView, ProTabs, ProTabPane } from '@12333/components';
import { hiddenIDNumberForEnd6 } from '@12333/utils';
import { hiddenIDNumberForEnd4 } from '@12333/utils';
import curriculumView from './components/curriculumView.vue';
import experienceView from './components/experienceView.vue';
import { EnumUserGender } from '@12333/constants';
@@ -93,10 +95,12 @@
  workSeniority?: string;
  workExperience?: string;
  photos?: string[];
  videos?: string[];
  /** 身高 */
  height?: number;
  /** 体重 */
  weight?: number;
  shoeSize?: number;
  taskInfoUsers?: API.GetUserResumeQueryResultExperience[];
};