s-auth-modal.vue 11 KB

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