12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="ss-p-b-100">
- <uni-segmented-control
- :current="current"
- :values="tabList"
- @clickItem="changeControl"
- styleType="text"
- activeColor="#00B760"
- ></uni-segmented-control>
- <view class="ss-m-t-30" style="background-color: #f2f4f7; height: 100vh;"></view>
- <!-- <view v-if="bioList?.length > 0">
- <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)">
- <view class="d-flex align-center">
- <view v-if="props.resumeAnalysis" class="ss-m-r-15">
- <radio :value="index" color="#00B760" :checked="index === checkedIndex" @tap="radioChange(index)" />
- </view>
- <view @click="preview(item.url)" style="flex: 1;">
- <view class="font-size-14" style="font-weight: bold;">{{ item.title }}</view>
- <view>上传时间:{{ timesTampChange(item.createTime, 'Y-M-D') }}</view>
- </view>
- <view class="ss-m-l-30" style="width: 60rpx;">
- <uni-icons @click="handleOpenPopup(item)" type="more-filled" size="20"></uni-icons>
- </view>
- </view>
- </uni-card>
- </view>
- <view v-else class="nodata-img-parent">
- <image src="https://minio.citupro.com/dev/static/nodata.png" mode="widthFix" style="width: 100vw;height: 100vh;"></image>
- </view> -->
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { timesTampChange } from '@/utils/date'
- import { preview } from '@/utils/preview'
- const current = ref(0)
- const tabList = ref(['投递简历', '已邀约', '已入职', '已结算', '不合适'])
- const changeControl = (e) => {}
- </script>
- <style scoped lang="scss">
- </style>
|