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,6 +48,7 @@
          :photos="photos"
          :height="height"
          :weight="weight"
          :shoeSize="shoeSize"
          :videos="videos"
        />
      </ProTabPane>
@@ -64,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';
@@ -99,6 +100,7 @@
  height?: number;
  /** 体重 */
  weight?: number;
  shoeSize?: number;
  taskInfoUsers?: API.GetUserResumeQueryResultExperience[];
};