Browse Source

fix: 挂号确认添加诊疗卡刷新列表

liweimin 2 years ago
parent
commit
d8de000950

+ 8 - 2
antbuilder/industry/hospitalV2/components/components/patient-selector/index.js

@@ -1,6 +1,12 @@
+import { createSubscribe } from 'applet-page-component';
 import { queryList } from '../../order-pay/service';
 import history from '../../../utils/history';
-Component({
+Component(createSubscribe({
+  async onShow() {
+    await this.queryList();
+  }
+
+})({
   props: {
     show: false,
     onClose: () => null,
@@ -103,4 +109,4 @@ Component({
     }
 
   }
-});
+}));