diff --git a/acupuncture-后台/src/views/followFile/work.vue b/acupuncture-后台/src/views/followFile/work.vue index 490c4dd4..d3d66dcd 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 c420ef2b..04438cd4 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 ad613c96..5b9752fe 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 c4418d12..5876fd64 100644 --- a/acupuncture-后台/src/views/report/manage.vue +++ b/acupuncture-后台/src/views/report/manage.vue @@ -43,6 +43,18 @@ + + + + + + +