|
|
@@ -175,7 +175,7 @@
|
|
|
<!-- 时间和收藏 -->
|
|
|
<view class="time-favorite flex justify-between align-center">
|
|
|
<view class="time-text">
|
|
|
- 7月24日 14:34 向你发起的沟通
|
|
|
+ {{conversationInfo.createTime&&conversationInfo.createTime}} 向你发起的沟通
|
|
|
</view>
|
|
|
<view :class="['favorite-btn flex align-center',postPushInfo.isCollection?'collectActived':'']" @click.stop="setCollection(postPushInfo.postPushId)">
|
|
|
<text class="favorite-icon"><u-icon :name="postPushInfo.isCollection?'star-fill':'star'"></u-icon></text>
|
|
|
@@ -217,18 +217,18 @@
|
|
|
<!-- 当前职位 -->
|
|
|
<view class="current-job">
|
|
|
<image src="../../static/images/aixin.svg" class="job-icon" mode="aspectFit"></image>
|
|
|
- <text class="job-text">{{ resumesInfo.companyName }}·{{ resumesInfo.lastWorkPosition }}</text>
|
|
|
+ <text class="job-text">{{ resumesInfo.resumesListDtoList&&resumesInfo.resumesListDtoList.companyName||'' }}·{{ resumesInfo.resumesListDtoList&&resumesInfo.resumesListDtoList.lastWorkPosition||'' }}</text>
|
|
|
</view>
|
|
|
|
|
|
<!-- 求职期望 -->
|
|
|
<view class="job-expectation">
|
|
|
<image src="../../static/images/xiangzi.svg" class="job-icon" mode="aspectFit"></image>
|
|
|
- <text class="expectation-text">求职期望: {{ resumesInfo.expectedPosition }}</text>
|
|
|
+ <text class="expectation-text">{{ resumesInfo.resumesListDtoList&&resumesInfo.resumesListDtoList.companyName||'' }}·{{ resumesInfo.resumesListDtoList&&resumesInfo.resumesListDtoList.profession||'' }}</text>
|
|
|
</view>
|
|
|
|
|
|
<!-- 技能标签 -->
|
|
|
<view class="skill-tags">
|
|
|
- <view class="skill-tag" v-for="(skill, skillIndex) in resumesInfo.skills" :key="skillIndex">
|
|
|
+ <view class="skill-tag" v-for="(skill, skillIndex) in resumesInfo.resumesListDtoList.intentIndustry&&resumesInfo.resumesListDtoList.intentIndustry.split('/')||[]" :key="skillIndex">
|
|
|
{{ skill }}
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -240,7 +240,7 @@
|
|
|
</view>
|
|
|
<view class="time-favorite flex justify-between align-center">
|
|
|
<view class="time-text">
|
|
|
- 7月24日 14:34 沟通的职位-亚马逊
|
|
|
+ {{conversationInfo.createTime&&conversationInfo.createTime.substring(0,10)}} 沟通的职位-亚马逊{{resumesInfo.intentionRuleClassifyName}}
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -1023,7 +1023,8 @@
|
|
|
isVip: false, //是否是会员
|
|
|
isVideo: false, //是否打视频
|
|
|
ossUrl:configdata.ossUrl,
|
|
|
- jobStatusList:[]
|
|
|
+ jobStatusList:[],
|
|
|
+ conversationInfo:{}
|
|
|
};
|
|
|
},
|
|
|
onUnload() {
|
|
|
@@ -1720,6 +1721,7 @@
|
|
|
}
|
|
|
this.$Request.getT("/app/chat/getConversationInfo", data).then(res => {
|
|
|
if (res.code == 0) {
|
|
|
+ this.conversationInfo=res.data
|
|
|
if (res.data.isSendWx) {
|
|
|
this.isSendWx = true
|
|
|
} else {
|