s-auth-modal.vue 8.0 KB

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