diff --git a/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue b/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue index 094b66ceb..36feb308b 100644 --- a/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue +++ b/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue @@ -421,7 +421,24 @@ export default { trafficTypeList: [], dangerLevelList: [], - isolateTypeList: [], + isolateTypeList: [ + { + value: '0', + label: '集中隔离' + }, + { + value: '1', + label: '居家隔离' + }, + { + value: '2', + label: '居家健康监测' + }, + { + value: '4', + label: '不需要隔离' + }, + ], tripDataTypeList: [], dataRule: { @@ -486,7 +503,7 @@ export default { this.getDangerLevel() this.getTrafficType() - this.getIsolateType() + // this.getIsolateType() this.getTripDataType() }, destroyed () { diff --git a/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue b/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue index 4c6770756..c3084c377 100644 --- a/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue +++ b/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue @@ -456,8 +456,10 @@ export default { }, async toIssueInfo (index) { + const { tableList } = this; this.detailId = tableList[index].id + console.log('this.detailId', this.detailId) this.showDetail = true },