jiangyy 3 years ago
parent
commit
b47573dce6
  1. 2
      src/views/modules/base/epidemic/veroFocus/veroFocusList.vue
  2. 7
      src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue

2
src/views/modules/base/epidemic/veroFocus/veroFocusList.vue

@ -713,7 +713,7 @@ export default {
handleNoticeList (row) {
this.noticeListFormShow = true;
this.$nextTick(() => {
this.$refs.ref_noticelist.initTable(row.realIdCard);
this.$refs.ref_noticelist.initTable(row.idCard);
});
},
handleVisiteList (row) {

7
src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue

@ -96,7 +96,12 @@ export default {
async initForm (selectionAll) {
console.log(selectionAll)
this.$refs['ref_form1'].resetFields();
this.formData.userList = selectionAll
this.formData.userList = JSON.stringify(selectionAll)
this.formData.userList.forEach(element => {
element.idCard = element.realIdCard
});
},

Loading…
Cancel
Save