login.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <view class="containers" style="min-height: 100vh;">
  3. <view class="header" style="width: 100vw;height: 122rpx">
  4. <image class="backFn" src="../../static/images/common/back.png" @click="$switchTab('/pages/index/index')"></image>
  5. </view>
  6. <view class="logoText">
  7. <view class="texts" style="font-weight: bold;">
  8. <view class="txt">欢迎来到</view>
  9. <view class="txt">团蜂社区</view>
  10. </view>
  11. <view class="" style="margin-top: 48rpx;margin-left: -6rpx;">
  12. <text class="appTitle">年轻的社区生活元宇宙</text>
  13. </view>
  14. </view>
  15. <view class="login-form">
  16. <tui-form ref="refLoginForm" :show-message="false">
  17. <view>
  18. <tui-input
  19. v-model="loginQuery.phone" label="+ 86" type="number" padding="26rpx 20rpx 26rpx 0"
  20. placeholder-style="color: #f3c1c4;font-size: 32rpx;" label-color="#ffffff" border-color="#EA5B1D"
  21. placeholder="请输入手机号码" background-color="transparent" :border-top="false" color="#ffffff"
  22. ></tui-input>
  23. </view>
  24. <view v-if="loginType === 'password'">
  25. <tui-input
  26. v-model="loginQuery.password" type="password" padding="26rpx 20rpx 26rpx 0"
  27. placeholder-style="color: #f3c1c4;font-size: 32rpx;" background-color="transparent" :border-top="false"
  28. border-color="#EA5B1D" label-color="#ffffff" placeholder="请输入密码" color="#ffffff"
  29. >
  30. <template #right>
  31. <text style="font-size: 30rpx;color: #dddddd;" @click="isShowResettingPasswordDialog = true">忘记密码</text>
  32. </template>
  33. </tui-input>
  34. </view>
  35. <view v-if="loginType === 'verificationCode'">
  36. <tui-input
  37. v-model="loginQuery.verificationCode" padding="26rpx 20rpx 26rpx 0"
  38. placeholder-style="color: #f3c1c4;font-size: 32rpx;" background-color="transparent" :border-top="false"
  39. border-color="#EA5B1D" label-color="#ffffff" placeholder="请输入验证码" color="#ffffff"
  40. >
  41. <template #right>
  42. <tui-countdown-verify
  43. v-if="loginType === 'verificationCode'" ref="refLoginVerify" width="188rpx"
  44. height="48rpx" border-width="0" text="获取验证码" :size="30"
  45. color="#dddddd"
  46. @send="handleSendVerify"
  47. ></tui-countdown-verify>
  48. </template>
  49. </tui-input>
  50. </view>
  51. </tui-form>
  52. </view>
  53. <view style="display: flex;flex-direction: column;justify-content: center;align-items: center;margin-top: 80rpx;">
  54. <view style="text-align: center;" class="login-btn">
  55. <tui-button
  56. type="white" width="640rpx" height="82rpx" :size="38"
  57. margin="40rpx 0 0" shape="circle"
  58. @click="handleLogin"
  59. >
  60. 登录
  61. </tui-button>
  62. </view>
  63. </view>
  64. <view style="margin-top: 120rpx;display: flex;flex-direction: column;align-items: center;">
  65. <view style="display: flex;justify-content: space-around;white-space: nowrap;">
  66. <view style="display: flex;flex-direction: column;align-items: center;">
  67. <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
  68. <tui-icon name="friendadd-fill" color="#ffffff" :size="22" @click="go('/pages/login/register')"></tui-icon>
  69. </view>
  70. <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">密码注册</view>
  71. </view>
  72. <view
  73. v-if="!(loginType === 'password')"
  74. style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
  75. >
  76. <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
  77. <tui-icon name="pwd" color="#ffffff" :size="22" @click="loginType = 'password'"></tui-icon>
  78. </view>
  79. <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">密码登录</view>
  80. </view>
  81. <view
  82. v-if="!(loginType === 'verificationCode')"
  83. style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
  84. >
  85. <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
  86. <tui-icon name="mobile" color="#ffffff" :size="22" @click="loginType = 'verificationCode'"></tui-icon>
  87. </view>
  88. <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">短信登录</view>
  89. </view>
  90. <!-- #ifdef MP-ALIPAY -->
  91. <view
  92. v-if="!(loginType === 'verificationCode')"
  93. style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
  94. >
  95. <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
  96. <tui-icon name="mobile" color="#ffffff" :size="22" @click="handleAliPayLogin"></tui-icon>
  97. </view>
  98. <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">支付宝登录</view>
  99. </view>
  100. <!-- #endif -->
  101. <view
  102. v-if="(terminal === 6) || (terminal === 3) || (terminal === 2)"
  103. style="display: flex;flex-direction: column;align-items: center;padding-left: 48rpx;"
  104. >
  105. <view style="width: fit-content;padding: 14rpx;border: 1rpx solid #ffffff;border-radius: 48rpx;">
  106. <tui-icon name="wechat" color="#ffffff" :size="22" @click="handleWXLogin"></tui-icon>
  107. </view>
  108. <view style="margin-top: 12rpx;font-size: 26rpx;color: #ffffff;">微信登录</view>
  109. </view>
  110. </view>
  111. </view>
  112. <tui-dialog
  113. style="position: relative;z-index: 888;" :buttons="[{ text: '取消' }, { text: '确定', color: '#586c94' }]"
  114. :show="isShowResettingPasswordDialog" title="重置密码" @click="handleResettingPassword"
  115. >
  116. <template #content>
  117. <tui-input v-model="resettingFormData.phone" label="手机号" type="number" placeholder="请输入手机号"></tui-input>
  118. <tui-input v-model="resettingFormData.password" label="密码" type="password" placeholder="请输入密码"></tui-input>
  119. <tui-input
  120. v-model="resettingFormData.newPassword" label="确认密码" type="password"
  121. placeholder="请再次输入密码"
  122. ></tui-input>
  123. <tui-input v-model="resettingFormData.verificationCode" label="验证码" type="number" placeholder="请输入验证码">
  124. <template #right>
  125. <tui-countdown-verify
  126. ref="refResettingPasswordVerify" width="144rpx"
  127. @send="handleSendVerifyResettingPassword"
  128. ></tui-countdown-verify>
  129. </template>
  130. </tui-input>
  131. </template>
  132. </tui-dialog>
  133. </view>
  134. </template>
  135. <script>
  136. import { mapGetters } from 'vuex'
  137. import { T_REDIRECT_TYPE, USER_ID, T_STORAGE_KEY } from '../../constant'
  138. import { getVerifyCodeApi, updateForgetPasswordUserApi } from '../../api/anotherTFInterface'
  139. import { CHANGE_IS_IN_MINIPROGRAM } from '../../store/modules/type'
  140. import { getUrlCode } from '../../utils'
  141. export default {
  142. name: 'Login',
  143. data() {
  144. return {
  145. loginType: 'verificationCode', // password,verificationCode
  146. loginQuery: {
  147. phone: '',
  148. verificationCode: '',
  149. password: ''
  150. },
  151. resettingFormData: {
  152. phone: '',
  153. password: '',
  154. newPassword: '',
  155. verificationCode: ''
  156. },
  157. isShowResettingPasswordDialog: false
  158. }
  159. },
  160. onLoad(options) {
  161. if (options.to) uni.setStorageSync(T_REDIRECT_TYPE, options.to)
  162. if (options.miniProgram) {
  163. this.$store.commit(`app/${CHANGE_IS_IN_MINIPROGRAM}`, !!options.miniProgram)
  164. }
  165. },
  166. onShow() {
  167. const userId = uni.getStorageSync(USER_ID)
  168. const userInfo = uni.getStorageSync(T_STORAGE_KEY)
  169. if (userId && userInfo && userInfo.token) {
  170. uni.switchTab({
  171. url: '/pages/index/index'
  172. })
  173. } else if ((this.$store.state.app.terminal === 6) || (this.$store.state.app.terminal === 3)) {
  174. const code = getUrlCode().code
  175. if (code) this.handleWXLogin()
  176. }
  177. },
  178. computed: {
  179. ...mapGetters([ 'terminal' ])
  180. },
  181. methods: {
  182. // 获取验证码
  183. handleSendVerify() {
  184. if (!this.loginQuery.phone) {
  185. this.$refs.refLoginVerify.reset()
  186. return this.$showToast('请填写手机号')
  187. }
  188. if (!/^1[3-9]\d{9}$/.test(this.loginQuery.phone)) {
  189. this.$refs.refLoginVerify.reset()
  190. return this.$showToast('请输入正确的手机号')
  191. }
  192. getVerifyCodeApi({ phone: this.loginQuery.phone })
  193. .then((res) => {
  194. this.$refs.refLoginVerify.success()
  195. this.$showToast('发送成功,请注意查看手机短信')
  196. })
  197. .catch(() => {
  198. this.$refs.refLoginVerify.reset()
  199. })
  200. },
  201. // 点击登录
  202. handleLogin() {
  203. const validateRules = [ {
  204. name: 'phone',
  205. rule: ['required', 'isMobile'],
  206. msg: ['请输入手机号', '请输入正确的手机号']
  207. } ]
  208. let loginFilterQuery
  209. if (this.loginType === 'verificationCode') {
  210. validateRules.push({
  211. name: 'verificationCode',
  212. rule: ['required', 'isNum'],
  213. msg: [ '请输入验证码' ]
  214. })
  215. loginFilterQuery = {
  216. phone: this.loginQuery.phone,
  217. verificationCode: this.loginQuery.verificationCode
  218. }
  219. } else if (this.loginType === 'password') {
  220. validateRules.push({
  221. name: 'password',
  222. rule: ['required', 'isEnAndNo'],
  223. msg: ['请输入密码', '密码为8~20位英文和数字组合']
  224. })
  225. loginFilterQuery = {
  226. phone: this.loginQuery.phone,
  227. password: this.loginQuery.password
  228. }
  229. }
  230. this.$refs.refLoginForm
  231. .validate(this.loginQuery, validateRules)
  232. .then(() => {
  233. this.$store.dispatch('auth/phoneLoginRegisterAction', {
  234. isAfter: true,
  235. loginData: {
  236. type: 2, // 1注册,2登录
  237. ...loginFilterQuery
  238. }
  239. })
  240. })
  241. .catch((e) => {
  242. this.$showToast(JSON.stringify(e.errorMsg))
  243. })
  244. },
  245. async handleAliPayLogin() {
  246. await this.$store.dispatch('auth/aliPayLoginAction', { isAfter: true })
  247. },
  248. async handleWXLogin() {
  249. await this.$store.dispatch('auth/wxLoginAction', { isAfter: true })
  250. },
  251. handleSendVerifyResettingPassword() {
  252. if (!this.resettingFormData.phone) {
  253. this.$refs.refResettingPasswordVerify.reset()
  254. return this.$showToast('请填写手机号')
  255. }
  256. if (!/^1[3-9]\d{9}$/.test(this.resettingFormData.phone)) {
  257. this.$refs.refResettingPasswordVerify.reset()
  258. return this.$showToast('请输入正确的手机号')
  259. }
  260. getVerifyCodeApi({ phone: this.resettingFormData.phone })
  261. .then((res) => {
  262. this.$refs.refResettingPasswordVerify.success()
  263. this.$showToast('发送成功,请注意查看手机短信')
  264. })
  265. .catch(() => {
  266. this.$refs.refResettingPasswordVerify.reset()
  267. })
  268. },
  269. handleResettingPassword(e) {
  270. if (e.index === 0) { } else if (e.index === 1) {
  271. if (!this.resettingFormData.phone) return this.$showToast('请填写手机号')
  272. if (!this.resettingFormData.verificationCode) return this.$showToast('请填写验证码')
  273. if (!this.resettingFormData.password) return this.$showToast('请设置密码!')
  274. if (this.resettingFormData.password !== this.resettingFormData.newPassword) return this.$showToast('密码不一致')
  275. uni.showLoading({
  276. title: '操作中'
  277. })
  278. updateForgetPasswordUserApi({ ...this.resettingFormData })
  279. .then(({ data }) => {
  280. uni.hideLoading()
  281. this.$showToast('重置成功')
  282. })
  283. .catch(() => {
  284. uni.hideLoading()
  285. })
  286. }
  287. this.resettingFormData.phone = ''
  288. this.resettingFormData.verificationCode = ''
  289. this.resettingFormData.password = ''
  290. this.resettingFormData.newPassword = ''
  291. this.isShowResettingPasswordDialog = false
  292. }
  293. }
  294. }
  295. </script>
  296. <style lang="less" scoped>
  297. .containers {
  298. display: flex;
  299. flex-direction: column;
  300. position: relative;
  301. box-sizing: border-box;
  302. padding-bottom: 66rpx;
  303. background-color: #EA5B1D;
  304. .backFn {
  305. padding: 30rpx 30rpx;
  306. width: 62rpx;
  307. height: 62rpx;
  308. }
  309. .logoText {
  310. width: 100vw;
  311. height: 280rpx;
  312. box-sizing: border-box;
  313. padding: 30rpx 0 0 56rpx;
  314. color: #ffffff;
  315. clear: both;
  316. .texts {
  317. /* font-style: oblique; */
  318. .txt {
  319. transform: skewX(-6deg);
  320. }
  321. line-height: 80rpx;
  322. font-size: 74rpx;
  323. letter-spacing: 6rpx;
  324. -webkit-box-reflect: below 2px -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 70%, rgba(255, 255, 255, 0.644));
  325. box-reflect: below 0px linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, .05) 70%, rgba(250, 250, 250, 0.3));
  326. }
  327. }
  328. .appTitle {
  329. font-family: 思源黑体;
  330. font-size: 34rpx;
  331. font-weight: normal;
  332. line-height: 42rpx;
  333. color: rgba(255, 255, 255, 0.914);
  334. }
  335. .login-form {
  336. margin-top: 20rpx;
  337. padding: 146rpx 48rpx 10rpx 48rpx;
  338. /deep/ .tui-input__wrap {
  339. border-bottom: 2rpx solid #ffffff;
  340. }
  341. }
  342. .login-btn {
  343. /deep/ .tui-btn {
  344. font-weight: bold;
  345. color: #ea5b1d !important;
  346. }
  347. }
  348. }
  349. </style>