Browse Source

默认选中群众,加流动人员跟新阶层人士

feature
mk 1 year ago
parent
commit
60c50b53bf
  1. 4
      src/views/components/addResi.vue
  2. 10
      src/views/components/resiSearch.vue
  3. 9
      src/views/modules/portrayal/jumin/cpts/staffTag.vue

4
src/views/components/addResi.vue

@ -1401,7 +1401,11 @@ export default {
this.dialogVisible = false; this.dialogVisible = false;
}, },
hideExpand(formType) { hideExpand(formType) {
if(formType!= 'baseInfoDto'){
delete this.form[formType]; delete this.form[formType];
}else{
this.form['baseInfoDto'].deathFlag = 0;
}
this.dialogVisible = false; this.dialogVisible = false;
}, },
}, },

10
src/views/components/resiSearch.vue

@ -328,6 +328,14 @@ export default {
"label": "特扶人员", "label": "特扶人员",
"value": "SPECIAL_SUPPORT_FLAG", "value": "SPECIAL_SUPPORT_FLAG",
"children": null "children": null
},{
"label": "新阶层人士",
"value": "NEW_STRATUM_FLAG",
"children": null
},{
"label": "流动人员",
"value": "FLOATING_FLAG",
"children": null
} }
], ],
itemList, itemList,
@ -419,7 +427,7 @@ export default {
label: "邪教人员", label: "邪教人员",
value: "xiejiaorenyuan", value: "xiejiaorenyuan",
children: null children: null
}, }
], ],
careerStatusList: [], careerStatusList: [],
form: { form: {

9
src/views/modules/portrayal/jumin/cpts/staffTag.vue

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

Loading…
Cancel
Save