Commit d66910cc authored by zhangderong's avatar zhangderong

合并代码

parents d5b26790 d85f0f1d
......@@ -293,6 +293,7 @@ export default {
UpdateTIMENEW:'',
UpdateVIEWNEW:'',
highestDegreeNum:'',
emailName:'',
flowStatusList:[],
inviterName:'',//邀约人
interviewerName:'',//面试官
......@@ -395,7 +396,8 @@ export default {
resumeId:this.UpdateID,
inviterName:this.formInline.UpdateOWER,
seeTime:moment(this.formInline.UpdateTIME).format('YYYY-MM-DD HH:mm'),
interviewerName:this.formInline.UpdateVIEW
interviewerName:this.formInline.UpdateVIEW,
email:this.emailName
}
if(this.formInline.UpdateOWER==''||this.formInline.UpdateTIME==""||this.formInline.UpdateVIEW==''){
this.$Notice.error({
......@@ -725,11 +727,18 @@ export default {
let list = []
query = query.split('(')[0]
findCompanyEmailByKey(query).then(res => {
list = res
this.options = list.data.body
if(res.data.success==true){
list = res
this.options = list.data.body || []
this.options.map(item=>{
this.emailName=item.email
})
} else{
this.options=[]
}
// this.options.push({name: '不限', email: ''})
})
}, 500);
}, 200);
} else {
this.options = [];
}
......
......@@ -1574,7 +1574,7 @@ import {mapState} from 'vuex'
this.loading1 = false;
query = query.split('(')[0]
let list = await findCompanyEmailByKey(query)
this.options = list.data.body
this.options = list.data.body || []
}, 200);
} else {
this.options = [];
......
......@@ -1566,7 +1566,7 @@ export default {
query = query.split('(')[0]
findCompanyEmailByKey(query).then(res => {
list = res
this.options = list.data.body
this.options = list.data.body || []
}, 200);
})
} else {
......
......@@ -42,7 +42,6 @@ instance.interceptors.request.use(function (config) {
let url = config.url.split('api/')[1]
let headers = config.headers
if (headers.status!='init'&&needLoading.includes(url)){
console.log('hajhsbdha')
showFullScreenLoading()
}
delete headers.status
......
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