Browse Source

诊疗档案添加手机号查询

new-ays
1747191978@qq.com 2 months ago
parent
commit
e5cd10982b
  1. 16
      acupuncture-前台/src/views/medicalFile/index.vue
  2. 5
      acupuncture-前台/src/views/patientFile/index.vue
  3. BIN
      acupuncture-前台/针灸前台client.zip
  4. BIN
      acupuncture-前台/针灸前台clientssl-1.zip

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

@ -11,12 +11,20 @@
<el-form-item label="" prop="noticeTitle">
<el-input
style="width: 300px"
placeholder="姓名、全拼、简拼、手机号码、证件号码"
placeholder="姓名、全拼、简拼、证件号码"
v-model="queryParams.param.keywords"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="手机号码" prop="phone">
<el-input
v-model="queryParams.param.phone"
placeholder="请输入"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="门诊/住院" prop="visitType">
<el-select
v-model="queryParams.param.visitType"
@ -967,9 +975,9 @@ export default {
},
created() {
// urlidCard
let idCard = this.$route.query.idCard;
this.queryParams.param.keywords = idCard;
let { name, phone } = this.$route.query;
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);

5
acupuncture-前台/src/views/patientFile/index.vue

@ -137,7 +137,8 @@
label="姓名"
align="center"
prop="name"
min-width="100"
min-width="130"
show-overflow-tooltip
fixed
/>
<el-table-column
@ -824,7 +825,7 @@ export default {
/** 诊疗档案 */
handleArchives(row) {
this.$router.push({
path: `/medicalIndex?idCard=${row.idCard || ""}`,
path: `/medicalIndex?name=${row.name}&phone=${row.phone}`,
});
},
/** 新增诊疗档案 */

BIN
acupuncture-前台/针灸前台client.zip

Binary file not shown.

BIN
acupuncture-前台/针灸前台clientssl.zip → acupuncture-前台/针灸前台clientssl-1.zip

Binary file not shown.
Loading…
Cancel
Save