|
|
|
@ -4822,6 +4822,7 @@
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="是否涉及个人信息" required>
|
|
|
|
|
<el-select
|
|
|
|
|
@change="changeSfsjgrxx(dataIndex)"
|
|
|
|
|
v-model="dataItem.sfsjgrxx"
|
|
|
|
|
:placeholder="'请填写是否涉及个人信息' + (dataIndex + 1)"
|
|
|
|
|
>
|
|
|
|
@ -5136,6 +5137,7 @@ export default {
|
|
|
|
|
ruleForm: {
|
|
|
|
|
sjzcList: [
|
|
|
|
|
{
|
|
|
|
|
grxxsjl:0,
|
|
|
|
|
sjzcSjkmc: "",
|
|
|
|
|
sjzcSjklx: "",
|
|
|
|
|
},
|
|
|
|
@ -5395,10 +5397,19 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
changeSfsjgrxx(index){
|
|
|
|
|
if(this.ruleForm.sjzcList[index].sfsjgrxx != 1){
|
|
|
|
|
this.ruleForm.sjzcList[index].grxxsjl = 0
|
|
|
|
|
}else{
|
|
|
|
|
this.ruleForm.sjzcList[index].grxxsjl = ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
addSjzcList() {
|
|
|
|
|
this.ruleForm.sjzcList.push({
|
|
|
|
|
sjzcSjkmc: "",
|
|
|
|
|
sjzcSjklx: "",
|
|
|
|
|
grxxsjl:0
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
removeSjzcList(index) {
|
|
|
|
|