Commit ced5c878 authored by liudong1993's avatar liudong1993
parents ae45306f 83c3db5d
...@@ -508,8 +508,8 @@ ...@@ -508,8 +508,8 @@
<el-row v-if="isBoHui>0"> <el-row v-if="isBoHui>0">
<br/> <br/>
<el-col :span="12" class="shenheInfoBox"> <el-col :span="12" class="shenheInfoBox">
<el-radio v-model="isBoHui" label="2">{{$t('visa.v_tongguo')}}</el-radio> <el-radio v-model="isBoHui" :label="Number(2)" @change="auditMsg.AuditContract=isBoHui">{{$t('visa.v_tongguo')}}</el-radio>
<el-radio v-model="isBoHui" label="1">{{$t('fnc.bohui')}}</el-radio> <el-radio v-model="isBoHui" :label="Number(1)" @change="auditMsg.AuditContract=isBoHui">{{$t('fnc.bohui')}}</el-radio>
</el-col> </el-col>
</el-row> </el-row>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
...@@ -774,7 +774,7 @@ ...@@ -774,7 +774,7 @@
this.BoHuiObj = JSON.parse(JSON.stringify(item)); this.BoHuiObj = JSON.parse(JSON.stringify(item));
this.auditMsg.AuditContract = status; this.auditMsg.AuditContract = status;
// this.isShowContract = true // this.isShowContract = true
this.isBoHui = '1'; this.isBoHui = 2;
// this.getContractInfor(item) // this.getContractInfor(item)
}, },
showTongGuo(item, status) { showTongGuo(item, status) {
...@@ -782,14 +782,16 @@ ...@@ -782,14 +782,16 @@
this.BoHuiObj = JSON.parse(JSON.stringify(item)); this.BoHuiObj = JSON.parse(JSON.stringify(item));
this.auditMsg.AuditContract = status; this.auditMsg.AuditContract = status;
// this.isShowContract = true // this.isShowContract = true
this.isBoHui = '2' this.isBoHui = 2
// this.getContractInfor(item) // this.getContractInfor(item)
}, },
showshenghe(item) { showshenghe(item) {
this.hetongTitle = `${this.$t('fnc.shenhe')}` this.hetongTitle = `${this.$t('fnc.shenhe')}`
this.BoHuiObj = JSON.parse(JSON.stringify(item)); this.BoHuiObj = JSON.parse(JSON.stringify(item));
this.isShowContract = true this.isShowContract = true
this.isBoHui = '2'; this.isBoHui = 2;
this.auditMsg.AuditContract = 2
this.getContractInfor(item) this.getContractInfor(item)
}, },
getContractInfor(item){ getContractInfor(item){
......
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