Commit e23fe46f authored by zhangderong's avatar zhangderong

添加字段

parent 9f71b14b
...@@ -276,8 +276,8 @@ export default { ...@@ -276,8 +276,8 @@ export default {
return date && date.valueOf() <Date.now()-3600*24*1000; return date && date.valueOf() <Date.now()-3600*24*1000;
} }
}, },
Interviewer:[{value:'',label:'不限'}], Interviewer:[],
Inviter:[{value:'',label:'不限'}], Inviter:[],
stopinterviewID:'', stopinterviewID:'',
Interviewoperation:0, Interviewoperation:0,
UpdateOWERNEW:'', UpdateOWERNEW:'',
...@@ -444,6 +444,7 @@ export default { ...@@ -444,6 +444,7 @@ export default {
// 面试官查询 // 面试官查询
Serchlistinterview(){ Serchlistinterview(){
Serchinterviewor().then(res=>{ Serchinterviewor().then(res=>{
console.log(res)
if (!res.data.succes) { if (!res.data.succes) {
return return
} }
...@@ -454,6 +455,7 @@ export default { ...@@ -454,6 +455,7 @@ export default {
// 邀约人查询 // 邀约人查询
SerchInvitation(){ SerchInvitation(){
SerchInvitationOwer().then(res=>{ SerchInvitationOwer().then(res=>{
if (!res.data.success) { if (!res.data.success) {
return return
} }
...@@ -632,7 +634,7 @@ export default { ...@@ -632,7 +634,7 @@ export default {
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID} query:{id:this.DOWNID,noShowBtn:''}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
......
...@@ -1053,7 +1053,7 @@ import ckeditor from '../../components/ckeditor' ...@@ -1053,7 +1053,7 @@ import ckeditor from '../../components/ckeditor'
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID} query:{id:this.DOWNID,noShowBtn:''}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
...@@ -1326,10 +1326,6 @@ import ckeditor from '../../components/ckeditor' ...@@ -1326,10 +1326,6 @@ import ckeditor from '../../components/ckeditor'
} }
return false return false
}, },
// 确认发送提示
sendEmailOk(){},
// 发送全部内容
sendContent(){},
emailModalPush(){ emailModalPush(){
this.emailInline.modalArr=[] this.emailInline.modalArr=[]
this.emailInline.theme='' this.emailInline.theme=''
...@@ -1367,7 +1363,11 @@ import ckeditor from '../../components/ckeditor' ...@@ -1367,7 +1363,11 @@ import ckeditor from '../../components/ckeditor'
// // this.isDisable=true // // this.isDisable=true
// // } // // }
// }, // },
getEditorValue: _debounce(function (value) { // getEditorValue: _debounce(function (value) {
// this.emailContent=value
// this.sad = value
// }),
getEditorValue: _debounce((value)=> {
this.emailContent=value this.emailContent=value
this.sad = value this.sad = value
}), }),
......
...@@ -794,7 +794,7 @@ export default { ...@@ -794,7 +794,7 @@ export default {
let newpage = this.$router.resolve({ let newpage = this.$router.resolve({
name: 'resumeDetail', name: 'resumeDetail',
params:{}, params:{},
query:{id:this.DOWNID} query:{id:this.DOWNID,noShowBtn:''}
}) })
window.open(newpage.href, '_blank'); window.open(newpage.href, '_blank');
}, },
...@@ -815,7 +815,21 @@ export default { ...@@ -815,7 +815,21 @@ export default {
tointerview(){ tointerview(){
this.$router.push('/interview') 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){ delateR(delateid){
this.delateARRALL2.push(delateid) this.delateARRALL2.push(delateid)
......
...@@ -6,7 +6,7 @@ ...@@ -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"> <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>
<span style="margin-left:7px;font-size:16px;color:#0092FF" >基本信息</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> </p>
<div class="personalInformation-left"> <div class="personalInformation-left">
<p style="margin-top:20px" @click="a">姓名:{{resume&&resume.ownerName}}</p> <p style="margin-top:20px" @click="a">姓名:{{resume&&resume.ownerName}}</p>
...@@ -143,8 +143,8 @@ export default { ...@@ -143,8 +143,8 @@ export default {
methods: { methods: {
getDETAIL(){ getDETAIL(){
this.detialID=this.$route.query.id this.detialID=this.$route.query.id
// this.showBtn=this.$router.query.noShowBtn this.showBtn=this.$route.query.noShowBtn
// console.log(this.showBtn) console.log(this.showBtn,555555)
let parmars={ let parmars={
resumeId:this.$route.query.id resumeId:this.$route.query.id
} }
...@@ -166,6 +166,7 @@ export default { ...@@ -166,6 +166,7 @@ export default {
}, },
mounted(){ mounted(){
this.getDETAIL() this.getDETAIL()
console.log(this.$route.query.noShowBtn,8888)
} }
} }
</script> </script>
......
...@@ -12,7 +12,7 @@ export function _debounce (fn, delay) { ...@@ -12,7 +12,7 @@ export function _debounce (fn, delay) {
timer = setTimeout(function () { timer = setTimeout(function () {
timer = null timer = null
console.log(this) // console.log(this)
fn.apply(this, args) fn.apply(this, args)
}.bind(this), delay) }.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