|
@@ -49,11 +49,7 @@
|
|
|
:show-confirm-button="false"
|
|
|
show-cancel-button
|
|
|
>
|
|
|
- <div style="padding: 20px">
|
|
|
- <van-button type="primary" block to="/bindPatientCard">绑定已有的诊疗卡</van-button>
|
|
|
- <div style="height: 10px"></div>
|
|
|
- <van-button type="primary" plain block to="/createPatientCard">我没有诊疗卡</van-button>
|
|
|
- </div>
|
|
|
+ <bind-card-method></bind-card-method>
|
|
|
</van-dialog>
|
|
|
</window-size>
|
|
|
</template>
|
|
@@ -64,8 +60,12 @@ import { computed, onMounted, ref, watchEffect } from 'vue'
|
|
|
import {checkAppointmentRequirements, getGhFee} from '../../../api/appointment'
|
|
|
import router from '../../../router'
|
|
|
import { Toast } from 'vant'
|
|
|
+import BindCardMethod from "../../../components/bind-card-method/index.vue";
|
|
|
export default {
|
|
|
name: 'AppointConfirm',
|
|
|
+ components: {
|
|
|
+ BindCardMethod,
|
|
|
+ },
|
|
|
setup() {
|
|
|
const showCreatedCardMethod = ref(false)
|
|
|
const appointment = store.state.appointmentInfo
|