|
|
@@ -60,7 +60,7 @@
|
|
|
发简历
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="topSe-box-item flex flex-wrap justify-center">
|
|
|
+ <view class="topSe-box-item flex flex-wrap justify-center" @click="noIdtent()">
|
|
|
<image src="../../static/im/nowei.svg" style="width: 48rpx;height: 48rpx;" mode=""></image>
|
|
|
<view class="" style="color: #999999;">
|
|
|
无兴趣
|
|
|
@@ -388,7 +388,7 @@
|
|
|
|
|
|
<image @tap="viewImg(item.content)" v-if="item.content && item.messageType === 2"
|
|
|
:src="item.content" style="height: 200rpx;width: 200rpx;margin-left: 20rpx;"></image>
|
|
|
- <image class="chat-listitem-text" @tap="viewImg(item.content)"
|
|
|
+ <image class="chat-listitem-text"
|
|
|
v-if="item.content && item.messageType === 4"
|
|
|
:src="'../../static/emoji/' +item.content"
|
|
|
style="height: 80rpx;width: 80rpx;margin-left: 20rpx;"></image>
|
|
|
@@ -508,8 +508,8 @@
|
|
|
<image @longpress="caozuoActive(item)" @tap="viewImg(item.content)"
|
|
|
v-if="item.content && item.messageType === 2" :src="item.content"
|
|
|
style="height: 200rpx;width: 200rpx;margin-right: 20rpx;"></image>
|
|
|
- <image class="chat-listitem-text textColor" @longpress="caozuoActive(item)"
|
|
|
- @tap="viewImg(item.content)" v-if="item.content && item.messageType === 4"
|
|
|
+ <image class="chat-listitem-text textColor"
|
|
|
+ v-if="item.content && item.messageType === 4"
|
|
|
:src="'../../static/emoji/' +item.content"
|
|
|
style="height: 80rpx;width: 80rpx;margin-right: 20rpx;">
|
|
|
</image>
|
|
|
@@ -737,9 +737,9 @@
|
|
|
</view>
|
|
|
<view class="avatorm flex justify-center">
|
|
|
<view class="avatorm-box flex justify-center">
|
|
|
- <block v-if="records.userEntity && records.userEntity.userAvatar">
|
|
|
- <image :src="records.userEntity.userAvatar"
|
|
|
- style="width: 100rpx;height: 100rpx;border-radius: 50%;" mode="">
|
|
|
+ <block v-if="records.userEntity && records.userEntity.avatar">
|
|
|
+ <image :src="records.userEntity.avatar"
|
|
|
+ style="width: 100rpx;height: 100rpx;border-radius: 50%;" mode="aspectFill">
|
|
|
</image>
|
|
|
</block>
|
|
|
<block v-else>
|
|
|
@@ -747,9 +747,9 @@
|
|
|
mode="">
|
|
|
</image>
|
|
|
</block>
|
|
|
- <block v-if="records.company && records.company.companyLogo">
|
|
|
- <image :src="records.company.companyLogo"
|
|
|
- style="width: 100rpx;height: 100rpx;border-radius: 50%;" mode="">
|
|
|
+ <block v-if="records.hr && records.hr.hrImg">
|
|
|
+ <image :src="records.hr.hrImg"
|
|
|
+ style="width: 100rpx;height: 100rpx;border-radius: 50%;" mode="aspectFill">
|
|
|
</image>
|
|
|
</block>
|
|
|
<block v-else>
|
|
|
@@ -766,7 +766,7 @@
|
|
|
面试岗位:
|
|
|
</view>
|
|
|
<view class="avatorm-box-item-r">
|
|
|
- {{records.postPush?records.postPush.stationName:'未知'}}
|
|
|
+ {{records.postPush?records.postPush.ruleClassifyName:'未知'}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="avatorm-box-item flex" v-if="records">
|
|
|
@@ -774,7 +774,7 @@
|
|
|
面试时间:
|
|
|
</view>
|
|
|
<view class="avatorm-box-item-r">
|
|
|
- {{records.interviewDateTime}}
|
|
|
+ {{records.interviewDateTime&&records.interviewDateTime.substring(0, 10)||''}} {{records.detailTime}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="avatorm-box-item flex" @click="goMapDap(records)">
|
|
|
@@ -1434,7 +1434,7 @@
|
|
|
//获取用户是否有面试记录
|
|
|
getInterviewList() {
|
|
|
let data = {
|
|
|
- userId: uni.getStorageSync('userId'),
|
|
|
+ /* userId: uni.getStorageSync('userId'), */
|
|
|
status: 1,
|
|
|
postPushId: this.postPushId
|
|
|
}
|
|
|
@@ -1713,6 +1713,7 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+
|
|
|
//交换微信号弹窗
|
|
|
currentWchat() {
|
|
|
let that = this
|
|
|
@@ -1832,6 +1833,10 @@
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ noIdtent(){
|
|
|
+ this.content='抱歉,我对该岗位暂无兴趣';
|
|
|
+ this.setChatSave(1)
|
|
|
+ },
|
|
|
gotoInfo(id) {
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/index/game/order?postPushId=' + id
|