|
|
@ -11,7 +11,7 @@ |
|
|
|
<el-radio-group v-model.trim="scope.row.value" v-for="(item, index) in scope.row.option" |
|
|
|
:key="index" @change="handeleClickRadio(item.value)"> |
|
|
|
<el-radio :label="item.value" :disabled="formType == 'detail'"><span |
|
|
|
style="margin-right: 50px;">{{ item.label |
|
|
|
style="margin-right: 50px;" :value="item.value">{{ item.label |
|
|
|
}}</span></el-radio> |
|
|
|
</el-radio-group> |
|
|
|
</el-form-item> |
|
|
@ -104,6 +104,12 @@ export default { |
|
|
|
{ |
|
|
|
label: '特扶人员', |
|
|
|
value: 'specialSupportFlag' |
|
|
|
},{ |
|
|
|
label: '流动人员', |
|
|
|
value: 'floatingFlag' |
|
|
|
},{ |
|
|
|
label: '新阶层人士', |
|
|
|
value: 'newstratumflag' |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
@ -165,6 +171,7 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
updatedForm() { |
|
|
|
this.formData.tableData[0].value = 0; |
|
|
|
if (this.formType == 'add' || !this.userInfo.baseInfoDto.categoryInfo) return; |
|
|
|
const updateValue = (flag, dataIndex) => { |
|
|
|
const { tableData } = this.formData; |
|
|
|