s-auth-modal.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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')" v-if="linkId">
  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 linkId = uni.getStorageSync("linkId");
  134. const modalStore = sheep.$store('modal');
  135. // 授权弹窗类型
  136. const authType = computed(() => modalStore.auth);
  137. const isActive = computed(() => modalStore.isActive)
  138. const state = reactive({
  139. protocol: false,
  140. });
  141. const currentProtocol = ref(false);
  142. // 勾选协议
  143. function onChange() {
  144. state.protocol = !state.protocol;
  145. }
  146. // 查看协议
  147. function onProtocol(title) {
  148. closeAuthModal();
  149. sheep.$router.go('/pages/public/richtext', {
  150. title,
  151. });
  152. }
  153. // 点击登录 / 注册事件
  154. function onConfirm(e) {
  155. currentProtocol.value = e;
  156. setTimeout(() => {
  157. currentProtocol.value = false;
  158. }, 1000);
  159. }
  160. // 第三方授权登陆(微信小程序、Apple)
  161. const thirdLogin = async (provider) => {
  162. if (!state.protocol) {
  163. currentProtocol.value = true;
  164. setTimeout(() => {
  165. currentProtocol.value = false;
  166. }, 1000);
  167. sheep.$helper.toast('请勾选同意');
  168. return;
  169. }
  170. const loginRes = await sheep.$platform.useProvider(provider).login();
  171. if (loginRes) {
  172. closeAuthModal();
  173. // 触发小程序授权信息弹框
  174. // #ifdef MP-WEIXIN
  175. showAuthModal('mpAuthorization');
  176. // #endif
  177. }
  178. };
  179. // 第三方授权注册
  180. const thirdRegister = async (provider) => {
  181. if (!state.protocol) {
  182. currentProtocol.value = true;
  183. setTimeout(() => {
  184. currentProtocol.value = false;
  185. }, 1000);
  186. sheep.$helper.toast('请勾选同意');
  187. return;
  188. }
  189. const linkId = uni.getStorageSync("linkId");
  190. if (!linkId) {
  191. sheep.$helper.toast('您只能通过分享注册');
  192. return false;
  193. }
  194. const loginRes = await sheep.$platform.useProvider(provider).register();
  195. if (loginRes) {
  196. closeAuthModal();
  197. // 触发小程序授权信息弹框
  198. // #ifdef MP-WEIXIN
  199. showAuthModal('mpAuthorization');
  200. // #endif
  201. }
  202. };
  203. // 微信小程序的“手机号快速验证”:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html
  204. const getPhoneNumber = async (e) => {
  205. if (e.detail.errMsg !== 'getPhoneNumber:ok') {
  206. sheep.$helper.toast('快捷登录失败');
  207. return;
  208. }
  209. let result = await sheep.$platform.useProvider().mobileLogin(e.detail);
  210. if (result) {
  211. closeAuthModal();
  212. }
  213. };
  214. </script>
  215. <style lang="scss" scoped>
  216. @import './index.scss';
  217. .shake {
  218. animation: shake 0.05s linear 4 alternate;
  219. }
  220. @keyframes shake {
  221. from {
  222. transform: translateX(-10rpx);
  223. }
  224. to {
  225. transform: translateX(10rpx);
  226. }
  227. }
  228. .register-box {
  229. position: relative;
  230. justify-content: center;
  231. .register-btn {
  232. color: #999999;
  233. font-size: 30rpx;
  234. font-weight: 500;
  235. }
  236. .register-title {
  237. color: #999999;
  238. font-size: 30rpx;
  239. font-weight: 400;
  240. margin-right: 24rpx;
  241. }
  242. .or-title {
  243. margin: 0 16rpx;
  244. color: #999999;
  245. font-size: 30rpx;
  246. font-weight: 400;
  247. }
  248. .login-btn {
  249. color: var(--ui-BG-Main);
  250. font-size: 30rpx;
  251. font-weight: 500;
  252. }
  253. .circle {
  254. position: absolute;
  255. right: 0rpx;
  256. top: 18rpx;
  257. width: 8rpx;
  258. height: 8rpx;
  259. border-radius: 8rpx;
  260. background: var(--ui-BG-Main);
  261. }
  262. }
  263. .safe-box {
  264. height: calc(constant(safe-area-inset-bottom) / 5 * 3);
  265. height: calc(env(safe-area-inset-bottom) / 5 * 3);
  266. }
  267. .tcp-text {
  268. color: var(--ui-BG-Main);
  269. }
  270. .agreement-text {
  271. color: $dark-9;
  272. }
  273. .wx-login-btn {
  274. width: 100%;
  275. border: 1rpx solid #55b774;
  276. border-radius: 10rpx;
  277. padding: 10rpx 0;
  278. color: #333333;
  279. display: flex;
  280. align-items: center;
  281. justify-content: center;
  282. font-size: 32rpx;
  283. margin: 0 0 0.625rem 0;
  284. box-sizing: border-box;
  285. text {
  286. margin-left: 20rpx
  287. }
  288. }
  289. .agreement-box {
  290. margin: 40rpx;
  291. }
  292. </style>