s-auth-modal.vue 8.0 KB

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