From 3b59f63dce4311a0ccce815960859944a83bf744 Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 30 Mar 2022 09:32:02 +0800 Subject: [PATCH 01/11] =?UTF-8?q?=E9=98=B2=E7=96=AB=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 3 +- src/views/modules/base/epidemic/antiInfo.vue | 337 ++++++++++++++++--- 2 files changed, 300 insertions(+), 40 deletions(-) diff --git a/src/App.vue b/src/App.vue index f472317a4..f743cc405 100644 --- a/src/App.vue +++ b/src/App.vue @@ -135,10 +135,11 @@ export default { position: relative; max-height: 82vh; box-sizing: border-box; - padding: 0 10px 20px !important; + padding: 0 0 20px !important; .dialog-h-content { max-height: calc(82vh - 80px); box-sizing: border-box; + padding: 0 10px; overflow: auto; } } diff --git a/src/views/modules/base/epidemic/antiInfo.vue b/src/views/modules/base/epidemic/antiInfo.vue index 8388bc4d8..86e205e63 100644 --- a/src/views/modules/base/epidemic/antiInfo.vue +++ b/src/views/modules/base/epidemic/antiInfo.vue @@ -119,7 +119,7 @@ size="small" class="list_item_width_1" clearable - placeholder="请输入身份证"> + placeholder="请输入手机号"> @@ -140,17 +140,17 @@ size="small" class="list_item_width_1" clearable - placeholder="请输入身份证"> + placeholder="请输入接种针次"> - + placeholder="请输入检测次数"> @@ -181,23 +181,25 @@ type="index" width="50"> - - - + label="所属房屋" + show-overflow-tooltip + width="240"> - + + - - +
+ +
+ + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + + + + +
+
+
+ + + + + + + + + + + + + + + + +
+
+
+ 取消 +
+ @@ -285,10 +505,10 @@ export default { return { loading: false, total: 0, - pageSize: 10, + pageSize: 20, pageNo: 0, tableLoading: false, - + activeName: 'second', agencyId: '', sHeight: 0, timeRange: [], @@ -305,13 +525,19 @@ export default { vaccinateCount: '', testCount: '' }, - formData: { - personInCharge: '',//负责人 - mobile: '',//联系电话 - gridId: '',//负责区域【网格Id】 - ninePlaceVal: '',//场所类型【九小场所Value值】 - isPage: true,//是否分页(是:true 否:false) 有这个参数是给新增巡查记录时用的,默认是 + formDetail: { + name: '', + gridName: '', + houseName: '', + mobile: '', + idCard: '', + vaccineCount: '', + natCount: '' }, + vaccineList: [], // 疫苗接种 + natList: [], // 核酸检测 + tripList: [], // 行程信息 + optionsV: [], optionsB: [], optionsH: [], @@ -345,6 +571,14 @@ export default { }, methods: { + handleCnalceForm() { + this.$refs.detail_form.resetFields() + this.vaccineList = [] + this.natList = [] + this.tripList = [] + this.formShow = false + + }, handleSearch () { this.loadTable() }, @@ -474,16 +708,15 @@ export default { }) }, - async loadTable () { this.tableLoading = true - const url = "/gov/org/placepatrolteam/getlist" + const url = "/epmetuser/epidemicPrevention/page" // const url = "http://yapi.elinkservice.cn/mock/245/gov/org/placeorg/getlist" let params = { pageSize: this.pageSize, pageNo: this.pageNo, - ...this.formData + ...this.searchForm } const { data, code, msg } = await requestPost(url, params) @@ -504,31 +737,54 @@ export default { } this.tableLoading = false }, + async getDetailInfo (id) { - handleScheduledTimeChange (time) { - if (time) { - this.formData.scheduledStartTime = time[0] - this.formData.scheduledEndTime = time[1] + const url = "/epmetuser/epidemicPrevention/detail" + let params = { + id + } + const { data, code, msg } = await requestPost(url, params) + + if (code === 0) { + this.formDetail = data } else { - this.formData.scheduledStartTime = '' - this.formData.scheduledEndTime = '' + this.$message.error(msg) + } + }, + async getDetailList (id) { + const url = "/epmetuser/epidemicPrevention/info" + let params = { + id } - }, + const { data, code, msg } = await requestPost(url, params) + if (code === 0) { + const { vaccineList, natList, tripList } = data + this.vaccineList = vaccineList + this.natList = natList + this.tripList = tripList + } else { + this.$message.error(msg) + } + }, diaClose () { - this.$refs.ref_form.resetData() + // this.$refs.ref_form.resetData() this.formShow = false }, - handleDetail (row) { + + async handleDetail (row) { + + await this.getDetailInfo(row.id) + await this.getDetailList(row.id) this.formTitle = '详情' this.formShow = true - this.$nextTick(() => { - this.$refs.ref_form.initForm('detail', row.natId, this.agencyId) - }) + // this.$nextTick(() => { + // this.$refs.ref_form.initForm('detail', row.natId, this.agencyId) + // }) }, addFormCancle () { @@ -586,7 +842,7 @@ export default { this.searchForm.buildingId = '' this.searchForm.unitId = '' this.searchForm.houseId = '' - this.pageSize = 10 + this.pageSize = 20 this.pageNo = 1 this.loadTable() }, @@ -638,6 +894,9 @@ export default { .resi-cell-select:last-child { margin-right: 0; } + .min-w180 { + min-width: 170px; + } From 137db3984c45afcd909e8105d0faecaa81a4f8db Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 30 Mar 2022 09:33:31 +0800 Subject: [PATCH 02/11] dd --- src/views/modules/base/epidemic/antiInfo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/base/epidemic/antiInfo.vue b/src/views/modules/base/epidemic/antiInfo.vue index 86e205e63..cc3cc13d0 100644 --- a/src/views/modules/base/epidemic/antiInfo.vue +++ b/src/views/modules/base/epidemic/antiInfo.vue @@ -418,7 +418,7 @@ header-align="center" align="center" label="检测时间" - width="140"> + width="150">
Date: Wed, 30 Mar 2022 09:54:58 +0800 Subject: [PATCH 03/11] =?UTF-8?q?bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/base/epidemic/natInfo/natForm.vue | 44 ++++++++++++++----- 1 file changed, 33 insertions(+), 11 deletions(-) diff --git a/src/views/modules/base/epidemic/natInfo/natForm.vue b/src/views/modules/base/epidemic/natInfo/natForm.vue index 8d1b761ee..f656dd0fd 100644 --- a/src/views/modules/base/epidemic/natInfo/natForm.vue +++ b/src/views/modules/base/epidemic/natInfo/natForm.vue @@ -162,13 +162,17 @@ prop="channel" label-width="150px" style="display: block"> - + + 小程序通知 + + 短信通知 - + --> 0 && !this.formData.content) { - this.$message({ - type: 'warning', - message: '请填写通知内容' - }) - return false; + if (this.formData.isSelChannel) { + if (!this.formData.content) { + this.$message({ + type: 'warning', + message: '请填写通知内容' + }) + return false; + } else { + this.formData.channel = ['0'] + } + + } else { + this.formData.channel = [] } this.btnDisable = true @@ -518,6 +539,7 @@ export default { natTime: '', natAddress: '', natResult: '', + isSelChannel: false, channel: [], content: '', From 2f05880d4318f9dc156dc13e4960194a7d8ae537 Mon Sep 17 00:00:00 2001 From: jiangyy Date: Wed, 30 Mar 2022 10:52:02 +0800 Subject: [PATCH 04/11] bug --- .../modules/base/epidemic/natInfo/natForm.vue | 15 +++- .../base/epidemic/veroFocus/veroFocusAdd.vue | 79 ++++++++++++++----- .../base/epidemic/veroFocus/veroFocusEdit.vue | 33 +++++--- .../base/epidemic/veroFocus/vfSendNotice.vue | 28 ++++++- .../base/epidemic/veroFocus/vfVisiteList.vue | 4 +- 5 files changed, 121 insertions(+), 38 deletions(-) diff --git a/src/views/modules/base/epidemic/natInfo/natForm.vue b/src/views/modules/base/epidemic/natInfo/natForm.vue index f656dd0fd..1da562239 100644 --- a/src/views/modules/base/epidemic/natInfo/natForm.vue +++ b/src/views/modules/base/epidemic/natInfo/natForm.vue @@ -392,10 +392,19 @@ export default { } }, + handleComfirm () { + this.$refs['ref_form'].validate((valid, messageObj) => { + if (!valid) { + app.util.validateRule(messageObj) - async handleComfirm () { + } else { + this.addNat() + } + }) + }, + async addNat () { const regPhone = /^1(3|4|5|6|7|8|9)\d{9}$/; //手机号码 if (regPhone.test(this.formData.mobile) === false) { this.btnDisable = false @@ -587,9 +596,7 @@ export default { natResult: [ { required: true }, ], - natAddress: [ - { required: false }, - ], + channel: [ { required: false }, ], diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue index ba00652e4..d952132dd 100644 --- a/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue +++ b/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue @@ -64,13 +64,16 @@ prop="channel" label-width="150px" style="display: block"> - + 小程序通知 + + 短信通知 - + --> - + 小程序通知 + { + if (!valid) { + app.util.validateRule(messageObj) + + } else { + this.handleVero() + } + }) + }, - async handleComfirm () { + async handleVero () { let list = [] if (this.activeName === 'first') { list.push(this.formData1) @@ -513,12 +538,19 @@ export default { return false; } - if (this.formData1.channel.length > 0 && !this.formData1.content) { - this.$message({ - type: 'warning', - message: '请填写通知内容' - }) - return false; + if (this.formData1.isSelChannel) { + if (!this.formData1.content) { + this.$message({ + type: 'warning', + message: '请填写通知内容' + }) + return false; + } else { + this.formData1.channel = ['0'] + } + + } else { + this.formData1.channel = [] } } else { @@ -529,12 +561,19 @@ export default { return false } - if (this.formData2.channel.length > 0 && !this.formData2.content) { - this.$message({ - type: 'warning', - message: '请填写通知内容' - }) - return false; + if (this.formData2.isSelChannel) { + if (!this.formData2.content) { + this.$message({ + type: 'warning', + message: '请填写通知内容' + }) + return false; + } else { + this.formData2.channel = ['0'] + } + + } else { + this.formData2.channel = [] } this.selectionAll.forEach(element => { @@ -604,6 +643,7 @@ export default { idCard: '', mobile: '', remark: '', + isSelChannel: false, channel: [], content: '', attentionType: 1, @@ -612,6 +652,7 @@ export default { this.formData2 = { attentionType: 1, remark: '', + isSelChannel: false, channel: [], content: '', } diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue index 19297662c..0c12d5e0a 100644 --- a/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue +++ b/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue @@ -63,13 +63,16 @@ prop="channel" label-width="150px" style="display: block"> - + 小程序通知 + + 短信通知 - + --> 0 && !this.formData.content) { - this.$message({ - type: 'warning', - message: '请填写通知内容' - }) - return false; + if (this.formData.isSelChannel) { + if (!this.formData.content) { + this.$message({ + type: 'warning', + message: '请填写通知内容' + }) + return false; + } else { + this.formData.channel = ['0'] + } + + } else { + this.formData.channel = [] } this.btnDisable = true @@ -202,6 +214,7 @@ export default { idCard: '', mobile: '', remark: '', + isSelChannel: false, channel: [], content: '', diff --git a/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue b/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue index e341a6d52..957388e68 100644 --- a/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue +++ b/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue @@ -12,13 +12,16 @@ prop="channel" label-width="150px" style="display: block"> - + 小程序通知 + + 短信通知 - + --> @@ -156,6 +156,7 @@ export default { // const url = '/epmetuser/followup/page' const url = 'http://yapi.elinkservice.cn/mock/245/epmetuser/followup/page' let params = { + name: this.formData.name, idCard: this.formData.idCard, pageNo: this.pageNo, pageSize: this.pageSize, @@ -207,6 +208,7 @@ export default { const url = "/epmetuser/followup/export" let params = { idCard: this.formData.idCard, + name: this.formData.name, } From bc4ec5ef7a74c273625ac2041b630256915957ba Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 30 Mar 2022 13:51:23 +0800 Subject: [PATCH 05/11] dd --- src/views/modules/base/epidemic/travel.vue | 119 ++++++++++++++------- 1 file changed, 83 insertions(+), 36 deletions(-) diff --git a/src/views/modules/base/epidemic/travel.vue b/src/views/modules/base/epidemic/travel.vue index 9091d65dd..be4860469 100644 --- a/src/views/modules/base/epidemic/travel.vue +++ b/src/views/modules/base/epidemic/travel.vue @@ -4,12 +4,12 @@ + :label-width="'100px'">
- + - - + + + + + + - +
+
+ + + + + + + + + width="120"> + width="180"> + + + + + + + label="离开本地时间" + width="160"> + label="最近一次通知时间" + width="160"> + label="备注" + min-width="120"> + + - + @dialogOk="addFormOk">
@@ -192,7 +241,7 @@ + + + + + + + + From e52c9baa34aebdd03f3563256aa6b933a0b80241 Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 30 Mar 2022 14:16:00 +0800 Subject: [PATCH 07/11] dd --- src/views/modules/base/epidemic/antiInfo.vue | 12 +++---- src/views/modules/base/epidemic/travel.vue | 36 ++++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/views/modules/base/epidemic/antiInfo.vue b/src/views/modules/base/epidemic/antiInfo.vue index cc3cc13d0..b7c209cfb 100644 --- a/src/views/modules/base/epidemic/antiInfo.vue +++ b/src/views/modules/base/epidemic/antiInfo.vue @@ -135,8 +135,8 @@ - + - +
- - - - - - - - - { - if (item.time) { - let timeArray = item.time.split(' ') - item.time = timeArray[0] - } + // this.tableData.forEach(item => { + // if (item.time) { + // let timeArray = item.time.split(' ') + // item.time = timeArray[0] + // } - }); + // }); } else { this.$message.error(msg) } @@ -430,7 +430,7 @@ export default { this.formData.startDate = '' this.formData.endDate = '' this.timeRange = [] - this.pageSize = 10 + this.pageSize = 20 this.pageNo = 1 this.loadTable() }, From 48c889f79f16296f65f0d31964d6cd686a7e6fda Mon Sep 17 00:00:00 2001 From: 13176889840 <13176889840@163.com> Date: Wed, 30 Mar 2022 15:39:32 +0800 Subject: [PATCH 08/11] dd --- .../modules/base/epidemic/travelForm.vue | 211 +++++++++--------- 1 file changed, 109 insertions(+), 102 deletions(-) diff --git a/src/views/modules/base/epidemic/travelForm.vue b/src/views/modules/base/epidemic/travelForm.vue index 8d1b761ee..4300a7d3c 100644 --- a/src/views/modules/base/epidemic/travelForm.vue +++ b/src/views/modules/base/epidemic/travelForm.vue @@ -67,9 +67,9 @@ placeholder="请输入姓名" clearable :disabled="isFromResi" - v-model="formData.name"> + v-model="formData.name" style="margin-right:10px;"> - + 添加到核酸检测关注名单 + + + + + + + + + + + + + + + + - - - + + + + - - - - - - - 阴性 - 阳性 - - - - - - - - -
请选择1张图片,只能上传jpg、png、gif格式
-
- + placeholder="请输入内容" + v-model="formData.remark">
From 265f57c19848a6bcf5e5eb360e45f323775ed397 Mon Sep 17 00:00:00 2001 From: jiangyy Date: Wed, 30 Mar 2022 16:38:10 +0800 Subject: [PATCH 09/11] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?= =?UTF-8?q?=E5=85=B3=E6=B3=A8=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../scss/modules/management/epidemic.scss | 15 + .../scss/modules/visual/basicInfoMain.scss | 4 +- src/router/index.js | 72 +- .../base/epidemic/natFocus/natFocusAdd.vue | 742 +++++++++++++++++ .../base/epidemic/natFocus/natFocusEdit.vue | 300 +++++++ .../base/epidemic/natFocus/natFocusList.vue | 775 ++++++++++++++++++ .../base/epidemic/natFocus/nfNoticeList.vue | 171 ++++ .../base/epidemic/natFocus/nfSendNotice.vue | 240 ++++++ .../base/epidemic/natFocus/nfVisiteList.vue | 324 ++++++++ .../modules/base/epidemic/natInfo/natForm.vue | 17 +- .../modules/base/epidemic/natInfo/natList.vue | 12 +- .../base/epidemic/veroFocus/veroFocusAdd.vue | 37 +- .../base/epidemic/veroFocus/veroFocusList.vue | 22 +- .../base/epidemic/veroFocus/vfSendNotice.vue | 2 +- .../base/epidemic/veroFocus/vfVisiteList.vue | 39 +- .../visual/basicinfo/basicInfoMain.vue | 37 +- .../modules/visual/basicinfo/peopleSearch.vue | 8 +- 17 files changed, 2700 insertions(+), 117 deletions(-) create mode 100644 src/views/modules/base/epidemic/natFocus/natFocusAdd.vue create mode 100644 src/views/modules/base/epidemic/natFocus/natFocusEdit.vue create mode 100644 src/views/modules/base/epidemic/natFocus/natFocusList.vue create mode 100644 src/views/modules/base/epidemic/natFocus/nfNoticeList.vue create mode 100644 src/views/modules/base/epidemic/natFocus/nfSendNotice.vue create mode 100644 src/views/modules/base/epidemic/natFocus/nfVisiteList.vue diff --git a/src/assets/scss/modules/management/epidemic.scss b/src/assets/scss/modules/management/epidemic.scss index d5d2be8c5..c79f9efe0 100644 --- a/src/assets/scss/modules/management/epidemic.scss +++ b/src/assets/scss/modules/management/epidemic.scss @@ -1,6 +1,14 @@ .epidemic-form { .item_width_1 { width: 560px; + + ::v-deep .el-textarea__inner { + padding-bottom: 20px; + } + ::v-deep .el-input__count { + right: 20px; + line-height: 12px; + } } .item_width_2 { width: 220px; @@ -109,3 +117,10 @@ margin-top: 20px; } } + +.twoline { + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow: hidden; +} diff --git a/src/assets/scss/modules/visual/basicInfoMain.scss b/src/assets/scss/modules/visual/basicInfoMain.scss index 72c37bd1c..8d0f82176 100644 --- a/src/assets/scss/modules/visual/basicInfoMain.scss +++ b/src/assets/scss/modules/visual/basicInfoMain.scss @@ -105,8 +105,8 @@ .div_info { box-sizing: border-box; width: 100%; - margin-top: 21px; - height: calc(88vh - 87px); + + height: calc(88vh - 10px); color: #fff; background: url('../../../img/modules/visual/warning-box.png') no-repeat center; diff --git a/src/router/index.js b/src/router/index.js index 9712a81a9..e77263d4b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -233,36 +233,15 @@ router.beforeEach((to, from, next) => { }, { icon: "icon-setting", - id: "3", - name: "人员预警", - url: "visual/warning/index", + id: "2", + name: "人员图谱", + url: "visual/basicinfo/peopleSearch", }, { icon: "icon-setting", - id: "6", - name: "社区治理", - children: [ - { - url: "visual/communityGovern/processAnalyze", - name: "项目处理分析", - id: "processAnalyze", - }, - { - url: "/visual/communityGovern/typeAnalyze", - name: "项目分类分析", - id: "typeAnalyze", - }, - { - url: "/visual/communityGovern/resibuzz", - name: "居民热议", - id: "resibuzz", - }, - { - url: "/visual/communityGovern/distributionAnalyze", - name: "项目分布分析", - id: "distributionAnalyze", - }, - ], + id: "3", + name: "人员预警", + url: "visual/warning/index", }, { icon: "icon-setting", @@ -282,7 +261,7 @@ router.beforeEach((to, from, next) => { }, { url: "/visual/communityParty/elegant", - name: "党员风采", + name: "党员风采榜", id: "5fwaefwaefawef589", }, ], @@ -290,21 +269,50 @@ router.beforeEach((to, from, next) => { { icon: "icon-setting", id: "2221321123", - name: "措施清单", + name: "社区服务", // url: "visual/basicinfo/basicInfoMain", children: [ { url: "/visual/measure/service", - name: "服务措施分析", + name: "需求服务分析", id: "5feawfwaefwa57", }, { url: "/visual/measure/volunteer", - name: "志愿者服务分析", + name: "志愿服务分析", id: "5fwaefwaefawef58", }, ], }, + { + icon: "icon-setting", + id: "6", + name: "社区治理", + children: [ + { + url: "visual/communityGovern/processAnalyze", + name: "事件处置分析", + id: "processAnalyze", + }, + { + url: "/visual/communityGovern/typeAnalyze", + name: "事件分类分析", + id: "typeAnalyze", + }, + { + url: "/visual/communityGovern/resibuzz", + name: "居民热议分析", + id: "resibuzz", + }, + { + url: "/visual/communityGovern/distributionAnalyze", + name: "事件分布分析", + id: "distributionAnalyze", + }, + ], + }, + + { icon: "icon-setting", id: "2221321fefefaewfa123", @@ -315,7 +323,7 @@ router.beforeEach((to, from, next) => { { icon: "icon-setting", id: "44rq22222q2222", - name: "AI安防", + name: "智慧安防", // url: "visual/basicinfo/basicInfoMain", children: [ { diff --git a/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue b/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue new file mode 100644 index 000000000..49d2df70a --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue @@ -0,0 +1,742 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/natFocus/natFocusEdit.vue b/src/views/modules/base/epidemic/natFocus/natFocusEdit.vue new file mode 100644 index 000000000..0c12d5e0a --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/natFocusEdit.vue @@ -0,0 +1,300 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/natFocus/natFocusList.vue b/src/views/modules/base/epidemic/natFocus/natFocusList.vue new file mode 100644 index 000000000..087c6fe72 --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/natFocusList.vue @@ -0,0 +1,775 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/natFocus/nfNoticeList.vue b/src/views/modules/base/epidemic/natFocus/nfNoticeList.vue new file mode 100644 index 000000000..7b7fb33ca --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/nfNoticeList.vue @@ -0,0 +1,171 @@ + + + + + + diff --git a/src/views/modules/base/epidemic/natFocus/nfSendNotice.vue b/src/views/modules/base/epidemic/natFocus/nfSendNotice.vue new file mode 100644 index 000000000..9274d9286 --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/nfSendNotice.vue @@ -0,0 +1,240 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue b/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue new file mode 100644 index 000000000..67448435e --- /dev/null +++ b/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue @@ -0,0 +1,324 @@ + + + + + + \ No newline at end of file diff --git a/src/views/modules/base/epidemic/natInfo/natForm.vue b/src/views/modules/base/epidemic/natInfo/natForm.vue index 1da562239..4307a74eb 100644 --- a/src/views/modules/base/epidemic/natInfo/natForm.vue +++ b/src/views/modules/base/epidemic/natInfo/natForm.vue @@ -1,6 +1,7 @@