diff --git a/acupuncture-后台/src/views/followFile/work.vue b/acupuncture-后台/src/views/followFile/work.vue index 490c4dd4c..d3d66dcde 100644 --- a/acupuncture-后台/src/views/followFile/work.vue +++ b/acupuncture-后台/src/views/followFile/work.vue @@ -530,7 +530,7 @@ export default { created() { let { name, phone } = this.$route.query; this.queryParams.param.keywords = name || ""; - this.queryParams.param.phone = phone || ""; + this.queryParams.param.phone = phone !== 'null' ? phone : ""; this.getList(); this.getTenantsList(); // 组织列表 }, diff --git a/acupuncture-后台/src/views/medicalFile/index.vue b/acupuncture-后台/src/views/medicalFile/index.vue index c420ef2b0..04438cd49 100644 --- a/acupuncture-后台/src/views/medicalFile/index.vue +++ b/acupuncture-后台/src/views/medicalFile/index.vue @@ -1369,7 +1369,7 @@ export default { created() { let { name, phone } = this.$route.query; this.queryParams.param.keywords = name || ""; - this.queryParams.param.phone = phone || ""; + this.queryParams.param.phone = phone !== 'null' ? phone : ""; this.getList(); this.getTenantsList(); // 组织列表 }, diff --git a/acupuncture-后台/src/views/monitor/online/index.vue b/acupuncture-后台/src/views/monitor/online/index.vue index ad613c969..5b9752feb 100644 --- a/acupuncture-后台/src/views/monitor/online/index.vue +++ b/acupuncture-后台/src/views/monitor/online/index.vue @@ -45,6 +45,11 @@ {{ parseTime(scope.row.loginTime) }} + + + diff --git a/acupuncture-后台/src/views/report/manage.vue b/acupuncture-后台/src/views/report/manage.vue index c4418d129..5876fd648 100644 --- a/acupuncture-后台/src/views/report/manage.vue +++ b/acupuncture-后台/src/views/report/manage.vue @@ -43,6 +43,18 @@ + + + + + + +