|
|
|
@ -140,7 +140,10 @@
|
|
|
|
|
<el-form :model="form">
|
|
|
|
|
<el-form-item label="" prop="isGive">
|
|
|
|
|
<el-radio-group v-model="currentCert">
|
|
|
|
|
<el-radio style="width: 100%; margin-top: 10px;" :label="item" :key="item" v-for="item in certList">{{ item }}</el-radio>
|
|
|
|
|
<el-radio style="width: 100%; margin-top: 10px;" :label="item" :key="item" v-for="item in certList">{{
|
|
|
|
|
item
|
|
|
|
|
}}
|
|
|
|
|
</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
@ -282,7 +285,7 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let str = this.currentRow.zczbhhzbapzbh;
|
|
|
|
|
if (str.search(",") != -1) {
|
|
|
|
|
if (this.$isNotBlank(str) && str.search(",") != -1) {
|
|
|
|
|
this.currentCert = null;
|
|
|
|
|
this.certList = str.split(',');
|
|
|
|
|
this.dialogFormVisible = true;
|
|
|
|
|