Commit 4aaae86c authored by Xuguangxing's avatar Xuguangxing

fix

parent aa37e415
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
</p> </p>
<p class="placeholder" /> <p class="placeholder" />
<!-- 支付密码弹窗 --> <!-- 支付密码弹窗 -->
<template v-if="pwdModal">
<cr-pwd-field <cr-pwd-field
ref="pwd" ref="pwd"
v-model="pwdModal" v-model="pwdModal"
...@@ -68,8 +69,10 @@ ...@@ -68,8 +69,10 @@
@getData="getPwd" @getData="getPwd"
@retrieveLink="retrieveLink" @retrieveLink="retrieveLink"
/> />
</template>
<!-- 短信验证弹窗 --> <!-- 短信验证弹窗 -->
<template v-if="smsModal">
<cr-sms-code-modal <cr-sms-code-modal
v-model="smsModal" v-model="smsModal"
:error-info="error" :error-info="error"
...@@ -78,6 +81,7 @@ ...@@ -78,6 +81,7 @@
@close="smsModal = false" @close="smsModal = false"
@submit="getSms" @submit="getSms"
/> />
</template>
<!-- 享花券弹窗 --> <!-- 享花券弹窗 -->
<cr-popup v-model="couponPopup" closeable round position="bottom"> <cr-popup v-model="couponPopup" closeable round position="bottom">
...@@ -503,7 +507,9 @@ export default { ...@@ -503,7 +507,9 @@ export default {
) { ) {
/* 密码或者短信鉴权 */ /* 密码或者短信鉴权 */
this.close(); this.close();
this.$nextTick(() => {
this[`${creditPayStatusType[creditPayStatus]}Modal`] = true; this[`${creditPayStatusType[creditPayStatus]}Modal`] = true;
});
return; return;
} else if (creditPayStatus === FACE_VERIFICATION_CODE_PAY) { } else if (creditPayStatus === FACE_VERIFICATION_CODE_PAY) {
/* 人脸鉴权 */ /* 人脸鉴权 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment