From 74b6ea0bb0b6f6aa7a1271c2d756c9f61a97a5fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 15:09:00 +0800 Subject: [PATCH 01/13] xg --- src/views/system/specialDiseaseNode/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index 1fc18bf..93946f2 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -620,23 +620,23 @@ export default { spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)' }); - if (!this.routeform.routeNodeDay) { + if (!this.form.routeNodeDay) { this.$message.error('请输入节点时间段天数'); return } - if (!this.routeform.routeNodeName) { + if (!this.form.routeNodeName) { this.$message.error('请选择节点时间段'); return } - if (!this.routeform.taskType) { + if (!this.form.taskType) { this.$message.error('请选择任务类型'); return } - if (!this.routeform.taskSubdivision) { + if (!this.form.taskSubdivision) { this.$message.error('请选择任务细分'); return } - if (!this.routeform.taskStatus) { + if (!this.form.taskStatus) { this.$message.error('请选择任务状态'); return } From deab2ebb0bc236d8aa75c064e1c6aad26a2080af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 15:09:54 +0800 Subject: [PATCH 02/13] xg --- src/views/system/specialDiseaseNode/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index 93946f2..ccc8e6a 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -622,23 +622,23 @@ export default { }); if (!this.form.routeNodeDay) { this.$message.error('请输入节点时间段天数'); - return + return loading.close(); } if (!this.form.routeNodeName) { this.$message.error('请选择节点时间段'); - return + return loading.close(); } if (!this.form.taskType) { this.$message.error('请选择任务类型'); - return + return loading.close(); } if (!this.form.taskSubdivision) { this.$message.error('请选择任务细分'); - return + return loading.close(); } if (!this.form.taskStatus) { this.$message.error('请选择任务状态'); - return + return loading.close(); } updateRouteCheckStatus({ routeCheckStatus: this.routeform.routeCheckStatus, From 15527d2288c50a710772466109762fa9f16bcd16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 15:17:31 +0800 Subject: [PATCH 03/13] xg --- src/views/system/specialDiseaseNode/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index ccc8e6a..e936be4 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -50,6 +50,8 @@ :class="listindex == index && itemindex == uindex ? 'cards' : ''">

{{ uitem.taskTypeName }}

已审核 + 不同意 未审核

{{ uitem.taskSubdivisionName }}

From 6249f1f0d9b13ec6c8e95992cf8a93b844170caf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 17:05:23 +0800 Subject: [PATCH 04/13] xg --- src/views/system/specialDiseaseNode/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index e936be4..0f393e9 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -501,6 +501,7 @@ export default { bottomclickevent(uitem, index, uindex) { this.$refs.wangeditor.emit() this.form = uitem + this.taskPartitionList = [] if (this.form.taskType) { this.changeTaskType(this.form.taskType, this.form.taskSubdivision) } From 90e3c947fd7f0a9b6bd55671c726d604e350183a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 17:13:44 +0800 Subject: [PATCH 05/13] xg --- src/api/system/specialDiseaseNode.js | 4 ++-- src/views/system/specialDiseaseNode/index.vue | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/api/system/specialDiseaseNode.js b/src/api/system/specialDiseaseNode.js index 2185f04..c12fb81 100644 --- a/src/api/system/specialDiseaseNode.js +++ b/src/api/system/specialDiseaseNode.js @@ -15,9 +15,9 @@ export function selectTaskTypeList() { }) } // 任务状态 -export function taskStatusDictList() { +export function taskStatusDictList(id) { return request({ - url: '/system/taskStatus/taskStatusDictList', + url: `/system/taskStatus/taskStatusDictList?taskPartitionId=${id}`, method: 'get', }) } diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index 0f393e9..a618359 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -517,9 +517,6 @@ export default { this.selectTaskTypeList = res.data this.info(); }) - taskStatusDictList().then(res => { - this.taskStatusDictList = res.data - }) }, //任务类型 changeTaskType(code, taskSubdivision) { @@ -539,6 +536,10 @@ export default { //点击任务细分 changetaskSubdivision(code, type) { this.form.taskSubdivisionName = this.taskPartitionList?.find(e => e.taskPartitionCode == code)?.taskPartitionName + let id = this.taskPartitionList?.find(e => e.taskPartitionCode == code)?.id + taskStatusDictList(id).then(res => { + this.taskStatusDictList = res.data + }) this.taskPartitionList.forEach(el => { if (code == el.taskPartitionCode) { this.form.executionTime = el.executionTime From 798e30e60de4040333ccf7d621ced44765f17224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 17:18:45 +0800 Subject: [PATCH 06/13] xg --- src/views/system/specialDiseaseNode/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/system/specialDiseaseNode/index.vue b/src/views/system/specialDiseaseNode/index.vue index a618359..3ffe327 100644 --- a/src/views/system/specialDiseaseNode/index.vue +++ b/src/views/system/specialDiseaseNode/index.vue @@ -527,6 +527,7 @@ export default { this.form.taskSubdivision = '' this.form.taskSubdivisionName = '' this.form.taskSubdivisiontemplateType = '' + this.taskStatusDictList = [] if (taskSubdivision) { this.form.taskSubdivision = taskSubdivision this.changetaskSubdivision(taskSubdivision, 1) From bf09228aa53764db47b17b69ffa2b3571fab99ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Mon, 22 Apr 2024 17:33:14 +0800 Subject: [PATCH 07/13] xg --- src/views/system/components/wangEditor.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/system/components/wangEditor.vue b/src/views/system/components/wangEditor.vue index 995ddf9..550b49c 100644 --- a/src/views/system/components/wangEditor.vue +++ b/src/views/system/components/wangEditor.vue @@ -182,6 +182,7 @@ export default ({ res.data.data.forEach(e => { e.labelFieldContentList.forEach(el => { el.labelFieldId = el.labelFieldContentId + el.fieldName = el.contentName }) }) this.labeloptions = res.data.data @@ -190,6 +191,7 @@ export default ({ res.data.data.forEach(e => { e.labelFieldContentList.forEach(el => { el.labelFieldId = el.labelFieldContentId + el.fieldName = el.contentName }) }) this.fieldoptions = res.data.data From 1b0fc0516d3f7554ce8a07d333bc790a3932a42a Mon Sep 17 00:00:00 2001 From: shidongli Date: Tue, 23 Apr 2024 09:04:53 +0800 Subject: [PATCH 08/13] =?UTF-8?q?=E5=AE=A3=E6=95=99=E5=BA=93=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/propaganda/index.vue | 13 +- src/views/system/Editorxj/index.vue | 281 ++++++++++++++++++++++++++ 2 files changed, 291 insertions(+), 3 deletions(-) create mode 100644 src/views/system/Editorxj/index.vue diff --git a/src/views/manage/propaganda/index.vue b/src/views/manage/propaganda/index.vue index c26705d..8c4d92f 100644 --- a/src/views/manage/propaganda/index.vue +++ b/src/views/manage/propaganda/index.vue @@ -372,7 +372,7 @@ v-for="item in Departmentdata" :key="item.id" :label="item.departmentName" - :value="item.departmentCode" + :value="item.id" > @@ -678,7 +678,13 @@
知识卡片
- {{ formview.propagandaContent }} + + +
@@ -839,10 +845,11 @@ import { listMaterials } from "@/api/manage/materials"; import { selectAgencyList, getDepartmentList } from "@/api/manage/selectAgencyList"; import stationAcatar from "../../system/stationAvatar/index.vue"; +import Editorxj from "../../system/Editorxj/index.vue"; import { department, listDisease } from "@/api/manage/script"; export default { name: "Propaganda", - components: { stationAcatar }, + components: { stationAcatar ,Editorxj}, data() { //验证身份证 var isimgPath = (rule, value, callback) => { diff --git a/src/views/system/Editorxj/index.vue b/src/views/system/Editorxj/index.vue new file mode 100644 index 0000000..d1a9cd0 --- /dev/null +++ b/src/views/system/Editorxj/index.vue @@ -0,0 +1,281 @@ + + + + + From 26f3ee61d77375951245b96defa4c5a5dbc50b55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Tue, 23 Apr 2024 09:43:35 +0800 Subject: [PATCH 09/13] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/blacklist/index.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/manage/blacklist/index.vue b/src/views/manage/blacklist/index.vue index 43a1fd3..a873df4 100644 --- a/src/views/manage/blacklist/index.vue +++ b/src/views/manage/blacklist/index.vue @@ -344,8 +344,8 @@ export default { if (this.form.campusAgencyId) { this.changecampusAgency(this.form.campusAgencyId, 1, 2) } - if (this.form.abnormalCauseValue) { - this.changeabnormalCauseValue(this.form.abnormalCauseValue, 1) + if (this.form.abnormalCauseId) { + this.changeabnormalCauseValue(this.form.abnormalCauseId, 1) } this.open = true; this.title = "修改黑名单"; @@ -450,7 +450,6 @@ export default { this.queryParams.certificateIssuingDoctorId = null } // }) - this.usergetListinfo(id, type) }, //选中院区获取科室 changecampusAgency(id, type, typetwo) { From bafbcd541bea8218e2265e84188610775b055b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Tue, 23 Apr 2024 09:59:19 +0800 Subject: [PATCH 10/13] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/blacklist/index.vue | 21 +- src/views/manage/preHospitalized/index.vue | 8 +- src/views/manage/signRecord/index.vue | 109 ++----- src/views/manage/visitin/index.vue | 8 +- src/views/manage/visitout/index.vue | 8 +- src/views/system/followup/index.vue | 352 +++++---------------- 6 files changed, 135 insertions(+), 371 deletions(-) diff --git a/src/views/manage/blacklist/index.vue b/src/views/manage/blacklist/index.vue index a873df4..dc152c5 100644 --- a/src/views/manage/blacklist/index.vue +++ b/src/views/manage/blacklist/index.vue @@ -353,6 +353,15 @@ export default { }, /** 提交按钮 */ submitForm() { + if (this.form.hospitalAgencyId && this.hospitalAgencylist?.length > 0) { + this.form.hospitalAgencyName = this.hospitalAgencylist.find(e => e.id == this.form.hospitalAgencyId)?.agencyName + } + if (this.form.campusAgencyId && this.form_campusAgencylist?.length > 0) { + this.form.campusAgencyName = this.form_campusAgencylist.find(e => e.id == this.form.campusAgencyId)?.agencyName + } + if (this.form.departmentId && this.form_departmentlist?.length > 0) { + this.form.departmentName = this.form_departmentlist.find(e => e.id == this.form.departmentId)?.departmentName + } this.$refs["form"].validate(valid => { if (valid) { if (this.form.id != null) { @@ -487,20 +496,12 @@ export default { if (type) { this.form.departmentId = null this.form.wardId = null + this.getAgencyListinfo('HOSPITAL', this.form.hospitalAgencyId, type) } else { this.queryParams.departmentId = null this.queryParams.wardId = null + this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId) } - this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId, type) - }, - //清空科室 - cleardepartment(type) { - if (type) { - this.form.wardId = null - } else { - this.queryParams.wardId = null - } - this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId, type) }, //获取异常原因 causegetinfo() { diff --git a/src/views/manage/preHospitalized/index.vue b/src/views/manage/preHospitalized/index.vue index 03db30d..ee6e890 100644 --- a/src/views/manage/preHospitalized/index.vue +++ b/src/views/manage/preHospitalized/index.vue @@ -637,7 +637,7 @@ export default { if (this.form.departmentId && this.form_departmentlist?.length > 0) { this.form.departmentName = this.form_departmentlist.find(e => e.id == this.form.departmentId)?.departmentName } - if (this.form.hospitalAgencyId && this.form_wardlist?.length > 0) { + if (this.form.wardId && this.form_wardlist?.length > 0) { this.form.wardName = this.form_wardlist.find(e => e.id == this.form.wardId)?.departmentName } if (this.form.certificateIssuingDoctorId && this.form_attendingPhysicianlist?.length > 0) { @@ -833,20 +833,22 @@ export default { if (type) { this.form.departmentId = null this.form.wardId = null + this.getAgencyListinfo('HOSPITAL', this.form.hospitalAgencyId, type) } else { this.queryParams.departmentId = null this.queryParams.wardId = null + this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId) } - this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId, type) }, //清空科室 cleardepartment(type) { if (type) { this.form.wardId = null + this.getAgencyListinfo('CAMPUS', this.form.campusAgencyId, type) } else { this.queryParams.wardId = null + this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId) } - this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId, type) }, /** 下载模板操作 */ importTemplate() { diff --git a/src/views/manage/signRecord/index.vue b/src/views/manage/signRecord/index.vue index 6dc1f9f..301c38e 100644 --- a/src/views/manage/signRecord/index.vue +++ b/src/views/manage/signRecord/index.vue @@ -559,7 +559,7 @@ export default { }) }, //获取下级单位 - getAgencyListinfo(nodeType, id, type) { + getAgencyListinfo(nodeType, id) { let query = { nodeType: nodeType, } @@ -571,116 +571,69 @@ export default { query.departmentId = id } getAgencyList(query).then(res => { - if (type) { - if (nodeType == 'HOSPITAL') { - this.form_campusAgencylist = res.data.campusList - this.form_departmentlist = res.data.departmentList - } else if (nodeType == 'CAMPUS') { - this.form_departmentlist = res.data.departmentList - } - this.form_wardlist = res.data.wardList - } else { - if (nodeType == 'HOSPITAL') { - this.campusAgencylist = res.data.campusList - } - if (nodeType == 'CAMPUS' || nodeType == 'HOSPITAL') { - this.departmentlist = res.data.departmentList - } - this.wardlist = res.data.wardList + if (nodeType == 'HOSPITAL') { + this.campusAgencylist = res.data.campusList } + if (nodeType == 'CAMPUS' || nodeType == 'HOSPITAL') { + this.departmentlist = res.data.departmentList + } + this.wardlist = res.data.wardList }) }, //选中医院获取院区 - changehospitalAgency(id, type, typetwo) { - this.getAgencyListinfo('HOSPITAL', id, type) + changehospitalAgency(id) { + this.getAgencyListinfo('HOSPITAL', id) // let query = { // agencyStatus: 'ON', // nodeType: 'CAMPUS', // parentId: id, // } // selectAgencyList(query).then(res => { - if (type) { - if (!typetwo) { - this.form.campusAgencyId = null - this.form.departmentId = null - this.form.wardId = null - this.form.certificateIssuingDoctorId = null - } - } else { - this.queryParams.campusAgencyId = null - this.queryParams.departmentId = null - this.queryParams.wardId = null - this.queryParams.certificateIssuingDoctorId = null - } + this.queryParams.campusAgencyId = null + this.queryParams.departmentId = null + this.queryParams.wardId = null + this.queryParams.certificateIssuingDoctorId = null // }) }, //选中院区获取科室 - changecampusAgency(id, type, typetwo) { - this.getAgencyListinfo('CAMPUS', id, type) + changecampusAgency(id) { + this.getAgencyListinfo('CAMPUS', id) // let query = { // nodeType: 'DEPARTMENT', // agencyId: id, // } // getDepartmentList(query).then(res => { - if (type) { - if (!typetwo) { - this.form.departmentId = null - this.form.wardId = null - } - } else { - this.queryParams.departmentId = null - this.queryParams.wardId = null - } + this.queryParams.departmentId = null + this.queryParams.wardId = null // }) }, //选中科室获取病区 - changedepartment(id, type, typetwo) { - this.getAgencyListinfo('DEPARTMENT', id, type) + changedepartment(id) { + this.getAgencyListinfo('DEPARTMENT', id) // let query = { // nodeType: 'WARD', // parentDepartmentId: id, // } // getDepartmentList(query).then(res => { - if (type) { - if (!typetwo) { - this.form.wardId = null - } else { - this.queryParams.wardId = null - } - } + this.queryParams.wardId = null // }) }, //清空医院 - clearhospitalAgency(type) { - if (type) { - this.form.campusAgencyId = null - this.form.departmentId = null - this.form.wardId = null - } else { - this.queryParams.campusAgencyId = null - this.queryParams.departmentId = null - this.queryParams.wardId = null - } + clearhospitalAgency() { + this.queryParams.campusAgencyId = null + this.queryParams.departmentId = null + this.queryParams.wardId = null }, //清空院区 - clearcampusAgency(type) { - if (type) { - this.form.departmentId = null - this.form.wardId = null - } else { - this.queryParams.departmentId = null - this.queryParams.wardId = null - } - this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId, type) + clearcampusAgency() { + this.queryParams.departmentId = null + this.queryParams.wardId = null + this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId) }, //清空科室 - cleardepartment(type) { - if (type) { - this.form.wardId = null - } else { - this.queryParams.wardId = null - } - this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId, type) + cleardepartment() { + this.queryParams.wardId = null + this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId) }, //续约 handleContinue(row) { diff --git a/src/views/manage/visitin/index.vue b/src/views/manage/visitin/index.vue index 961ca4c..ed9c929 100644 --- a/src/views/manage/visitin/index.vue +++ b/src/views/manage/visitin/index.vue @@ -670,7 +670,7 @@ export default { if (this.form.departmentId && this.form_departmentlist?.length > 0) { this.form.departmentName = this.form_departmentlist.find(e => e.id == this.form.departmentId)?.departmentName } - if (this.form.hospitalAgencyId && this.form_wardlist?.length > 0) { + if (this.form.wardId && this.form_wardlist?.length > 0) { this.form.wardName = this.form_wardlist.find(e => e.id == this.form.wardId)?.departmentName } if (this.form.attendingPhysicianId && this.form_attendingPhysicianlist?.length > 0) { @@ -853,20 +853,22 @@ export default { if (type) { this.form.departmentId = null this.form.wardId = null + this.getAgencyListinfo('HOSPITAL', this.form.hospitalAgencyId, type) } else { this.queryParams.departmentId = null this.queryParams.wardId = null + this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId) } - this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId, type) }, //清空科室 cleardepartment(type) { if (type) { this.form.wardId = null + this.getAgencyListinfo('CAMPUS', this.form.campusAgencyId, type) } else { this.queryParams.wardId = null + this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId) } - this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId, type) }, /** 下载模板操作 */ importTemplate() { diff --git a/src/views/manage/visitout/index.vue b/src/views/manage/visitout/index.vue index 8bb58a0..d1cd728 100644 --- a/src/views/manage/visitout/index.vue +++ b/src/views/manage/visitout/index.vue @@ -790,7 +790,7 @@ export default { if (this.form.departmentId && this.form_departmentlist?.length > 0) { this.form.departmentName = this.form_departmentlist.find(e => e.id == this.form.departmentId)?.departmentName } - if (this.form.hospitalAgencyId && this.form_wardlist?.length > 0) { + if (this.form.wardId && this.form_wardlist?.length > 0) { this.form.wardName = this.form_wardlist.find(e => e.id == this.form.wardId)?.departmentName } if (this.form.attendingPhysicianId && this.form_attendingPhysicianlist?.length > 0) { @@ -990,20 +990,22 @@ export default { if (type) { this.form.departmentId = null this.form.wardId = null + this.getAgencyListinfo('HOSPITAL', this.form.hospitalAgencyId, type) } else { this.queryParams.departmentId = null this.queryParams.wardId = null + this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId) } - this.getAgencyListinfo('HOSPITAL', this.queryParams.hospitalAgencyId, type) }, //清空科室 cleardepartment(type) { if (type) { this.form.wardId = null + this.getAgencyListinfo('CAMPUS', this.form.campusAgencyId, type) } else { this.queryParams.wardId = null + this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId) } - this.getAgencyListinfo('CAMPUS', this.queryParams.campusAgencyId, type) }, /** 下载模板操作 */ importTemplate() { diff --git a/src/views/system/followup/index.vue b/src/views/system/followup/index.vue index 09c853e..ecc40c8 100644 --- a/src/views/system/followup/index.vue +++ b/src/views/system/followup/index.vue @@ -4,142 +4,49 @@ - + - + - + - + - - + + - - - + + + - - - + + + - - - + + + - - + +