s-auth-modal.vue 8.6 KB

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