Commit e23fe46f authored by zhangderong's avatar zhangderong

添加字段

parent 9f71b14b
......@@ -276,8 +276,8 @@ export default {
return date && date.valueOf() <Date.now()-3600*24*1000;
}
},
Interviewer:[{value:'',label:'不限'}],
Inviter:[{value:'',label:'不限'}],
Interviewer:[],
Inviter:[],
stopinterviewID:'',
Interviewoperation:0,
UpdateOWERNEW:'',
......@@ -444,6 +444,7 @@ export default {
// 面试官查询
Serchlistinterview(){
Serchinterviewor().then(res=>{
console.log(res)
if (!res.data.succes) {
return
}
......@@ -454,6 +455,7 @@ export default {
// 邀约人查询
SerchInvitation(){
SerchInvitationOwer().then(res=>{
if (!res.data.success) {
return
}
......@@ -632,7 +634,7 @@ export default {
let newpage = this.$router.resolve({
name: 'resumeDetail',
params:{},
query:{id:this.DOWNID}
query:{id:this.DOWNID,noShowBtn:''}
})
window.open(newpage.href, '_blank');
},
......
......@@ -1053,7 +1053,7 @@ import ckeditor from '../../components/ckeditor'
let newpage = this.$router.resolve({
name: 'resumeDetail',
params:{},
query:{id:this.DOWNID}
query:{id:this.DOWNID,noShowBtn:''}
})
window.open(newpage.href, '_blank');
},
......@@ -1326,10 +1326,6 @@ import ckeditor from '../../components/ckeditor'
}
return false
},
// 确认发送提示
sendEmailOk(){},
// 发送全部内容
sendContent(){},
emailModalPush(){
this.emailInline.modalArr=[]
this.emailInline.theme=''
......@@ -1367,7 +1363,11 @@ import ckeditor from '../../components/ckeditor'
// // this.isDisable=true
// // }
// },
getEditorValue: _debounce(function (value) {
// getEditorValue: _debounce(function (value) {
// this.emailContent=value
// this.sad = value
// }),
getEditorValue: _debounce((value)=> {
this.emailContent=value
this.sad = value
}),
......
......@@ -794,7 +794,7 @@ export default {
let newpage = this.$router.resolve({
name: 'resumeDetail',
params:{},
query:{id:this.DOWNID}
query:{id:this.DOWNID,noShowBtn:''}
})
window.open(newpage.href, '_blank');
},
......@@ -815,7 +815,21 @@ export default {
tointerview(){
this.$router.push('/interview')
},
downloadAll(){},
downloadAll(){
if(this.checkboxList==''){
this.$Notice.error({
title: '提示',
desc: '选项不能为空'
});
return
}
let url=`${sapi}/api/resume/download/formatted/compress`
this.checkboxList.map((item,index)=>{
url+=index==0?`?resumeId=${item}`:`&resumeId=${item}`
})
window.location.href=url
this.checkboxList=[]
},
// 可删除状态下点击
delateR(delateid){
this.delateARRALL2.push(delateid)
......
......@@ -6,7 +6,7 @@
<img src="https://o7oe0d6qz.qnssl.com/image/icon_%E5%9F%BA%E6%9C%AC%E4%BF%A1%E6%81%AF_23_16px.png" style="height:16px;width:23px; vertical-align: middle;margin-top:-4px">
</span>
<span style="margin-left:7px;font-size:16px;color:#0092FF" >基本信息</span>
<span style="float:right;width:50px;height:24px;margin-right:5px"><Button type="primary" size='small' style="width:50px;height:24px" @click="downloadONE(detialID)">下载</Button></span>
<span style="float:right;width:50px;height:24px;margin-right:5px"><Button type="primary" size='small' style="width:50px;height:24px" @click="downloadONE(detialID)" v-show="this.showBtn!==1">下载</Button></span>
</p>
<div class="personalInformation-left">
<p style="margin-top:20px" @click="a">姓名:{{resume&&resume.ownerName}}</p>
......@@ -143,8 +143,8 @@ export default {
methods: {
getDETAIL(){
this.detialID=this.$route.query.id
// this.showBtn=this.$router.query.noShowBtn
// console.log(this.showBtn)
this.showBtn=this.$route.query.noShowBtn
console.log(this.showBtn,555555)
let parmars={
resumeId:this.$route.query.id
}
......@@ -166,6 +166,7 @@ export default {
},
mounted(){
this.getDETAIL()
console.log(this.$route.query.noShowBtn,8888)
}
}
</script>
......
......@@ -12,7 +12,7 @@ export function _debounce (fn, delay) {
timer = setTimeout(function () {
timer = null
console.log(this)
// console.log(this)
fn.apply(this, args)
}.bind(this), delay)
}
......
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