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() { created() {
let { name, phone } = this.$route.query; let { name, phone } = this.$route.query;
this.queryParams.param.keywords = name; this.queryParams.param.keywords = name || "";
this.queryParams.param.phone = phone; this.queryParams.param.phone = phone || "";
this.getList(); this.getList();
this.getFollowupQuery(); this.getFollowupQuery();
}, },

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

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

Loading…
Cancel
Save