bind-phone.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <view class="login-container">
  3. <image class="back-icon" src="../../static/back.png" mode="" @click="handleBack" />
  4. <view class="login-main-area">
  5. <h1>绑定手机号</h1>
  6. <tui-form ref="form">
  7. <tui-input
  8. v-model="bindForm.phone" label="手机号码" padidng="0 0 28rpx 0" border-top
  9. placeholder="请输入手机号码"
  10. color="#141000"
  11. ></tui-input>
  12. <tui-input
  13. v-model="bindForm.code" class="reset-wrapper" label="验证码" padidng="0 0 28rpx 0"
  14. border-top
  15. placeholder="请输入验证码" color="#141000"
  16. >
  17. <block slot="right">
  18. <button v-show="!timer" class="uni-btn get-code" @click="onGetCode">
  19. 获取验证码
  20. </button>
  21. <view v-show="timer" class="awaiting">
  22. <text class="second-text">{{ awaitSecond }}s</text>
  23. <text>后重新获取</text>
  24. </view>
  25. </block>
  26. </tui-input>
  27. </tui-form>
  28. <button class="bind-btn uni-btn" :style="{ background: btnStatus ? '#FFC117' : '' }" @click="onBind">
  29. 确定
  30. </button>
  31. </view>
  32. <tui-toast ref="toast"></tui-toast>
  33. </view>
  34. </template>
  35. <script>
  36. import {
  37. getCodeApi,
  38. bindMobileForWXApi
  39. } from '../../api/auth'
  40. import {
  41. throttle
  42. } from '../../utils'
  43. import { J_USER_ID, J_USER_INFO, J_USER_TOKEN, J_NEW_BIND_TYPE } from '../../constant'
  44. export default {
  45. name: 'BindPhone',
  46. data() {
  47. return {
  48. bindForm: {
  49. 'openId': '',
  50. 'phone': '',
  51. 'code': ''
  52. },
  53. onGetCode: '',
  54. onBind: '',
  55. timer: null,
  56. awaitSecond: 60,
  57. userId: null
  58. }
  59. },
  60. onLoad(options) {
  61. this.onGetCode = throttle(this.handleGetCode, 1000)
  62. this.onBind = throttle(this.handleBindMobile, 1000)
  63. this.bindForm.openId = options.openId
  64. this.userId = options.userId
  65. },
  66. onUnload() {
  67. this.timer && clearInterval(this.timer)
  68. },
  69. computed: {
  70. btnStatus() {
  71. return this.bindForm.code && this.bindForm.phone
  72. }
  73. },
  74. methods: {
  75. // 获取验证码
  76. async handleGetCode() {
  77. if (this.bindForm.phone.length !== 11) {
  78. this.ttoast({
  79. type: 'fail',
  80. title: '请输入合法的手机号码'
  81. })
  82. return
  83. }
  84. uni.showLoading({
  85. title: '加载中...'
  86. })
  87. try {
  88. await getCodeApi({
  89. phone: this.bindForm.phone,
  90. flag: 2
  91. })
  92. this.timer = setInterval(() => {
  93. this.awaitSecond--
  94. if (this.awaitSecond === 0) {
  95. this.awaitSecond = 60
  96. clearInterval(this.timer)
  97. this.timer = null
  98. }
  99. }, 1000)
  100. } catch (error) {
  101. this.ttoast({
  102. type: 'fail',
  103. title: '验证码发送失败',
  104. content: '请稍后重试'
  105. })
  106. } finally {
  107. uni.hideLoading()
  108. }
  109. },
  110. handleBack() {
  111. uni.navigateBack()
  112. },
  113. async handleBindMobile() {
  114. if (!this.bindForm.code) {
  115. this.ttoast({
  116. type: 'fail',
  117. title: '请输入验证码'
  118. })
  119. return
  120. }
  121. if (!this.bindForm.phone) {
  122. this.ttoast({
  123. type: 'fail',
  124. title: '请输入绑定的手机号'
  125. })
  126. return
  127. }
  128. if (this.bindForm.phone.length !== 11) {
  129. this.ttoast({
  130. type: 'fail',
  131. title: '请输入合法的手机号码'
  132. })
  133. return
  134. }
  135. const { data } = await bindMobileForWXApi(this.bindForm)
  136. this.ttoast('绑定成功')
  137. uni.setStorageSync(J_USER_ID, data.userInfo.userId)
  138. uni.setStorageSync(J_USER_INFO, data.userInfo)
  139. uni.setStorageSync(J_USER_TOKEN, data.token)
  140. if (uni.getStorageSync(J_NEW_BIND_TYPE)) {
  141. setTimeout(() => {
  142. uni.redirectTo({
  143. url: '/pages/jump/jump'
  144. })
  145. }, 1000)
  146. } else {
  147. setTimeout(() => {
  148. this.$switchTab('/')
  149. }, 1000)
  150. }
  151. }
  152. }
  153. }
  154. </script>
  155. <style lang="less" scoped>
  156. view,
  157. text {
  158. line-height: 1.5;
  159. }
  160. .login-container {
  161. width: 100vw;
  162. min-height: 100vh;
  163. background: url('../../static/bg.png') no-repeat;
  164. background-size: cover;
  165. .back-icon {
  166. position: relative;
  167. top: 30upx;
  168. left: 20upx;
  169. width: 80upx;
  170. height: 80upx;
  171. z-index: 1000;
  172. }
  173. .login-main-area {
  174. padding: 90upx 80upx 0;
  175. h1 {
  176. color: #141000;
  177. font-size: 64upx;
  178. font-weight: 400;
  179. margin-bottom: 120upx;
  180. }
  181. /deep/ .tui-input__wrap {
  182. padding: 0 0 28upx 0 !important;
  183. flex-direction: column;
  184. align-items: flex-start;
  185. background: transparent !important;
  186. margin-bottom: 72upx !important;
  187. &::before {
  188. display: none;
  189. }
  190. }
  191. /deep/ .tui-input__label {
  192. text {
  193. margin-bottom: 12upx;
  194. font-size: 24upx !important;
  195. color: #b3b2ad !important;
  196. }
  197. }
  198. /deep/ .uni-input-wrapper {
  199. margin-top: 12upx;
  200. input {
  201. padding-bottom: 28upx !important;
  202. }
  203. }
  204. /deep/ .tui-line__left::after {
  205. left: 0 !important;
  206. }
  207. .reset-wrapper {
  208. /deep/ .tui-input__wrap {
  209. flex-wrap: wrap !important;
  210. flex-direction: row !important;
  211. margin-bottom: 10upx !important;
  212. .tui-input__label {
  213. flex: 0 0 100%;
  214. }
  215. }
  216. }
  217. .password-status {
  218. width: 48upx;
  219. height: 48upx;
  220. flex-shrink: 0;
  221. margin-top: 12upx;
  222. }
  223. }
  224. .bind-btn {
  225. width: 606upx;
  226. height: 96upx;
  227. border-radius: 100px;
  228. margin: 80upx 0 40upx 0;
  229. background-color: #ffe6a2;
  230. color: #fff;
  231. line-height: 96upx;
  232. font-size: 32upx;
  233. font-weight: 500;
  234. transition: all 100ms;
  235. opacity: 1;
  236. &:active {
  237. opacity: 0.3;
  238. }
  239. }
  240. .get-code {
  241. color: #ffc117;
  242. font-size: 28upx;
  243. margin-top: 24upx;
  244. }
  245. .awaiting {
  246. font-size: 28upx;
  247. color: #b3b2ad;
  248. margin-top: 12upx;
  249. .second-text {
  250. color: #605d52;
  251. }
  252. }
  253. }
  254. .skip {
  255. display: flex;
  256. justify-content: flex-end;
  257. align-items: center;
  258. font-size: 24upx;
  259. color: rgb(153, 153, 153);
  260. }
  261. </style>