|
@@ -13,13 +13,13 @@
|
|
|
<sms-login v-if="authType === 'smsLogin'" :agreeStatus="state.protocol" @onConfirm="onConfirm" />
|
|
|
|
|
|
<!-- 3. 忘记密码 resetPassword-->
|
|
|
- <reset-password v-if="authType === 'resetPassword'" />
|
|
|
+ <!-- <reset-password v-if="authType === 'resetPassword'" /> -->
|
|
|
|
|
|
<!-- 4. 绑定手机号 changeMobile -->
|
|
|
<change-mobile v-if="authType === 'changeMobile'" />
|
|
|
|
|
|
<!-- 5. 修改密码 changePassword-->
|
|
|
- <changePassword v-if="authType === 'changePassword'" />
|
|
|
+ <!-- <changePassword v-if="authType === 'changePassword'" /> -->
|
|
|
|
|
|
<!-- 6. 微信小程序授权 -->
|
|
|
<mp-authorization v-if="authType === 'mpAuthorization'" />
|
|
@@ -101,9 +101,9 @@
|
|
|
import sheep from '@/sheep';
|
|
|
import accountLogin from './components/account-login.vue';
|
|
|
import smsLogin from './components/sms-login.vue';
|
|
|
- import resetPassword from './components/reset-password.vue';
|
|
|
+ // import resetPassword from './components/reset-password.vue';
|
|
|
import changeMobile from './components/change-mobile.vue';
|
|
|
- import changePassword from './components/change-password.vue';
|
|
|
+ // import changePassword from './components/change-password.vue';
|
|
|
import mpAuthorization from './components/mp-authorization.vue';
|
|
|
import { closeAuthModal, showAuthModal } from '@/sheep/hooks/useModal';
|
|
|
|