|
|
|
@ -7,14 +7,6 @@ |
|
|
|
|
<el-col > |
|
|
|
|
审核状态: |
|
|
|
|
<avue-input v-model="form" placeholder="" class="frame_class1" style = "width: 100px"></avue-input> |
|
|
|
|
<!-- <el-select v-model="checkStatusValue">--> |
|
|
|
|
<!-- <el-option--> |
|
|
|
|
<!-- v-for="item in optionCheckStatus"--> |
|
|
|
|
<!-- :key="item.value"--> |
|
|
|
|
<!-- :label="item.label"--> |
|
|
|
|
<!-- :value="item.value">--> |
|
|
|
|
<!-- </el-option>--> |
|
|
|
|
<!-- </el-select>--> |
|
|
|
|
</el-col> |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
@ -141,20 +133,6 @@ |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
return { |
|
|
|
|
checkStatusValue: this.$route.query.checkstatus, |
|
|
|
|
optionCheckStatus: [{ |
|
|
|
|
value: 1, |
|
|
|
|
label: '审核中' |
|
|
|
|
}, { |
|
|
|
|
value: 2, |
|
|
|
|
label: '已审核' |
|
|
|
|
}, { |
|
|
|
|
value: 3, |
|
|
|
|
label: '未通过' |
|
|
|
|
}, { |
|
|
|
|
value: 4, |
|
|
|
|
label: ' ' |
|
|
|
|
}], |
|
|
|
|
frame_class: '', |
|
|
|
|
type: {}, |
|
|
|
|
shouldShowButton:{}, |
|
|
|
@ -698,7 +676,6 @@ |
|
|
|
|
this.addUpdateShowButton=false; |
|
|
|
|
this.UpdateShowButton=true; |
|
|
|
|
this.frame_class = 'frame_class1'; |
|
|
|
|
this.checkStatusValue = this.$route.query.checkstatus; |
|
|
|
|
this.SearchDetail(); |
|
|
|
|
}else{ |
|
|
|
|
this.readonlyForm=false; |
|
|
|
@ -706,20 +683,6 @@ |
|
|
|
|
this.UpdateShowButton=false; |
|
|
|
|
this.addUpdateShowButton=true; |
|
|
|
|
this.frame_class = null; |
|
|
|
|
this.checkStatusValue = 4; |
|
|
|
|
} |
|
|
|
|
switch (this.$route.query.checkstatus){ |
|
|
|
|
case 1: |
|
|
|
|
this.form = "审核中"; |
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
this.form = "已审核"; |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
this.form = "未通过"; |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
this.form =" "; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
@ -921,6 +884,19 @@ |
|
|
|
|
getDetail(this.$route.query.id).then(res => { |
|
|
|
|
console.log(res); |
|
|
|
|
this.tab1_form = res.data.data; |
|
|
|
|
switch (this.tab1_form.checkStatus){ |
|
|
|
|
case 1: |
|
|
|
|
this.form = "审核中"; |
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
this.form = "已审核"; |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
this.form = "未通过"; |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
this.form =" "; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
auditing() { |
|
|
|
|