Browse Source

随访工单添加手机号查询条件

new-ays
1747191978@qq.com 2 months ago
parent
commit
eacaa84bf5
  1. 4
      acupuncture-前台/src/views/followFile/work.vue
  2. 4
      acupuncture-前台/src/views/medicalFile/index.vue

4
acupuncture-前台/src/views/followFile/work.vue

@ -539,8 +539,8 @@ export default {
},
created() {
let { name, phone } = this.$route.query;
this.queryParams.param.keywords = name;
this.queryParams.param.phone = phone;
this.queryParams.param.keywords = name || "";
this.queryParams.param.phone = phone || "";
this.getList();
this.getFollowupQuery();
},

4
acupuncture-前台/src/views/medicalFile/index.vue

@ -975,8 +975,8 @@ export default {
created() {
// urlidCard
let { name, phone } = this.$route.query;
this.queryParams.param.keywords = name;
this.queryParams.param.phone = phone;
this.queryParams.param.keywords = name || "";
this.queryParams.param.phone = phone || "";
let patientInfo;
if (this.$route.query.patientInfo) {
this.form = JSON.parse(this.$route.query.patientInfo);

Loading…
Cancel
Save