Browse Source

Merge branch 'dev-0420' of http://git.elinkit.com.cn:7070/r/epmet-oper-gov into dev-0420

shibei_master
jiangyy 3 years ago
parent
commit
01851aa23d
  1. 2
      src/views/modules/base/community/buildTable.vue
  2. 2
      src/views/modules/base/community/roomTable.vue
  3. 8
      src/views/modules/base/epidemic/natFocus/natFocusList.vue
  4. 4
      src/views/modules/base/epidemic/vaccin.vue
  5. 12
      src/views/modules/base/epidemic/veroFocus/veroFocusList.vue

2
src/views/modules/base/community/buildTable.vue

@ -330,7 +330,7 @@ export default {
this.validTableDataNum = 0 this.validTableDataNum = 0
this.total = data.total this.total = data.total
data.list.forEach(item => { data.list.forEach(item => {
item.sort = parseInt(item.sort); item.sort = parseInt(item.sort) || 0;
item.sort = item.sort.toFixed(2) item.sort = item.sort.toFixed(2)
item.isChange = false item.isChange = false
if (item.agencyId === this.staffAgencyId) { if (item.agencyId === this.staffAgencyId) {

2
src/views/modules/base/community/roomTable.vue

@ -357,7 +357,7 @@ export default {
this.total = data.total this.total = data.total
this.validTableDataNum = 0 this.validTableDataNum = 0
data.list.forEach(item => { data.list.forEach(item => {
item.sort = parseInt(item.sort); item.sort = parseInt(item.sort) || 0;
item.sort = item.sort.toFixed(2) item.sort = item.sort.toFixed(2)
item.isChange = false item.isChange = false
item.houseNameShow = item.neighborHoodName + item.buildingName + item.unitNum + item.doorName item.houseNameShow = item.neighborHoodName + item.buildingName + item.unitNum + item.doorName

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

@ -673,16 +673,16 @@ export default {
async handleEdit (row) { async handleEdit (row) {
this.editFormTitle = "修改核酸检测关注名单"; this.editFormTitle = "修改核酸检测关注名单";
this.editFormShow = true; this.editFormShow = true;
let rowTem = JSON.parse(JSON.stringify(row)) const row1 = { ...row }
let row2 = await this.getInfo(rowTem); let row2 = await this.getInfo(row1);
this.$refs.ref_form_edit.initForm("edit", row2); this.$refs.ref_form_edit.initForm("edit", row2);
}, },
async handleDetail (row) { async handleDetail (row) {
this.editFormTitle = "查看核酸检测关注名单"; this.editFormTitle = "查看核酸检测关注名单";
this.editFormShow = true; this.editFormShow = true;
let rowTem = JSON.parse(JSON.stringify(row)) const row1 = { ...row }
let row2 = await this.getInfo(rowTem); let row2 = await this.getInfo(row1);
this.$refs.ref_form_edit.initForm("detail", row2); this.$refs.ref_form_edit.initForm("detail", row2);
}, },

4
src/views/modules/base/epidemic/vaccin.vue

@ -374,8 +374,8 @@ export default {
async handleDetail (row) { async handleDetail (row) {
this.formTitle = "详情"; this.formTitle = "详情";
this.formShow = true; this.formShow = true;
let rowTem = JSON.parse(JSON.stringify(row)) const row1 = { ...row }
let row2 = await this.getInfo(rowTem); let row2 = await this.getInfo(row1);
this.$refs.ref_form.initForm("detail", row2); this.$refs.ref_form.initForm("detail", row2);
}, },

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

@ -670,20 +670,16 @@ export default {
async handleEdit (row) { async handleEdit (row) {
this.editFormTitle = "修改疫苗接种关注名单"; this.editFormTitle = "修改疫苗接种关注名单";
this.editFormShow = true; this.editFormShow = true;
const row1 = { ...row }
let rowTem = JSON.parse(JSON.stringify(row)) let row2 = await this.getInfo(row1);
let row2 = await this.getInfo(rowTem);
this.$refs.ref_form_edit.initForm("edit", row2); this.$refs.ref_form_edit.initForm("edit", row2);
}, },
async handleDetail (row) { async handleDetail (row) {
this.editFormTitle = "查看疫苗接种关注名单"; this.editFormTitle = "查看疫苗接种关注名单";
this.editFormShow = true; this.editFormShow = true;
const row1 = { ...row }
let rowTem = JSON.parse(JSON.stringify(row)) let row2 = await this.getInfo(row1);
let row2 = await this.getInfo(rowTem);
this.$refs.ref_form_edit.initForm("detail", row2); this.$refs.ref_form_edit.initForm("detail", row2);
}, },

Loading…
Cancel
Save