diff --git a/src/assets/scss/buttonstyle.scss b/src/assets/scss/buttonstyle.scss index 1e683d95a..7a60a21be 100644 --- a/src/assets/scss/buttonstyle.scss +++ b/src/assets/scss/buttonstyle.scss @@ -86,6 +86,13 @@ background-color: #4ec591 !important; border-color: #4ec591 !important; } +//列表上方操作按钮,其他按钮 +.diy-button--more { + color: #fff !important; + background-color: #23c1c4 !important; + border-color: #23c1c4 !important; +} + //table按钮样式 //查看 diff --git a/src/assets/scss/modules/management/epidemic.scss b/src/assets/scss/modules/management/epidemic.scss index 2164e4206..d5d2be8c5 100644 --- a/src/assets/scss/modules/management/epidemic.scss +++ b/src/assets/scss/modules/management/epidemic.scss @@ -1,20 +1,22 @@ -.item_width_1 { - width: 560px; -} -.item_width_2 { - width: 220px; -} -.item_width_3 { - width: 180px; -} +.epidemic-form { + .item_width_1 { + width: 560px; + } + .item_width_2 { + width: 220px; + } + .item_width_3 { + width: 180px; + } -.btn-selperson { - margin-left: 20px; -} + .btn-selperson { + margin-left: 20px; + } -.form_div_btn { - margin-top: 20px; - text-align: center; + .form_div_btn { + margin-top: 20px; + text-align: center; + } } .main_tab { @@ -70,3 +72,40 @@ flex-direction: column; justify-content: center; } +.div-mult-form { + margin-top: 20px; + + .div_person { + display: flex; + font-size: 14px; + padding-bottom: 20px; + + .person_title { + text-align: right; + flex: 0 0 100px; + + line-height: 36px; + padding: 0 12px 0 0; + } + + .tag_item { + margin-right: 10px; + margin-top: 10px; + } + .tag_tip { + margin-top: 10px; + color: #9c9c9c; + } + } +} +.div-mult-table { + padding: 0 20px; +} + +.div_dialog_table { + padding: 10px; + + .table { + margin-top: 20px; + } +} diff --git a/src/views/modules/base/epidemic/natInfo/natForm.vue b/src/views/modules/base/epidemic/natInfo/natForm.vue index d9a21d5fb..8d1b761ee 100644 --- a/src/views/modules/base/epidemic/natInfo/natForm.vue +++ b/src/views/modules/base/epidemic/natInfo/natForm.vue @@ -1,14 +1,15 @@ @@ -207,6 +222,8 @@ export default { data () { return { formType: 'add', //表单操作类型 add新增,edit编辑,detail详情 + hideUploadEdit: false, // 隐藏'上传按钮' + limitNum: 1, enterType: '1',//录入方式1 手动输入 2 选择居民 isFromResi: false,//是否从已有居民信息中选择 @@ -215,26 +232,31 @@ export default { btnDisable: false, - natId: '', + icNatId: '', formData: { + icNatId: '', + agencyId: '',//当前网格所属组织Id + userId: '',//居民端小程序的用户id、数字社区的icResiUserId、其他情况无值 + userType: 'icresi',//居民端小程序的人:resi;数字社区的居民:icresi;导入的:import;同步的:synchro name: '', idCard: '', - phone: '', - checkTime: '', - address: '', - result: '', - noticeWay: [], - noticeContent: '', - attachmentList: [] + mobile: '', + natTime: '', + natAddress: '', + natResult: '', + channel: [], + content: '', + + fileName: '',//附件名 + attachmentType: '',//附件类型((图片 - image、 视频 - video、 语音 - voice、 文档 - doc)) + attachmentUrl: '',//附件地址 }, - fileList: [], uploadUlr: window.SITE_CONFIG['apiURL'] + '/oss/file/uploadvariedfile', dialogImageUrl: '', dialogVisible: false, - } }, components: {}, @@ -247,26 +269,30 @@ export default { methods: { - async initForm (type, natId) { - this.startLoading() + async initForm (type, icNatId) { + + this.formData.agencyId = this.agencyId + this.$refs['ref_form'].resetFields(); this.formType = type - if (natId) { - this.natId = natId - this.formData.id = natId + + if (icNatId) { + this.icNatId = icNatId + this.formData.icNatId = icNatId + this.isFromResi = false await this.loadFormData() } - this.endLoading() + }, handleChangeEnterType (value) { this.formData.name = '' - this.formData.phone = '' + this.formData.mobile = '' this.formData.idCard = '' this.formData.gridId = '' - this.formData.personId = '' + this.formData.userId = '' if (value === '2') { this.isFromResi = true } else { @@ -312,96 +338,91 @@ export default { }, async handleSelPerson (personItem) { + this.formData.userId = personItem.demandUserId this.formData.name = personItem.demandUserName - this.formData.phone = personItem.demandUserMobile + this.formData.mobile = personItem.demandUserMobile this.formData.idCard = personItem.idCard - - }, - - handleTime () { - if (!this.formData.remindTime) return - var startAt = new Date(this.formData.remindTime) * 1000 / 1000; - if (startAt < Date.now()) { - this.formData.remindTime = dateFormats('YYYY-mm-dd HH:MM', new Date()); - } - }, - - async loadFormData () { - // const url = 'http://yapi.elinkservice.cn/mock/245/gov/project/memoConcern' - const url = '/gov/project/memoConcern' + // const url = 'http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/detail' + const url = '/epmetuser/icNat/detail' let params = { - id: this.natId, - readFlag: '0', + icNatId: this.icNatId, } const { data, code, msg } = await requestPost(url, params) if (code === 0) { this.formData = data - - if (data.attachmentList) { - data.attachmentList.forEach(element => { - element.name = element.fileName - element.type = element.attachmentType - element.size = element.attachmentSize - }); - this.fileList = data.attachmentList + this.formData.icNatId = this.icNatId + this.fileList = [] + if (data.fileName) { + let obj = { + name: data.fileName, + type: data.attachmentType, + url: data.attachmentUrl, + } + // data.attachmentList.forEach(element => { + // element.name = element.fileName + // element.type = element.attachmentType + // element.size = element.attachmentSize + // }); + this.fileList.push(obj) } + this.hideUploadEdit = this.fileList.length >= this.limitNum; + } else { this.$message.error(msg) } }, + async handleComfirm () { + const regPhone = /^1(3|4|5|6|7|8|9)\d{9}$/; //手机号码 + if (regPhone.test(this.formData.mobile) === false) { + this.btnDisable = false + this.$message({ + type: 'warning', + message: '请输入正确的手机号码' + }) + return false; + } + const regCard = /(^\d{15}$)|(^\d{17}(\d|X)$)/; //身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X + if (regCard.test(this.formData.idCard) === false) { + this.btnDisable = false + this.$message({ + type: 'warning', + message: '请输入正确的身份证号码' + }) + return false; + } + + if (this.formData.channel.length > 0 && !this.formData.content) { + this.$message({ + type: 'warning', + message: '请填写通知内容' + }) + return false; + } + this.btnDisable = true setTimeout(() => { this.btnDisable = false }, 5000) - this.$refs['ref_form'].validate(async (valid, messageObj) => { - if (!valid) { - app.util.validateRule(messageObj) - this.btnDisable = false - } else { - - await this.addNat() - } - - }) - - }, - async addNat () { - console.log(this.formData) - return false - - const regPhone = /^1(3|4|5|6|7|8|9)\d{9}$/; //手机号码 - // if (regPhone.test(this.formData.mobile) === false) { - // this.btnDisable = false - // this.$message({ - // type: 'warning', - // message: '请输入正确的手机号码' - // }) - // return false; - // } - - if (this.fileList.length > 0) { - this.formData.attachmentList = this.fileList - } let url = '' if (this.formType === 'add') { - url = '/gov/project/memoConcern/save' - // url = "http://yapi.elinkservice.cn/mock/245/gov/project/memoConcern/save" - this.formData.id = '' + url = '/epmetuser/icNat/add' + // url = "http://yapi.elinkservice.cn/mock/102/epmetuser/icNat/add" + this.formData.icNatId = '' } else { - url = '/gov/project/memoConcern/update' - // url = "http://yapi.elinkservice.cn/mock/245/gov/project/memoConcern/update" + url = '/epmetuser/icNat/edit' + // url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/edit" } @@ -415,8 +436,7 @@ export default { this.resetData() this.$emit('dialogOk') this.btnDisable = false - this.$store.dispatch('setTipsList') - this.$store.dispatch('setTipsTime') + } else { this.btnDisable = false this.$message.error(msg) @@ -425,81 +445,85 @@ export default { }, handleCancle () { - this.resetData() this.$emit('dialogCancle') }, + handleRemove (file, fileList) { + this.hideUploadEdit = fileList.length >= this.limitNum; + this.formData.fileName = '' + this.formData.attachmentUrl = '' + this.formData.attachmentType = '' + this.fileList = [] + + }, + handlePictureCardPreview (file) { + this.dialogImageUrl = file.url; + this.dialogVisible = true; + }, + + handleEditChange (file, fileList) { + this.hideUploadEdit = fileList.length >= this.limitNum; + + }, + beforeUpload (file) { const array = file.name.split('.') const extension = array[array.length - 1] - const isLt1M = (file.size / 1024 / 1024) < 5 - if (extension !== 'xls' - && extension !== 'xlsx' - && extension !== 'doc' - && extension !== 'docx' - && extension !== 'pdf') { - this.$message.error('只能上传word、excel、pdf文件!') + // const isLt1M = (file.size / 1024 / 1024) < 5 + if (extension !== 'jpg' + && extension !== 'png' + && extension !== 'gif' + ) { + this.$message.error('只能上传jpg、png、gif文件!') return false } - if (!isLt1M) { - this.$message.error('上传文件大小不能超过 5MB!') - } - return isLt1M + // if (!isLt1M) { + // this.$message.error('上传文件大小不能超过 5MB!') + // } + // return isLt1M }, - handleFileRemove (file) { - - if (file && file.status === "success") { - this.fileList.splice(this.fileList.findIndex(item => item.uid === file.uid), 1) - } - }, - handleFileSuccess (res, file) { if (res.code === 0 && res.msg === 'success') { const array = file.name.split('.') const fileType = array[array.length - 1] - file.fileName = file.name - file.attachmentUrl = res.data.url - file.attachmentSize = file.size - file.attachmentType = 'doc' + this.formData.fileName = file.name + this.formData.attachmentUrl = res.data.url + this.formData.attachmentType = 'image' + file.attachmentFormat = fileType + file.attachmentSize = file.size - this.fileList.push(file) - console.log(this.fileList) } else this.$message.error(res.msg) }, - //下载 - handleFileDownload (file) { - - var a = document.createElement('a'); - var event = new MouseEvent('click'); - a.download = file.fileName; - console.log(a) - a.href = file.attachmentUrl; - a.dispatchEvent(event); - - - }, - resetData () { - this.natId = '' + this.icNatId = '' + this.fileList = [] + this.hideUploadEdit = false this.formData = { + icNatId: '', + agencyId: '',//当前网格所属组织Id + userId: '',//居民端小程序的用户id、数字社区的icResiUserId、其他情况无值 + userType: 'icresi',//居民端小程序的人:resi;数字社区的居民:icresi;导入的:import;同步的:synchro name: '', idCard: '', - phone: '', - checkTime: '', - address: '', - result: '', - noticeWay: [], - noticeContent: '', - attachmentList: [] + mobile: '', + natTime: '', + natAddress: '', + natResult: '', + channel: [], + content: '', + + fileName: '',//附件名 + attachmentType: '',//附件类型((图片 - image、 视频 - video、 语音 - voice、 文档 - doc)) + attachmentUrl: '',//附件地址 } }, @@ -528,26 +552,26 @@ export default { idCard: [ { required: true, message: '身份证号不能为空', trigger: 'blur' } ], - phone: [ + mobile: [ { required: true, message: '手机号不能为空', trigger: 'blur' }, ], - checkTime: [ + natTime: [ { required: true, message: '检测时间不能为空', trigger: 'blur' }, ], - address: [ + natAddress: [ { required: false }, ], - result: [ + natResult: [ { required: true }, ], - address: [ + natAddress: [ { required: false }, ], - noticeWay: [ + channel: [ { required: false }, ], - noticeContent: [ + content: [ { required: false }, ], @@ -572,4 +596,16 @@ export default { @import "@/assets/scss/modules/management/epidemic.scss"; + + + diff --git a/src/views/modules/base/epidemic/natInfo/natList.vue b/src/views/modules/base/epidemic/natInfo/natList.vue index 9d38bdb99..f81b23058 100644 --- a/src/views/modules/base/epidemic/natInfo/natList.vue +++ b/src/views/modules/base/epidemic/natInfo/natList.vue @@ -6,10 +6,22 @@ ref="ref_searchform" :label-width="'90px'">
+ + + + + + - + - + placeholder="请输入手机号"> - - - - + + + - - 查询 - 重置 +
+ + + + + + + + 查询 + 重置 +
@@ -69,7 +94,7 @@ :show-file-list='false' :before-upload="beforeUpload" action="" - accept=".xls,.xlsx" + accept=".xlsx" :limit="1" :on-exceed="handleExceed" :http-request="uploadFile"> @@ -97,11 +122,11 @@ type="index" width="50"> - + width="100"> - + width="170"> - + width="170"> - - + width="100"> 查看 - 修改 + + 删除 + + 关注 + + 取消关注 + @@ -183,7 +241,7 @@ class="dialog-h" @closed="diaClose"> @@ -204,19 +262,31 @@ export default { return { loading: false, total: 0, - pageSize: 10, + pageSize: 20, pageNo: 0, tableLoading: false, agencyId: '', + orgTypeList: [ + { + value: 'current', + label: '本辖区居民检测记录' + }, + { + value: 'all', + label: '全部检测记录' + }, + ], timeRange: [], formData: { - personInCharge: '',//负责人 - mobile: '',//联系电话 - gridId: '',//负责区域【网格Id】 - ninePlaceVal: '',//场所类型【九小场所Value值】 - isPage: true,//是否分页(是:true 否:false) 有这个参数是给新增巡查记录时用的,默认是 + orgType: 'current',//当前组织:current 根组织:all + name: '',//姓名 + mobile: '',//手机号 + idCard: '',//身份证号码 + startTime: '',//检测开始时间yyyy-MM-dd HH:mm + endTime: '',//检测结束时间yyyy-MM-dd HH:mm + }, tableData: [], @@ -249,14 +319,11 @@ export default { this.loadTable() }, - - - async loadTable () { this.tableLoading = true - const url = "/gov/org/placepatrolteam/getlist" - // const url = "http://yapi.elinkservice.cn/mock/245/gov/org/placeorg/getlist" + const url = "/epmetuser/icNat/natlist" + // const url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/natlist" let params = { pageSize: this.pageSize, pageNo: this.pageNo, @@ -270,10 +337,7 @@ export default { this.tableData = data.list this.tableData.forEach(item => { - if (item.time) { - let timeArray = item.time.split(' ') - item.time = timeArray[0] - } + item.natResultShow = item.natResult === '1' ? '阳性' : '阴性' }); } else { @@ -282,14 +346,14 @@ export default { this.tableLoading = false }, - handleScheduledTimeChange (time) { + handleTimeChange (time) { if (time) { - this.formData.scheduledStartTime = time[0] - this.formData.scheduledEndTime = time[1] + this.formData.startTime = time[0] + this.formData.endTime = time[1] } else { - this.formData.scheduledStartTime = '' - this.formData.scheduledEndTime = '' + this.formData.startTime = '' + this.formData.endTime = '' } @@ -298,13 +362,14 @@ export default { diaClose () { this.$refs.ref_form.resetData() this.formShow = false + }, handleDetail (row) { this.formTitle = '详情' this.formShow = true this.$nextTick(() => { - this.$refs.ref_form.initForm('detail', row.natId, this.agencyId) + this.$refs.ref_form.initForm('detail', row.icNatId) }) }, @@ -312,7 +377,7 @@ export default { this.formTitle = '新增' this.formShow = true this.$nextTick(() => { - this.$refs.ref_form.initForm('add', null, this.agencyId) + this.$refs.ref_form.initForm('add', null) }) }, @@ -320,22 +385,20 @@ export default { this.formTitle = '修改' this.formShow = true this.$nextTick(() => { - this.$refs.ref_form.initForm('edit', row.natId, this.agencyId) + this.$refs.ref_form.initForm('edit', row.icNatId) }) }, - addFormCancle () { - this.formShow = false - }, addFormOk () { this.formShow = false this.loadTable() }, - async handleDelete (row) { + async handleDelete (row, type) { + let message = type === 'delete' ? '确认删除?' : '确认取消关注?' - this.$confirm("确认删除?", "提示", { + this.$confirm(message, "提示", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning" @@ -343,6 +406,43 @@ export default { .then(() => { this.deleteNat(row) }) + .catch(err => { + + }); + }, + + async deleteNat (row) { + const url = "/epmetuser/icNat/del" + // const url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/del" + + let params = { + icNatId: row.icNatId + } + + const { data, code, msg } = await requestPost(url, params) + + if (code === 0) { + this.$message({ + type: "success", + message: "操作成功" + }); + + this.loadTable() + } else { + this.$message.error(msg) + } + }, + + async handleAttention (row) { + + this.$confirm("确认同步该条信息?", "提示", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning" + }) + .then(() => { + this.attentionNat(row) + }) .catch(err => { if (err == "cancel") { @@ -351,12 +451,12 @@ export default { }); }, - async deleteNat (row) { - const url = "/gov/org/placepatrolteam/del" - // const url = "http://yapi.elinkservice.cn/mock/245/gov/org/placepatrolteam/del" + async attentionNat (row) { + const url = "/epmetuser/icNat/synchro" + // const url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/synchro" let params = { - natId: row.natId + icNatId: row.icNatId } const { data, code, msg } = await requestPost(url, params) @@ -364,7 +464,7 @@ export default { if (code === 0) { this.$message({ type: "success", - message: "删除成功" + message: "操作成功" }); this.loadTable() @@ -373,18 +473,21 @@ export default { } }, + //重置搜索条件 resetSearch () { this.formData = { - personInCharge: '',//负责人 - mobile: '',//联系电话 - gridId: '',//负责区域【网格Id】 - ninePlaceVal: '',//场所类型【九小场所Value值】 - isPage: true,//是否分页(是:true 否:false) 有这个参数是给新增巡查记录时用的,默认是 + orgType: 'current',//当前组织:current 根组织:all + name: '',//姓名 + mobile: '',//手机号 + idCard: '',//身份证号码 + startTime: '',//检测开始时间yyyy-MM-dd HH:mm + endTime: '',//检测结束时间yyyy-MM-dd HH:mm } - this.pageSize = 10 + this.timeRange = [] + this.pageNo = 0 - this.loadTable() + // this.loadTable() }, @@ -400,22 +503,17 @@ export default { //导出表格 async handleExport () { - let title = this.agencyObj.label - title = title + '—房屋列表' + let title = '核酸检测信息' - const url = "/gov/org/house/exporthouseinfo" - let params = { - ownerName: this.ownerName, - ownerPhone: this.ownerPhone, - buildingId: this.agencyObj.id - } + const url = "/epmetuser/icNat/export" app.ajax.exportFilePost( url, - params, + this.formData, (data, rspMsg) => { - this.download(data, title + '.xls') + + this.download(data, title + '.xlsx') }, (rspMsg, data) => { this.$message.error(rspMsg); @@ -451,10 +549,9 @@ export default { }, handleExportModule () { - let title = '' - title = '房屋模板' + let title = '核酸检测信息导入模板' - const url = "/gov/org/house/exporttemplate" + const url = "/epmetuser/icNat/import-template-download" let params = {} app.ajax.exportFilePost( @@ -462,7 +559,7 @@ export default { params, (data, rspMsg) => { - this.download(data, title + '.xls') + this.download(data, title + '.xlsx') }, (rspMsg, data) => { this.$message.error(rspMsg); @@ -472,15 +569,15 @@ export default { // 上传文件之前的钩子 beforeUpload (file) { - this.files = file; - const isText = file.type === 'application/vnd.ms-excel' - const isTextComputer = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' - - if (!isText && !isTextComputer) { - this.$message.error('请选择正确格式的文件') + const array = file.name.split('.') + const extension = array[array.length - 1] + // const isLt1M = (file.size / 1024 / 1024) < 5 + if (extension !== 'xlsx') { + this.$message.error('只能上传xlsx文件!') return false } else { + this.files = file; this.fileName = file.name; return true } @@ -506,14 +603,11 @@ export default { //清空上传列表 this.$refs['upload'].clearFiles() - var url = '/gov/org/house/houseimport' + var url = '/epmetuser/icNat/import' let fileFormData = new FormData(); fileFormData.append('file', this.files);//filename是键,file是值,就是要传的文件,test.zip是要传的文件名 - fileFormData.append('orgId', this.agencyObj.id);//filename是键,file是值,就是要传的文件,test.zip是要传的文件名 - fileFormData.append('orgType', this.agencyObj.level);//filename是键,file是值,就是要传的文件,test.zip是要传的文件名 - this.importRoomLoading = true window.app.ajax.post2(url, fileFormData, (data, rspMsg) => { @@ -528,18 +622,17 @@ export default { // }) // this.$message.error(rspMsg) } - this.$emit('refreshTree') - this.loadTable() - this.importRoomLoading = false + + // this.loadTable() + }, (rspMsg, data) => { - this.importRoomLoading = false + }, { headers: { 'Content-Type': 'multipart/form-data' } }) }, - // 开启加载动画 startLoading () { loading = Loading.service({ @@ -559,13 +652,12 @@ export default { computed: { tableHeight () { - return (this.clientHeight - 360) + return this.$store.state.inIframe ? this.clientHeight - 420 + this.iframeHeight : this.clientHeight - 420 + }, - rowHeight () { - return (this.clientHeight - 200) + 'px' - }, - ...mapGetters(['clientHeight']) + + ...mapGetters(['clientHeight', 'iframeHeight']) }, watch: { diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue new file mode 100644 index 000000000..ba00652e4 --- /dev/null +++ b/src/views/modules/base/epidemic/veroFocus/veroFocusAdd.vue @@ -0,0 +1,699 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue new file mode 100644 index 000000000..19297662c --- /dev/null +++ b/src/views/modules/base/epidemic/veroFocus/veroFocusEdit.vue @@ -0,0 +1,287 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusForm.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusForm.vue deleted file mode 100644 index 846c26b4b..000000000 --- a/src/views/modules/base/epidemic/veroFocus/veroFocusForm.vue +++ /dev/null @@ -1,594 +0,0 @@ - - - - - - - - diff --git a/src/views/modules/base/epidemic/veroFocus/veroFocusList.vue b/src/views/modules/base/epidemic/veroFocus/veroFocusList.vue index abf5c1535..f1090c1e0 100644 --- a/src/views/modules/base/epidemic/veroFocus/veroFocusList.vue +++ b/src/views/modules/base/epidemic/veroFocus/veroFocusList.vue @@ -18,8 +18,8 @@ - + + prop="vaccinationCount"> 新增 + @click="addFormShow=true">新增 @@ -93,6 +93,15 @@ class="diy-button--reset" size="small" @click="handleExport">导出 + + 发送通知 + 取消关注 - - - + label="接种针次" + width="100"> - - + label="最后一次通知时间" + min-width="120"> 通知记录 + @click="handleNoticeList(scope.row)">通知记录
随访记录 -
-
- 取消关注 + @click="handleVisiteList(scope.row) ">随访记录
-
- 全选 - 发送通知 -
+ + + + - + + + + - + + + + + + + + + @@ -247,7 +287,11 @@ + + + diff --git a/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue b/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue new file mode 100644 index 000000000..e341a6d52 --- /dev/null +++ b/src/views/modules/base/epidemic/veroFocus/vfSendNotice.vue @@ -0,0 +1,220 @@ + + + + + + + + diff --git a/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue b/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue new file mode 100644 index 000000000..524cc20b4 --- /dev/null +++ b/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue @@ -0,0 +1,308 @@ + + + + + + \ No newline at end of file diff --git a/src/views/modules/communityService/ninePlaces/inspect/inspectReview.vue b/src/views/modules/communityService/ninePlaces/inspect/inspectReview.vue index a556aedc8..ec45e380c 100644 --- a/src/views/modules/communityService/ninePlaces/inspect/inspectReview.vue +++ b/src/views/modules/communityService/ninePlaces/inspect/inspectReview.vue @@ -1,8 +1,8 @@