zhengyiming
2025-10-22 c2c4f65d6b70d9d2d9539187735c2640c1d8ac49
apps/bMiniApp/src/components/JobDetailContent/components/experienceView.vue
@@ -5,13 +5,13 @@
        v-if="taskInfoUsers.length > 0"
        direction="vertical"
        progress-dot
        :current="3"
        :current="10000003"
        class="job-detail-content-steps"
      >
        <nut-step
          v-for="(taskInfoUser, index) in taskInfoUsers"
          :key="index"
          :title="taskInfoUser.hireTime"
          :title="dayjs(taskInfoUser.hireTime).format('YYYY.MM.DD')"
        >
          <template #content>
            <p>在{{ taskInfoUser.enterpriseName }}:</p>
@@ -26,6 +26,7 @@
<script setup lang="ts">
import NoData from '../../NoData/NoData.vue';
import dayjs from 'dayjs';
defineOptions({
  name: 'experienceView',