Merge branch 'main' of http://124.243.245.42:3000/sdz/ks-app-employment-service
This commit is contained in:
@@ -206,6 +206,14 @@
|
||||
{{detailObj.politicalAffiliation}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="flexBox detail-item1" v-if="detailObj.resumePicPath">
|
||||
<view class="label">简历图片:</view>
|
||||
<view class="value">
|
||||
<view class="previewResume" @click="previewResume(detailObj.resumePicPath)">
|
||||
查看简历图片
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="btn-box">
|
||||
<button type="default" @click="closeResumeDetailPopup">关闭</button>
|
||||
@@ -302,6 +310,7 @@
|
||||
$api
|
||||
} = inject("globalFunction");
|
||||
const imgBaseUrl = config.imgBaseUrl;
|
||||
const trainVideoImgUrl = config.trainVideoImgUrl;
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
const interviewPopup = ref(null);
|
||||
@@ -311,7 +320,15 @@
|
||||
const jobFairId = ref("");
|
||||
const userInfo = ref({});
|
||||
const isExpanded = ref(false);
|
||||
|
||||
//预览简历照片
|
||||
const previewResume = (url) => {
|
||||
if(url){
|
||||
uni.previewImage({
|
||||
urls: [trainVideoImgUrl+url],
|
||||
current: 0
|
||||
});
|
||||
}
|
||||
};
|
||||
const publicUrl = config.LCBaseUrl;
|
||||
onLoad((option) => {
|
||||
jobFairId.value = option.jobFairId;
|
||||
@@ -940,6 +957,9 @@
|
||||
height: 80%;
|
||||
.flexBox{
|
||||
display: flex;
|
||||
.previewResume{
|
||||
color:#0088ff
|
||||
}
|
||||
}
|
||||
.detail-item1 {
|
||||
// display: flex;
|
||||
|
||||
Reference in New Issue
Block a user