s-auth-modal.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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="thirdRegister('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. // 第三方授权注册
  179. const thirdRegister = async (provider) => {
  180. if (!state.protocol) {
  181. currentProtocol.value = true;
  182. setTimeout(() => {
  183. currentProtocol.value = false;
  184. }, 1000);
  185. sheep.$helper.toast('请勾选同意');
  186. return;
  187. }
  188. const linkId = uni.getStorageSync("linkId");
  189. if (!linkId) {
  190. sheep.$helper.toast('您只能通过分享注册');
  191. return false;
  192. }
  193. const loginRes = await sheep.$platform.useProvider(provider).register();
  194. if (loginRes) {
  195. closeAuthModal();
  196. // 触发小程序授权信息弹框
  197. // #ifdef MP-WEIXIN
  198. showAuthModal('mpAuthorization');
  199. // #endif
  200. }
  201. };
  202. // 微信小程序的“手机号快速验证”:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html
  203. const getPhoneNumber = async (e) => {
  204. if (e.detail.errMsg !== 'getPhoneNumber:ok') {
  205. sheep.$helper.toast('快捷登录失败');
  206. return;
  207. }
  208. let result = await sheep.$platform.useProvider().mobileLogin(e.detail);
  209. if (result) {
  210. closeAuthModal();
  211. }
  212. };
  213. </script>
  214. <style lang="scss" scoped>
  215. @import './index.scss';
  216. .shake {
  217. animation: shake 0.05s linear 4 alternate;
  218. }
  219. @keyframes shake {
  220. from {
  221. transform: translateX(-10rpx);
  222. }
  223. to {
  224. transform: translateX(10rpx);
  225. }
  226. }
  227. .register-box {
  228. position: relative;
  229. justify-content: center;
  230. .register-btn {
  231. color: #999999;
  232. font-size: 30rpx;
  233. font-weight: 500;
  234. }
  235. .register-title {
  236. color: #999999;
  237. font-size: 30rpx;
  238. font-weight: 400;
  239. margin-right: 24rpx;
  240. }
  241. .or-title {
  242. margin: 0 16rpx;
  243. color: #999999;
  244. font-size: 30rpx;
  245. font-weight: 400;
  246. }
  247. .login-btn {
  248. color: var(--ui-BG-Main);
  249. font-size: 30rpx;
  250. font-weight: 500;
  251. }
  252. .circle {
  253. position: absolute;
  254. right: 0rpx;
  255. top: 18rpx;
  256. width: 8rpx;
  257. height: 8rpx;
  258. border-radius: 8rpx;
  259. background: var(--ui-BG-Main);
  260. }
  261. }
  262. .safe-box {
  263. height: calc(constant(safe-area-inset-bottom) / 5 * 3);
  264. height: calc(env(safe-area-inset-bottom) / 5 * 3);
  265. }
  266. .tcp-text {
  267. color: var(--ui-BG-Main);
  268. }
  269. .agreement-text {
  270. color: $dark-9;
  271. }
  272. .wx-login-btn {
  273. width: 100%;
  274. border: 1rpx solid #55b774;
  275. border-radius: 10rpx;
  276. padding: 10rpx 0;
  277. color: #333333;
  278. display: flex;
  279. align-items: center;
  280. justify-content: center;
  281. font-size: 32rpx;
  282. margin: 0 0 0.625rem 0;
  283. box-sizing: border-box;
  284. text {
  285. margin-left: 20rpx
  286. }
  287. }
  288. .agreement-box {
  289. margin: 40rpx;
  290. }
  291. </style>