s-auth-modal.vue 8.3 KB

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