Commit f0a9896d authored by zhangderong's avatar zhangderong

解决PDF展示不全及无法下载问题

parent 2fa789c0
...@@ -264,6 +264,7 @@ export default { ...@@ -264,6 +264,7 @@ export default {
spinShow:true, spinShow:true,
Ishow:[], Ishow:[],
aaaaa:'', aaaaa:'',
detailID:'',
nowstate:[{value:'已邀约',label:'已邀约'},{value:'邀约失败',label:'邀约失败'},{value:'面试淘汰',label:'面试淘汰'},{value:'待offer',label:'待offer'},{value:'已发offer',label:'已发offer'},{value:'待入职',label:'待入职'},{value:'未入职',label:'未入职'},{value:'已入职',label:'已入职'},], nowstate:[{value:'已邀约',label:'已邀约'},{value:'邀约失败',label:'邀约失败'},{value:'面试淘汰',label:'面试淘汰'},{value:'待offer',label:'待offer'},{value:'已发offer',label:'已发offer'},{value:'待入职',label:'待入职'},{value:'未入职',label:'未入职'},{value:'已入职',label:'已入职'},],
keywords:'', keywords:'',
recordList:[], recordList:[],
...@@ -637,10 +638,11 @@ export default { ...@@ -637,10 +638,11 @@ export default {
}, },
Seedetail(Tid,Uid){ Seedetail(Tid,Uid){
this.DOWNID=Uid this.DOWNID=Uid
this.detailID=Tid
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID,noShowBtn:''} query:{id:this.DOWNID,noShowBtn:'',ID:this.detailID}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
......
...@@ -570,6 +570,7 @@ import {mapState} from 'vuex' ...@@ -570,6 +570,7 @@ import {mapState} from 'vuex'
emailMOdal:false, emailMOdal:false,
DOSTA:'', DOSTA:'',
DOWNLOAD:'', DOWNLOAD:'',
detailID:'',
spinShow: true, spinShow: true,
options3: { options3: {
disabledDate (date) { disabledDate (date) {
...@@ -1152,10 +1153,11 @@ import {mapState} from 'vuex' ...@@ -1152,10 +1153,11 @@ import {mapState} from 'vuex'
//查看简历详情 //查看简历详情
Seedetail(Tid,Uid){ Seedetail(Tid,Uid){
this.DOWNID=Uid this.DOWNID=Uid
this.detailID=Tid
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID,noShowBtn:''} query:{id:this.DOWNID,noShowBtn:'',ID:this.detailID}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
......
...@@ -524,6 +524,7 @@ export default { ...@@ -524,6 +524,7 @@ export default {
fileList:[], fileList:[],
UpdateTIMETwo:'', UpdateTIMETwo:'',
uploadFileList:[], uploadFileList:[],
detailID:'',
temp:'', temp:'',
uploadurl:`${sapi}/api/ckeditor/uploadImage?token=${localStorage.get('token')}&&backUrl=/getimage`, uploadurl:`${sapi}/api/ckeditor/uploadImage?token=${localStorage.get('token')}&&backUrl=/getimage`,
isShowAll:false, isShowAll:false,
...@@ -914,11 +915,12 @@ export default { ...@@ -914,11 +915,12 @@ export default {
}, },
// 查看简历详情 // 查看简历详情
Seedetail(Tid,Uid){ Seedetail(Tid,Uid){
this.detailID=Tid
this.DOWNID=Uid this.DOWNID=Uid
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID,noShowBtn:''} query:{id:this.DOWNID,noShowBtn:'',ID:this.detailID}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
...@@ -1283,11 +1285,11 @@ export default { ...@@ -1283,11 +1285,11 @@ export default {
// 刷新列表 // 刷新列表
pushlist(){ pushlist(){
this.modal2=false this.modal2=false
this.SouSuo(this.pageT) this.SouSuo(this.pageT)
this.formInline.UpdateOWER='' this.formInline.UpdateOWER=''
this.formInline.UpdateVIEW='' this.formInline.UpdateVIEW=''
this.formInline.UpdateTIME='' this.formInline.UpdateTIME=''
this.formInline.sendWeixin=true this.formInline.sendWeixin=true
}, },
// 鼠标滑过事件 // 鼠标滑过事件
ahove(index,vvv){ ahove(index,vvv){
......
...@@ -156,7 +156,7 @@ export default { ...@@ -156,7 +156,7 @@ export default {
}, },
methods: { methods: {
getDETAIL(){ getDETAIL(){
this.detialID=this.$route.query.id this.detialID=this.$route.query.ID
this.showBtn=this.$route.query.noShowBtn this.showBtn=this.$route.query.noShowBtn
let token = this.$route.query.token || '' let token = this.$route.query.token || ''
let parmars={ let parmars={
...@@ -198,7 +198,7 @@ export default { ...@@ -198,7 +198,7 @@ export default {
} }
.bassMassage{ .bassMassage{
display: inline-block; display: inline-block;
width: 360px; width: 350px;
float: left; float: left;
margin-left:30px; margin-left:30px;
font-size: 14px; font-size: 14px;
...@@ -206,11 +206,11 @@ export default { ...@@ -206,11 +206,11 @@ export default {
} }
.bassMassageRight{ .bassMassageRight{
display: inline-block; display: inline-block;
width: 360px; width: 350px;
float: left; float: left;
font-size: 14px; font-size: 14px;
margin-top:20px; margin-top:20px;
margin-left:25px margin-left:20px
} }
.massageTitle{ .massageTitle{
/* height: 300px; */ /* height: 300px; */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment