bindmobile.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <template>
  2. <view :style="viewColor">
  3. <view class="container">
  4. <view class="header">
  5. <text class="title">绑定手机号</text>
  6. <text class="iconfont icon-guanbi5" @tap="closePopup"></text>
  7. </view>
  8. <view class="main_counts">
  9. <form report-submit='true'>
  10. <view class="ChangePassword">
  11. <view class="list">
  12. <view class="item">
  13. <input type='number' placeholder='输入手机号码' placeholder-class='placeholder' v-model="phone"></input>
  14. </view>
  15. <view class="item acea-row row-between-wrapper">
  16. <input type='number' placeholder='输入验证码' placeholder-class='placeholder' class="codeIput" v-model="captcha"></input>
  17. <button class="code" :class="disabled === true ? 'on' : ''" :disabled='disabled' @click="handleVerify">
  18. {{ text }}
  19. </button>
  20. </view>
  21. </view>
  22. <button form-type="submit" @click="editPwd" class="confirmBnt">确认绑定</button>
  23. <!-- #ifdef MP -->
  24. <button v-if="!isCommuity" form-type="submit" class="getPhoneBtn" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber"><text class="iconfont icon-weixin2"></text>使用微信绑定号码</button>
  25. <!-- #endif -->
  26. </view>
  27. </form>
  28. </view>
  29. </view>
  30. <Verify @success="success" :captchaType="'blockPuzzle'" :imgSize="{ width: '330px', height: '155px' }" ref="verify"></Verify>
  31. <view class='mask' catchtouchmove="true" :hidden='popup.show==false' @tap="closePopup"></view>
  32. </view>
  33. </template>
  34. <script>
  35. // +----------------------------------------------------------------------
  36. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  37. // +----------------------------------------------------------------------
  38. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  39. // +----------------------------------------------------------------------
  40. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  41. // +----------------------------------------------------------------------
  42. // | Author: CRMEB Team <admin@crmeb.com>
  43. // +----------------------------------------------------------------------
  44. import sendVerifyCode from "@/mixins/SendVerifyCode";
  45. import {
  46. bindingPhone,
  47. verifyCode, appletsDecrypt
  48. } from '@/api/api.js';
  49. import { registerVerify } from '@/api/user.js'
  50. import {
  51. mapGetters
  52. } from "vuex";
  53. import Verify from '@/components/verify/verify.vue';
  54. export default {
  55. props:{
  56. isCommuity: {
  57. type: Boolean,
  58. default: false
  59. }
  60. },
  61. mixins: [sendVerifyCode],
  62. components: {
  63. Verify
  64. },
  65. data() {
  66. return {
  67. phone:'',
  68. captcha:'',
  69. isAuto: false, //没有授权的不会自动授权
  70. isShowAuth: false, //是否隐藏授权
  71. key: '',
  72. codeVal: '',
  73. popup: {
  74. show: false
  75. },
  76. };
  77. },
  78. computed: mapGetters(['isLogin','viewColor']),
  79. onLoad() {
  80. },
  81. methods: {
  82. // 点击关闭按钮
  83. closePopup() {
  84. this.$emit('close');
  85. },
  86. // #ifdef MP
  87. getPhoneNumber(e) {
  88. let that = this;
  89. appletsDecrypt({
  90. iv:e.detail.iv,
  91. encryptedData:e.detail.encryptedData,
  92. code:that.codeVal
  93. }).then(res => {
  94. that.$util.Tips({
  95. title: '绑定成功!',
  96. icon: 'success'
  97. })
  98. setTimeout(()=>{
  99. uni.switchTab({
  100. url: '/pages/user/index',
  101. });
  102. },2000)
  103. })
  104. },
  105. // #endif
  106. editPwd: function() {
  107. let that = this;
  108. if (!that.phone) return that.$util.Tips({
  109. title: '请输入手机号码!'
  110. });
  111. if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
  112. title: '请输入正确的手机号码!'
  113. });
  114. if (!that.captcha) return that.$util.Tips({
  115. title: '请填写验证码'
  116. });
  117. bindingPhone({
  118. phone: that.phone,
  119. sms_code: that.captcha
  120. }).then(res => {
  121. if (res.data !== undefined && res.data.is_bind) {
  122. uni.showModal({
  123. title: '是否绑定手机号',
  124. content: res.msg,
  125. confirmText: '绑定',
  126. success(res) {
  127. if (res.confirm) {
  128. bindingPhone({
  129. phone: that.phone,
  130. captcha: that.captcha,
  131. step: 1
  132. }).then(res => {
  133. that.$emit('close');
  134. return that.$util.Tips({
  135. title: res.msg,
  136. icon: 'success'
  137. });
  138. }).catch(err => {
  139. return that.$util.Tips({
  140. title: err
  141. });
  142. })
  143. } else if (res.cancel) {
  144. return that.$util.Tips({
  145. title: '您已取消绑定!'
  146. }, {
  147. tab: 5,
  148. url: '/pages/users/user_info/index'
  149. });
  150. }
  151. }
  152. });
  153. } else
  154. that.$emit('close');
  155. return that.$util.Tips({
  156. title: '绑定成功!',
  157. icon: 'success'
  158. });
  159. }).catch(err => {
  160. return that.$util.Tips({
  161. title: err
  162. });
  163. })
  164. },
  165. /**
  166. * 发送验证码
  167. *
  168. */
  169. async code(data) {
  170. let that = this;
  171. if (!that.phone) return that.$util.Tips({
  172. title: '请填写手机号码!'
  173. });
  174. if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
  175. title: '请输入正确的手机号码!'
  176. });
  177. this.disabled = true
  178. await registerVerify({
  179. phone:that.phone,
  180. key:that.key,
  181. code:that.captcha,
  182. type: 'binding',
  183. captchaType: 'blockPuzzle',
  184. captchaVerification: data.captchaVerification
  185. }).then(res => {
  186. this.disabled = false
  187. that.$util.Tips({
  188. title: res.msg
  189. });
  190. that.sendCode();
  191. }).catch(err => {
  192. this.disabled = false
  193. return that.$util.Tips({
  194. title: err
  195. });
  196. });
  197. },
  198. success(data) {
  199. this.$refs.verify.hide();
  200. this.code(data);
  201. },
  202. handleVerify() {
  203. let that = this;
  204. if (!that.phone) return that.$util.Tips({
  205. title: '请填写手机号码!'
  206. });
  207. if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(that.phone))) return that.$util.Tips({
  208. title: '请输入正确的手机号码!'
  209. });
  210. this.$refs.verify.show();
  211. }
  212. }
  213. }
  214. </script>
  215. <style lang="scss" scoped>
  216. .container{
  217. background-color: #ffffff;
  218. border-radius: 16rpx 16rpx 0 0;
  219. position: relative;
  220. padding-bottom: 30rpx;
  221. .header{
  222. position: relative;
  223. padding: 40rpx 30rpx;
  224. text-align: center;
  225. .title{
  226. color: #282828;
  227. font-size: 32rpx;
  228. }
  229. .iconfont{
  230. color: #8A8A8A;
  231. font-size: 28rpx;
  232. position: absolute;
  233. top: 0;
  234. right: 0;
  235. }
  236. .icon-guanbi5 {
  237. right: 20rpx;
  238. color: #8a8a8a;
  239. font-size: 30rpx;
  240. line-height: 30rpx;
  241. top: 20rpx;
  242. background-color: transparent;
  243. font-weight: normal;
  244. }
  245. }
  246. }
  247. .ChangePassword{
  248. padding: 0 30rpx 100rpx;
  249. }
  250. .ChangePassword .phone {
  251. font-size: 32rpx;
  252. font-weight: bold;
  253. text-align: center;
  254. margin-top: 55rpx;
  255. }
  256. .ChangePassword .list .item {
  257. height: 86rpx;
  258. margin-bottom: 30rpx;
  259. flex-direction: row;
  260. }
  261. .ChangePassword .list .item input {
  262. height: 100%;
  263. font-size: 32rpx;
  264. border: 1px solid #DCDCDC;
  265. border-radius: 43rpx;
  266. padding: 0 40rpx;
  267. }
  268. .ChangePassword .list .item .placeholder {
  269. color: #b9b9bc;
  270. }
  271. .ChangePassword .list .item input.codeIput {
  272. max-width: 400rpx;
  273. }
  274. .ChangePassword .list .item .code {
  275. font-size: 28rpx;
  276. background-color: var(--view-minorColor);
  277. color: var(--view-theme);
  278. width: 230rpx;
  279. height: 86rpx;
  280. border-radius: 43rpx;
  281. display: flex;
  282. align-items: center;
  283. justify-content: center;
  284. }
  285. .ChangePassword .list .item .code.on {
  286. color: #b9b9bc;
  287. }
  288. .ChangePassword .confirmBnt {
  289. font-size: 32rpx;
  290. width: 580rpx;
  291. height: 90rpx;
  292. border-radius: 45rpx;
  293. color: #fff;
  294. margin: 60rpx auto 0 auto;
  295. text-align: center;
  296. line-height: 90rpx;
  297. background-color: var(--view-theme);
  298. }
  299. .getPhoneBtn{
  300. font-size: 32rpx;
  301. width: 580rpx;
  302. height: 90rpx;
  303. border-radius: 45rpx;
  304. border: 1px solid #3CB625;
  305. color: #3CB625;
  306. margin: 40rpx auto 0 auto;
  307. text-align: center;
  308. line-height: 90rpx;
  309. .iconfont{
  310. font-size: 32rpx;
  311. margin-right: 12rpx;
  312. }
  313. }
  314. /deep/.verifybox{
  315. top: auto!important;
  316. }
  317. </style>