|
|
@@ -216,6 +216,7 @@ export default {
|
|
|
return {
|
|
|
currentStep: 1,
|
|
|
recordId:'',
|
|
|
+ companyId:"",
|
|
|
info:{},
|
|
|
covers: []
|
|
|
};
|
|
|
@@ -225,12 +226,13 @@ export default {
|
|
|
},
|
|
|
onLoad(options){
|
|
|
this.recordId=options&&options.recordId?options.recordId:''
|
|
|
+ this.companyId=options&&options.companyId?options.companyId:''
|
|
|
this.getData()
|
|
|
},
|
|
|
methods: {
|
|
|
getData(){
|
|
|
var that=this
|
|
|
- this.$Request.getT("/app/interviewRecord/getInterviewInfo", {recordId:this.recordId}).then((res) => {
|
|
|
+ this.$Request.getT("/app/interviewRecord/getInterviewInfo", {companyId:this.companyId,recordId:this.recordId}).then((res) => {
|
|
|
if (res.code == 0) {
|
|
|
let statusArr=['','待接受','已同意','已拒绝','已过期']
|
|
|
res.data.statusText=statusArr[res.data.status]
|