|
@@ -16,7 +16,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="18">
|
|
|
<el-select v-model="signType" placeholder="请选择证书类型" @change="signTypeChang()">
|
|
|
- <el-option v-for="item in seloptions" :label="item.label" :value="item.value" ></el-option>
|
|
|
+ <el-option v-for="item in seloptions" :label="item.label" :value="item.value" :key="item.value"></el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -46,8 +46,8 @@
|
|
|
签章类型:
|
|
|
</el-col>
|
|
|
<el-col :span="18">
|
|
|
- <el-select v-model="signInfo" placeholder="请选择签章类型" >
|
|
|
- <el-option v-for="item in options" :key="item.dictKey" :value="item" :label="item.dictValue"></el-option>
|
|
|
+ <el-select v-model="signInfo" placeholder="请选择签章类型" @change="signInfoChang()">
|
|
|
+ <el-option v-for="item in options" :key="item.dictKey" :value="item.dictKey" :label="item.dictValue"></el-option>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -185,6 +185,11 @@ export default {
|
|
|
}
|
|
|
}, 200);
|
|
|
},
|
|
|
+ //签章类型改变e
|
|
|
+ signInfoChang(e){
|
|
|
+ console.log('改变',e);
|
|
|
+ console.log(this.options,'op');
|
|
|
+ },
|
|
|
async addRoleInfo(){
|
|
|
var isadd = true;
|
|
|
// 集合中添加数据
|