s-auth-modal.vue 9.3 KB

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