index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. <template>
  2. <view class="bind-phone-container">
  3. <BeeBack>
  4. <view style="display: flex;align-items: center;justify-content: space-between;">
  5. <BeeIcon name="arrowleft" :size="34" color="#222229" style="width: fit-content;">
  6. </BeeIcon>
  7. <text style="flex: 1;margin-left: -40rpx;text-align: center;line-height: 2.5;">绑定手机号</text>
  8. </view>
  9. </BeeBack>
  10. <view class="loginInfo fs26 font-color-999">
  11. <p>共建真实、安全的交易环境</p>
  12. <p>本平台承诺不会滥用您授权的信息</p>
  13. </view>
  14. <view v-if="verifyType === 0" class="verifyTypeBox">
  15. <view class="verifyItem" @click="verifyType = 1">
  16. 短信验证码
  17. </view>
  18. <view class="verifyItem verify-checked" @click="verifyType = 2">
  19. 小程序授权
  20. </view>
  21. </view>
  22. <view v-else-if="verifyType === 1" class="phoneVerify">
  23. <view class="iphoneNum-box flex-row-plus flex-items">
  24. <tui-icon :size="50" color="#cccccc" name="mobile" unit="rpx" margin="0 30rpx 0 0"></tui-icon>
  25. <view>
  26. <input v-model="phone" maxlength="11" type="number" placeholder="请输入您的手机号" />
  27. </view>
  28. </view>
  29. <view class="mar-top-20">
  30. <view class="code-box">
  31. <tui-icon :size="50" color="#cccccc" name="shield" unit="rpx" margin="0 30rpx 0 0"></tui-icon>
  32. <tui-input
  33. v-model="code" padding="26rpx 20rpx 26rpx 0" background-color="transparent" label-color="#ffffff"
  34. placeholder="请输入验证码" style="flex: 1;border-bottom: 2rpx solid #ffffff;"
  35. >
  36. <template #right>
  37. <tui-countdown-verify
  38. ref="refBindPhoneVerify" width="188rpx" height="48rpx" border-width="0"
  39. text="获取验证码"
  40. :size="30" color="#dddddd" @send="handleSendVerify"
  41. ></tui-countdown-verify>
  42. </template>
  43. </tui-input>
  44. </view>
  45. </view>
  46. <view class="mar-top-60">
  47. <view
  48. class="registerBut mar-top-100" :class="{ bindCls: (phone !== '') && (code !== '') }"
  49. @click="handleBindPhone"
  50. >
  51. 确认
  52. </view>
  53. </view>
  54. </view>
  55. <view v-else-if="verifyType === 2" class="mpVerify">
  56. <button
  57. v-if="[ 4 ].includes($store.state.app.terminal)" class="verifyPhone" open-type="getAuthorize"
  58. scope="phoneNumber" @getAuthorize="onGetAuthorize" @error="() => { }"
  59. >
  60. 授权手机号验证
  61. </button>
  62. <button
  63. v-if="[ 2 ].includes($store.state.app.terminal)" class="verifyPhone fs28 mar-top-100"
  64. open-type="getPhoneNumber" @getphonenumber="getWxPhoneNumber"
  65. >
  66. 微信手机号授权
  67. </button>
  68. </view>
  69. <view v-if="(verifyType !== 0) && [2, 4].includes($store.state.app.terminal)" class="backBtn" @click="verifyType = 0">
  70. 返回
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. import { getVerifyCodeApi, updateAliPhoneAppApi, getSessionKeyAppApi, updateSetWxPhoneAppApi, updateWxPhoneAppApi } from '../../../api/anotherTFInterface'
  76. export default {
  77. name: 'BindPhone',
  78. data() {
  79. return {
  80. phone: '',
  81. code: '',
  82. wechatOpenId: '',
  83. headImage: '',
  84. wechatName: '',
  85. verifyType: 0,
  86. buyerUserId: 0
  87. }
  88. },
  89. onLoad(options) {
  90. this.wechatOpenId = options.wechatOpenId
  91. this.headImage = options.headImage
  92. this.wechatName = options.wechatName
  93. this.buyerUserId = options.buyerUserId
  94. if (![2, 4].includes(this.$store.state.app.terminal)) this.verifyType = 1
  95. },
  96. methods: {
  97. // 获取验证码
  98. handleSendVerify() {
  99. if (!this.phone) {
  100. this.$refs.refBindPhoneVerify.reset()
  101. return this.$showToast('请填写手机号')
  102. }
  103. if (!/^1[3-9]\d{9}$/.test(this.phone)) {
  104. this.$refs.refBindPhoneVerify.reset()
  105. return this.$showToast('请输入正确的手机号')
  106. }
  107. getVerifyCodeApi({ phone: this.phone })
  108. .then((res) => {
  109. this.$refs.refBindPhoneVerify.success()
  110. this.$showToast('发送成功,请注意查看手机短信')
  111. })
  112. .catch(() => {
  113. this.$refs.refBindPhoneVerify.reset()
  114. })
  115. },
  116. handleBindPhone() {
  117. if ([ 4 ].includes(this.$store.state.app.terminal)) {
  118. this.updateAliPhone(this.phone, false)
  119. } else if ([2, 3].includes(this.$store.state.app.terminal)) {
  120. this.updateWxPhone()
  121. }
  122. },
  123. updateWxPhone() {
  124. updateWxPhoneAppApi({
  125. phone: this.phone,
  126. wechatOpenId: this.wechatOpenId,
  127. headImage: this.headImage,
  128. wechatName: this.wechatName,
  129. verificationCode: this.code,
  130. channelCode: '',
  131. terminal: 3
  132. }).then((res) => {
  133. this.$showToast('绑定成功')
  134. this.$store.dispatch('auth/LoginAfterAction', { type: 'wx', data: res.data })
  135. })
  136. },
  137. getWxPhoneNumber(e) {
  138. if (e.detail.errMsg === 'getPhoneNumber:ok') {
  139. uni.login({
  140. provider: 'weixin',
  141. success: (res) => {
  142. getSessionKeyAppApi({
  143. code: res.code
  144. }).then((result) => {
  145. updateSetWxPhoneAppApi({
  146. wechatOpenId: result.data.wechatOpenId,
  147. sessionKey: result.data.sessionKey,
  148. encryptedData: e.detail.encryptedData,
  149. iv: e.detail.iv,
  150. headImage: this.headImage,
  151. wechatName: this.wechatName
  152. }).then((res) => {
  153. this.$showToast('绑定成功')
  154. this.$store.dispatch('auth/LoginAfterAction', { type: 'wx', data: res.data })
  155. })
  156. })
  157. },
  158. fail: () => {
  159. this.$showToast('微信登录授权失败')
  160. }
  161. })
  162. } else {
  163. this.$showToast('获取手机授权失败')
  164. }
  165. },
  166. onGetAuthorize() {
  167. const that = this
  168. uni.showLoading({
  169. mask: true,
  170. title: '验证中...'
  171. })
  172. my.getPhoneNumber({
  173. success: (res) => {
  174. uni.hideLoading()
  175. that.updateAliPhone(res.response, true)
  176. },
  177. fail: (res) => {
  178. uni.hideLoading()
  179. this.$showToast('验证失败')
  180. }
  181. })
  182. },
  183. updateAliPhone(encryptedData, encrypted) {
  184. uni.showLoading()
  185. updateAliPhoneAppApi({
  186. 'phone': encryptedData,
  187. 'buyerUserId': this.buyerUserId,
  188. encrypted
  189. }).then((res) => {
  190. uni.hideLoading()
  191. this.$showToast('绑定成功')
  192. this.$store.dispatch('auth/LoginAfterAction', { type: 'alipay', data: res.data })
  193. })
  194. .catch((e) => {
  195. uni.hideLoading()
  196. })
  197. }
  198. }
  199. }
  200. </script>
  201. <style lang="less" scoped>
  202. .bind-phone-container {
  203. min-height: 100vh;
  204. box-sizing: border-box;
  205. .loginInfo {
  206. margin: 130rpx 0 50rpx 0;
  207. text-align: center;
  208. }
  209. .verifyTypeBox {
  210. width: 98%;
  211. .verifyItem {
  212. width: 80%;
  213. display: block;
  214. text-align: center;
  215. border: 2rpx solid #F3F4F5;
  216. padding: 30rpx;
  217. font-size: 34rpx;
  218. margin: 0 auto 30rpx auto;
  219. color: #C5AA7B;
  220. }
  221. .verify-checked {
  222. color: white;
  223. background: #C5AA7B;
  224. }
  225. }
  226. .phoneVerify {
  227. padding: 20rpx 30rpx;
  228. .iphoneNum-box {
  229. border-bottom: 1rpx solid #DDDDDD;
  230. }
  231. .code-box {
  232. border-bottom: 1rpx solid #DDDDDD;
  233. display: flex;
  234. flex-direction: row;
  235. justify-content: space-between;
  236. align-items: center;
  237. }
  238. .registerBut {
  239. background: #F3F4F5;
  240. color: #999999;
  241. height: 100rpx;
  242. width: 600rpx;
  243. text-align: center;
  244. line-height: 100rpx;
  245. margin: 30rpx auto;
  246. }
  247. .bindCls {
  248. background: #333333;
  249. color: #F5DEB2;
  250. }
  251. }
  252. .mpVerify {
  253. height: 300rpx;
  254. .verifyPhone {
  255. background: #333333;
  256. color: #FFEBC4;
  257. height: 100rpx;
  258. width: 600rpx;
  259. text-align: center;
  260. line-height: 100rpx;
  261. margin-top: 88rpx;
  262. border-radius: 0;
  263. }
  264. }
  265. .backBtn {
  266. color: #C5AA7B;
  267. text-align: center;
  268. text-decoration: underline;
  269. }
  270. }
  271. </style>