|
|
@ -530,7 +530,7 @@ export default { |
|
|
|
created() { |
|
|
|
let { name, phone } = this.$route.query; |
|
|
|
this.queryParams.param.keywords = name || ""; |
|
|
|
this.queryParams.param.phone = phone !== 'null' ? phone : ""; |
|
|
|
this.queryParams.param.phone = phone !== "null" ? phone : ""; |
|
|
|
this.getList(); |
|
|
|
this.getTenantsList(); // 组织列表 |
|
|
|
}, |
|
|
@ -698,7 +698,7 @@ export default { |
|
|
|
this.download( |
|
|
|
"system/user/export", |
|
|
|
{ |
|
|
|
...this.queryParams.params, |
|
|
|
...this.queryParams.param, |
|
|
|
}, |
|
|
|
`患者档案.xlsx` |
|
|
|
); |
|
|
|