Browse Source

ss3

shibei_master
dai 4 years ago
parent
commit
a9894b3c8d
  1. 39
      src/views/modules/base/epidemic/natFocus/natFocusList.vue
  2. 959
      src/views/modules/base/epidemic/veroFocus/veroFocusList.vue

39
src/views/modules/base/epidemic/natFocus/natFocusList.vue

@ -670,21 +670,36 @@ export default {
}) })
}, },
handleEdit (row) { async handleEdit(row) {
this.editFormTitle = "修改核酸检测关注名单" this.editFormTitle = "修改核酸检测关注名单";
this.editFormShow = true this.editFormShow = true;
this.$nextTick(() => { let row2 = await this.getInfo(row);
this.$refs.ref_form_edit.initForm('edit', row) this.$refs.ref_form_edit.initForm("edit", row2);
})
}, },
handleDetail (row) { async handleDetail(row) {
this.editFormTitle = "查看核酸检测关注名单" this.editFormTitle = "查看核酸检测关注名单";
this.editFormShow = true this.editFormShow = true;
this.$nextTick(() => {
this.$refs.ref_form_edit.initForm('detail', row) let row2 = await this.getInfo(row);
}) this.$refs.ref_form_edit.initForm("detail", row2);
},
async getInfo(row) {
const url = "/epmetuser/icEpidemicSpecialAttention/detail";
let params = {
id: row.id,
};
const { data, code, msg } = await requestPost(url, params);
if (code === 0) {
row.mobile = data.mobile;
row.idCard = data.idCard;
}
return row;
}, },
handleSendNotice () { handleSendNotice () {

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

File diff suppressed because it is too large
Loading…
Cancel
Save