index.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="ss-p-b-100">
  3. <uni-segmented-control
  4. :current="current"
  5. :values="tabList"
  6. @clickItem="changeControl"
  7. styleType="text"
  8. activeColor="#00B760"
  9. ></uni-segmented-control>
  10. <view class="ss-m-t-30" style="background-color: #f2f4f7; height: 100vh;"></view>
  11. <!-- <view v-if="bioList?.length > 0">
  12. <uni-card v-for="(item, index) in bioList" :key="index" :is-shadow="true" :border='false' shadow="0px 0px 3px 1px rgba(0,0,0,0.1)">
  13. <view class="d-flex align-center">
  14. <view v-if="props.resumeAnalysis" class="ss-m-r-15">
  15. <radio :value="index" color="#00B760" :checked="index === checkedIndex" @tap="radioChange(index)" />
  16. </view>
  17. <view @click="preview(item.url)" style="flex: 1;">
  18. <view class="font-size-14" style="font-weight: bold;">{{ item.title }}</view>
  19. <view>上传时间:{{ timesTampChange(item.createTime, 'Y-M-D') }}</view>
  20. </view>
  21. <view class="ss-m-l-30" style="width: 60rpx;">
  22. <uni-icons @click="handleOpenPopup(item)" type="more-filled" size="20"></uni-icons>
  23. </view>
  24. </view>
  25. </uni-card>
  26. </view>
  27. <view v-else class="nodata-img-parent">
  28. <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" style="width: 100vw;height: 100vh;"></image>
  29. </view> -->
  30. </view>
  31. </template>
  32. <script setup>
  33. import { ref } from 'vue'
  34. import { timesTampChange } from '@/utils/date'
  35. import { preview } from '@/utils/preview'
  36. const current = ref(0)
  37. const tabList = ref(['投递简历', '已邀约', '已入职', '已结算', '不合适'])
  38. const changeControl = (e) => {}
  39. </script>
  40. <style scoped lang="scss">
  41. </style>