s-auth-modal.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <template>
  2. <!-- 规格弹窗 -->
  3. <su-popup :show="authType !== ''" round="10" :showClose="true" @close="closeAuthModal">
  4. <view class="login-wrap">
  5. <!-- 1. 账号密码登录 accountLogin -->
  6. <account-login
  7. v-if="authType === 'accountLogin'"
  8. :agreeStatus="state.protocol"
  9. @onConfirm="onConfirm"
  10. />
  11. <!-- 2. 短信登录 smsLogin -->
  12. <sms-login v-if="authType === 'smsLogin'" :agreeStatus="state.protocol" @onConfirm="onConfirm" />
  13. <!-- 3. 忘记密码 resetPassword-->
  14. <reset-password v-if="authType === 'resetPassword'" />
  15. <!-- 4. 绑定手机号 changeMobile -->
  16. <change-mobile v-if="authType === 'changeMobile'" />
  17. <!-- 5. 修改密码 changePassword-->
  18. <changePassword v-if="authType === 'changePassword'" />
  19. <!-- 6. 微信小程序授权 -->
  20. <mp-authorization v-if="authType === 'mpAuthorization'" />
  21. <!-- 7. 第三方登录 -->
  22. <view
  23. v-if="['accountLogin', 'smsLogin'].includes(authType)"
  24. class="auto-login-box ss-flex ss-flex-col ss-row-center ss-col-center"
  25. >
  26. <!-- 7.1 微信小程序的快捷登录 -->
  27. <view v-if="sheep.$platform.name === 'WechatMiniProgram'" class="ss-flex register-box">
  28. <view class="register-title">还没有账号?</view>
  29. <button class="ss-reset-button login-btn" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">
  30. 快捷登录
  31. </button>
  32. <view class="circle" />
  33. </view>
  34. <!-- 7.2 微信的公众号、App、小程序的登录,基于 openid + code -->
  35. <button
  36. v-if="
  37. ['WechatOfficialAccount', 'WechatMiniProgram', 'App'].includes(sheep.$platform.name) &&
  38. sheep.$platform.isWechatInstalled
  39. "
  40. @tap="thirdLogin('wechat')"
  41. class="ss-reset-button auto-login-btn"
  42. >
  43. <image
  44. class="auto-login-img"
  45. :src="sheep.$url.static('/static/img/shop/platform/wechat.png')"
  46. />
  47. </button>
  48. <!-- 7.3 iOS 登录 TODO 芋艿:等后面搞 App 再弄 -->
  49. <button
  50. v-if="sheep.$platform.os === 'ios' && sheep.$platform.name === 'App'"
  51. @tap="thirdLogin('apple')"
  52. class="ss-reset-button auto-login-btn"
  53. >
  54. <image
  55. class="auto-login-img"
  56. :src="sheep.$url.static('/static/img/shop/platform/apple.png')"
  57. />
  58. </button>
  59. </view>
  60. <!-- 用户协议的勾选 -->
  61. <!--<view
  62. v-if="['accountLogin', 'smsLogin'].includes(authType)"
  63. class="agreement-box ss-flex ss-row-center"
  64. :class="{ shake: currentProtocol }"
  65. >
  66. <label class="radio ss-flex ss-col-center" @tap="onChange">
  67. <radio
  68. :checked="state.protocol"
  69. color="var(--ui-BG-Main)"
  70. style="transform: scale(0.8)"
  71. @tap.stop="onChange"
  72. />
  73. <view class="agreement-text ss-flex ss-col-center ss-m-l-8">
  74. 我已阅读并遵守
  75. <view class="tcp-text" @tap.stop="onProtocol('用户协议')">
  76. 《用户协议》
  77. </view>
  78. <view class="agreement-text">与</view>
  79. <view class="tcp-text" @tap.stop="onProtocol('隐私协议')">
  80. 《隐私协议》
  81. </view>
  82. </view>
  83. </label>
  84. </view> -->
  85. <view class="safe-box"/>
  86. </view>
  87. </su-popup>
  88. </template>
  89. <script setup>
  90. import { computed, reactive, ref } from 'vue';
  91. import sheep from '@/sheep';
  92. import accountLogin from './components/account-login.vue';
  93. import smsLogin from './components/sms-login.vue';
  94. import resetPassword from './components/reset-password.vue';
  95. import changeMobile from './components/change-mobile.vue';
  96. import changePassword from './components/change-password.vue';
  97. import mpAuthorization from './components/mp-authorization.vue';
  98. import { closeAuthModal, showAuthModal } from '@/sheep/hooks/useModal';
  99. const appInfo = computed(() => sheep.$store('app').info);
  100. const modalStore = sheep.$store('modal');
  101. // 授权弹窗类型
  102. const authType = computed(() => modalStore.auth);
  103. const state = reactive({
  104. protocol: false,
  105. });
  106. const currentProtocol = ref(false);
  107. // 勾选协议
  108. function onChange() {
  109. state.protocol = !state.protocol;
  110. }
  111. // 查看协议
  112. function onProtocol(title) {
  113. closeAuthModal();
  114. sheep.$router.go('/pages/public/richtext', {
  115. title,
  116. });
  117. }
  118. // 点击登录 / 注册事件
  119. function onConfirm(e) {
  120. currentProtocol.value = e;
  121. setTimeout(() => {
  122. currentProtocol.value = false;
  123. }, 1000);
  124. }
  125. // 第三方授权登陆(微信小程序、Apple)
  126. const thirdLogin = async (provider) => {
  127. if (!state.protocol) {
  128. currentProtocol.value = true;
  129. setTimeout(() => {
  130. currentProtocol.value = false;
  131. }, 1000);
  132. sheep.$helper.toast('请勾选同意');
  133. return;
  134. }
  135. const loginRes = await sheep.$platform.useProvider(provider).login();
  136. if (loginRes) {
  137. closeAuthModal();
  138. // 触发小程序授权信息弹框
  139. // #ifdef MP-WEIXIN
  140. showAuthModal('mpAuthorization');
  141. // #endif
  142. }
  143. };
  144. // 微信小程序的“手机号快速验证”:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html
  145. const getPhoneNumber = async (e) => {
  146. if (e.detail.errMsg !== 'getPhoneNumber:ok') {
  147. sheep.$helper.toast('快捷登录失败');
  148. return;
  149. }
  150. let result = await sheep.$platform.useProvider().mobileLogin(e.detail);
  151. if (result) {
  152. closeAuthModal();
  153. }
  154. };
  155. </script>
  156. <style lang="scss" scoped>
  157. @import './index.scss';
  158. .shake {
  159. animation: shake 0.05s linear 4 alternate;
  160. }
  161. @keyframes shake {
  162. from {
  163. transform: translateX(-10rpx);
  164. }
  165. to {
  166. transform: translateX(10rpx);
  167. }
  168. }
  169. .register-box {
  170. position: relative;
  171. justify-content: center;
  172. .register-btn {
  173. color: #999999;
  174. font-size: 30rpx;
  175. font-weight: 500;
  176. }
  177. .register-title {
  178. color: #999999;
  179. font-size: 30rpx;
  180. font-weight: 400;
  181. margin-right: 24rpx;
  182. }
  183. .or-title {
  184. margin: 0 16rpx;
  185. color: #999999;
  186. font-size: 30rpx;
  187. font-weight: 400;
  188. }
  189. .login-btn {
  190. color: var(--ui-BG-Main);
  191. font-size: 30rpx;
  192. font-weight: 500;
  193. }
  194. .circle {
  195. position: absolute;
  196. right: 0rpx;
  197. top: 18rpx;
  198. width: 8rpx;
  199. height: 8rpx;
  200. border-radius: 8rpx;
  201. background: var(--ui-BG-Main);
  202. }
  203. }
  204. .safe-box {
  205. height: calc(constant(safe-area-inset-bottom) / 5 * 3);
  206. height: calc(env(safe-area-inset-bottom) / 5 * 3);
  207. }
  208. .tcp-text {
  209. color: var(--ui-BG-Main);
  210. }
  211. .agreement-text {
  212. color: $dark-9;
  213. }
  214. </style>