123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- <template>
- <view>
- <view v-for="(val, index) in items" :key="index" class="mList default-border">
- <!-- 基本信息 -->
- <view class="d-flex align-center">
- <view class="user-avatar">
- <image class="user-avatar-img" :src="getUserAvatar(val.person?.avatar, val.person?.sex)" mode="scaleToFill"></image>
- <image class="user-avatar-sex" :src="val?.person?.sex ? val?.person?.sex === '1' ? '/static/img/man.png' : '/static/img/female.png' : ''" alt="" mode="scaleToFill" />
- </view>
- <view style="flex: 1; margin-left: 10px;">
- <view class="d-flex justify-space-between align-center">
- <view class="font-size-18 default-text-color">{{ val.person?.name }}</view>
- <view :style="{'color': colorData[val.status]}">
- {{ val.status ? statusList.find(i => i.value === val.status)?.label : '' }}
- </view>
- </view>
- </view>
- </view>
- <view class="ss-m-t-15 color-999">
- <view>
- 投递职位:
- <image v-if="val.jobFairId" src="/static/svg/jobFair.svg" style="width: 15px; height: 15px;"></image>
- {{ formatName(val.job?.name) }}
- </view>
- <view>联系电话:{{ val.person?.phone ?? '未填写' }}</view>
- <view>面试时间:{{ timesTampChange(val.time, 'Y-M-D h:m') }}</view>
- <view v-if="val.status === '4'">反馈内容:{{ val.evaluate }}</view>
- <view v-if="val.status === '5' || val.status === '99'">{{ val.status === '5' ? '爽约' : '取消' }}原因:{{ val.reason }}</view>
- </view>
- <view class="sub-li-bottom ss-m-t-20">
- <template v-if="val.job?.status !== '1'" >
- <view v-if="editStatus.indexOf(val.status) !== -1" class="sub-li-bottom-item color-primary" @tap.stop="handleActionClick('edit', val)">修改面试</view>
- <view v-if="againStatus.indexOf(val.status) !== -1" class="sub-li-bottom-item color-primary" @tap.stop="handleActionClick('edit', val)">重新邀约</view>
- </template>
- <view v-if="val.status === '1'" class="sub-li-bottom-item color-primary" @click="handleActionClick('completed', val)">完成面试</view>
- <view v-if="val.status === '3'" class="sub-li-bottom-item color-primary" @click="handleActionClick('feedback', val)">填写反馈</view>
- <view
- class="sub-li-bottom-item d-flex align-center justify-center"
- @tap.stop="handleLoadMore(val)"
- :style="{'color': val?.job?.status === '1' || !actionItems(val)?.length ? '#ccc' : '#00B760'}"
- >
- <view>更多操作</view>
- <uni-icons type="list" class="ss-m-l-10" size="20" :color="val?.job?.status === '1' || !actionItems(val)?.length ? '#ccc' : '#00B760'"></uni-icons>
- </view>
- </view>
- </view>
- <!-- 更多操作 -->
- <uni-popup ref="popup" type="bottom" :mask-click="true">
- <view class="actions" v-if="itemData && Object.keys(itemData).length">
- <view
- class="action-item"
- v-for="(val, index) in actionItems(itemData)"
- :key="index"
- @tap.stop="handleActionClick(val.value, itemData)"
- >{{ val.title }}</view>
- </view>
- <button class="big-cancel-button" @tap.stop="handleClosePopup">取消</button>
- </uni-popup>
- <!-- 完成面试 -->
- <uni-popup ref="finishPopup" type="dialog">
- <uni-popup-dialog
- type="warn"
- cancelText="取消"
- confirmText="确定"
- title="系统提示"
- content="是否确认已完成面试?"
- @confirm="handleFinishConfirm"
- @close="handleFinishClose"
- ></uni-popup-dialog>
- </uni-popup>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { timesTampChange } from '@/utils/date'
- import { getUserAvatar } from '@/utils/avatar'
- import { formatName } from '@/utils/getText'
- import { completedInterviewInvite } from '@/api/interview'
- const emit = defineEmits(['refresh'])
- const props = defineProps({ items: Array, current: [Number, String], statusList: Array })
- const editStatus = ['0'] // 修改面试状态
- const againStatus = ['98', '99'] // 重新邀约状态
- const colorData = {
- '0': 'orange',
- '1': 'green',
- '2': 'green',
- '3': '#00B760',
- '4': '#999',
- '5': '#FE574A',
- '98': '#FE574A',
- '99': '#999'
- }
- const popup = ref()
- const finishPopup = ref()
- const itemData = ref({})
- // 更多操作
- const handleLoadMore = (val) => {
- if (val?.job?.status === '1') {
- itemData.value = {}
- uni.showToast({ title: '职位已关闭,暂无更多操作', icon: 'none' })
- return
- }
- if (!actionItems(val).length) {
- itemData.value = {}
- uni.showToast({ title: '暂无更多操作', icon: 'none' })
- return
- }
- itemData.value = val
- popup.value.open()
- }
- // 关闭操作弹窗
- const handleClosePopup = () => {
- popup.value.close()
- itemData.value = {}
- }
- // 完成面试
- const handleFinishClose = () => {
- if (actionItems(itemData.value).length && actionItems(itemData.value).find(e => e.value === 'completed')) handleClosePopup()
- else itemData.value = {}
- finishPopup.value.close()
- }
- const handleFinishConfirm = async () => {
- if (!itemData.value || !itemData.value.id) return
- try {
- await completedInterviewInvite(itemData.value.id)
- uni.showToast({ title: '操作成功', icon: 'none' })
- emit('refresh')
- handleFinishClose()
- } catch {
- handleFinishClose()
- }
- }
- const handleActionClick = (type, val) => {
- if (val.job?.status === '1' && (type !== 'completed')) {
- uni.showToast({ title: '职位已关闭', icon: 'none' })
- return
- }
- itemData.value = val
- // 完成面试
- if (type === 'completed') {
- finishPopup.value.open()
- }
- // 修改面试、重新邀约
- if (type === 'edit') {
- uni.navigateTo({
- url: '/pagesB/InviteInterview/index?editData=' + encodeURIComponent(JSON.stringify(val))
- })
- }
- // 取消面试、爽约、面试反馈
- if (['cancel', 'attended', 'feedback'].includes(type)) {
- uni.navigateTo({
- url: `/pagesA/interview/${type}?id=${val.id}`
- })
- }
- popup.value.close()
- }
- const obj = {
- '0': [1],
- '1': [4, 1, 3],
- '2': [3]
- }
- const actions = ref([
- { title: '完成面试', value: 'completed' },
- { title: '取消面试', value: 'cancel' },
- { title: '填写反馈', value: 'feedback' },
- { title: '爽约', value: 'attended' },
- { title: '修改面试', value: 'edit' }
- ])
- const actionItems = (item) => {
- const status = item?.status
- const jobClosed = item.job?.status === '1'
- const type = jobClosed && obj[status] ? [0] : obj[status] // 职位已关闭只能操作完成面试
- if (!type || !type.length) return []
- let data = type.map(e => actions.value[e])
- return data
- }
- </script>
- <style scoped lang="scss">
- .mList {
- border-radius: 12px;
- box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.17);
- margin: 0 30rpx 20rpx 30rpx;
- padding: 30rpx;
- background-color: #fbfbfb;
- font-size: 28rpx;
- &:first-child {
- margin-top: 20rpx;
- }
- }
- .user-avatar {
- position: relative;
- &-img {
- width: 45px;
- height: 45px;
- border-radius: 50%;
- }
- &-sex {
- position: absolute;
- right: 0;
- bottom: 2px;
- width: 20px;
- height: 20px;
- background-color: #fff;
- border-radius: 50%;
- }
- }
- .action {
- font-size: 28rpx;
- &-item {
- text-align: center;
- width: 90vw;
- border-bottom: 1px solid #eee;
- height:44px;
- line-height: 44px;
- margin: 0 auto;
- color: #00B760;
- background-color: #fff !important;
- &:first-child {
- border-radius: 5px 5px 0 0;
- }
- &:last-child {
- border-radius: 0 0 5px 5px;
- border-bottom: none;
- }
- }
- }
- .big-cancel-button {
- width: 90vw;
- height:44px;
- line-height: 44px;
- margin: 10px auto;
- color: #fe574a;
- background-color: #fff !important;
- font-size: 28rpx;
- }
- .sub-li-bottom {
- display: flex;
- justify-content: space-between;
- // align-items: flex-end;
- margin-top: 10px;
- font-size: 13px;
- &-item {
- width: 50%;
- height: 35px;
- line-height: 35px;
- text-align: center;
- margin-right: 15px;
- background-color: #f7f8fa;
- border-radius: 4px;
- &:nth-child(2) {
- margin-right: 0;
- }
- }
- }
- </style>
|