applySalesman.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <view class="app-container">
  3. <view class="banner">
  4. <image src="@/static/mine/apply.png" mode="widthFix"></image>
  5. </view>
  6. <view class="main">
  7. <view class="title">请输入您登录企业微信的手机号码</view>
  8. <view class="form">
  9. <view class="row">
  10. <view class="row-c">
  11. <view class="left">+86</view>
  12. <view class="input">
  13. <input type="text" placeholder="请输入手机号码" v-model="phone">
  14. </view>
  15. </view>
  16. </view>
  17. <view class="row">
  18. <view class="row-c">
  19. <view class="left">验证码</view>
  20. <view class="input">
  21. <input type="text" placeholder="请输入短信验证码" v-model="code">
  22. </view>
  23. </view>
  24. <view class="btn" :class="!phone || countDown != 60 ? 'disabled': ''" @tap="getCode">{{countDown == 60 ? getCodeText : countDown+'s'}}</view>
  25. </view>
  26. </view>
  27. <view class="tips" >{{countDown != 60 ? '验证码已发送,请注意查收短信':''}}</view>
  28. <view class="button" :class="!phone || !code ? 'disabled': ''" @tap="submitForm">确定</view>
  29. </view>
  30. <view class="code-container" v-show="isShowCode">
  31. <view class="title">请完成安全验证</view>
  32. <pt-images-verification ref="verification" :top="codeObj.yHeight" :bgImg="codeObj.bigImage" :maskImg="codeObj.smallImage" :isSuccess="codeObj.isSuccess" :isFail="codeObj.isFail" @refresh="refresh" @finish="finish"></pt-images-verification>
  33. <view class="button" @tap="isShowCode = false">关闭</view>
  34. </view>
  35. <div class="global-mask" v-show="isShowCode"></div>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. phone: '',
  43. code: '',
  44. getCodeText: '获取验证码',
  45. countDown: 60,
  46. timer: null,
  47. isShowCode: false,
  48. codeObj: {
  49. bigImage: '',
  50. smallImage: '',
  51. key: '',
  52. yHeight: '',
  53. isSuccess: false,
  54. isFail: false,
  55. }
  56. }
  57. },
  58. onLoad() {
  59. },
  60. methods: {
  61. // 获取验证码
  62. getCode() {
  63. if(!this.phone) {
  64. this.$toast('请先填写手机号码');
  65. return false;
  66. }
  67. if(this.countDown != 60) {
  68. this.$toast('请勿频繁获取验证码');
  69. return false;
  70. }
  71. if(!(/^1[3456789]\d{9}$/.test(this.phone))) {
  72. this.$toast('请填写正确的手机号码');
  73. return false;
  74. }
  75. // this.init();
  76. this.isShowCode = true;
  77. this.$refs.verification.refresh();
  78. },
  79. // 提交表单
  80. submitForm() {
  81. if(!this.phone) {
  82. this.$toast('请先填写手机号码');
  83. return false;
  84. }
  85. if(!(/^1[3456789]\d{9}$/.test(this.phone))) {
  86. this.$toast('请填写正确的手机号码');
  87. return false;
  88. }
  89. if(!this.code) {
  90. this.$toast('请先填写验证码');
  91. return false;
  92. }
  93. this.$axios({
  94. url: '/worker/bind',
  95. params: {
  96. phone: this.phone,
  97. code: this.code
  98. },
  99. isLoading: 1
  100. }).then(res => {
  101. this.$successToast('申请成功');
  102. setTimeout(() => {
  103. uni.navigateBack({
  104. delta: 1
  105. })
  106. }, 1500)
  107. })
  108. },
  109. // 获取图片验证码
  110. init(){
  111. this.$axios({
  112. url: '/common/getVerifi',
  113. method: 'get',
  114. params: {},
  115. isLoading: 1
  116. }).then(res => {
  117. this.codeObj = res.data;
  118. })
  119. },
  120. // 刷新验证码
  121. refresh(){
  122. this.init()
  123. },
  124. // 验证结束
  125. finish(value){
  126. console.log(value);
  127. this.$axios({
  128. url: '/worker/sms/send',
  129. params: {
  130. phone: this.phone,
  131. key: this.codeObj.key,
  132. vrifyCode: Math.round(value)
  133. },
  134. isLoading: 1
  135. }).then(res => {
  136. this.codeObj.isSuccess = true;
  137. this.codeObj.isFail = false;
  138. setTimeout(() => {
  139. this.isShowCode = false;
  140. this.$toast('短信发送成功');
  141. }, 1500)
  142. this.countDown--;
  143. this.timer = setInterval(() => {
  144. this.countDown--;
  145. if (this.countDown == 0) {
  146. this.countDown = 60;
  147. this.getCodeText = '重新获取';
  148. clearInterval(this.timer)
  149. }
  150. }, 1000)
  151. }).catch(res => {
  152. this.codeObj.isSuccess = false;
  153. this.codeObj.isFail = true;
  154. setTimeout(() => {
  155. this.$refs.verification.refresh();
  156. }, 1500)
  157. })
  158. }
  159. }
  160. }
  161. </script>
  162. <style lang="scss">
  163. .app-container {
  164. background: #F4F2F2;
  165. box-sizing: border-box;
  166. }
  167. .banner {
  168. image {
  169. width: 100%;
  170. }
  171. }
  172. .code-container {
  173. position: fixed;
  174. top: calc(50vh - 150px);
  175. left: calc(50vw - 170px);
  176. z-index: 999;
  177. background: #FFFFFF;
  178. padding: 20px;
  179. border-radius: 10rpx;
  180. display: flex;
  181. flex-direction: column;
  182. align-items: center;
  183. .title {
  184. font-size: 28rpx;
  185. color: #333333;
  186. width: 100%;
  187. text-align: left;
  188. margin-bottom: 10px;
  189. }
  190. .button {
  191. margin-top: 20px;
  192. color: #666666;
  193. width: 200rpx;
  194. line-height: 60rpx;
  195. border: 1px solid #eaeaea;
  196. border-radius: 10rpx;
  197. text-align: center;
  198. }
  199. }
  200. .main {
  201. padding: 50rpx;
  202. .title {
  203. font-size: 32rpx;
  204. color: #333333;
  205. text-align: center;
  206. }
  207. .button {
  208. margin-top: 120rpx;
  209. width: 100%;
  210. text-align: center;
  211. line-height: 88rpx;
  212. border-radius: 88rpx;
  213. font-size: 32rpx;
  214. color: #FFFFFF;
  215. background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
  216. &.disabled {
  217. background: #C1C1C1;
  218. }
  219. }
  220. .tips {
  221. font-size: 24rpx;
  222. color: #FE781F;
  223. line-height: 24rpx;
  224. margin-top: 20rpx;
  225. height: 24rpx;
  226. margin-left: 10rpx;
  227. }
  228. .form {
  229. margin-top: 60rpx;
  230. .row {
  231. &:last-child {
  232. margin-top: 40rpx;
  233. display: flex;
  234. align-items: flex-end;
  235. .btn {
  236. width: 180rpx;
  237. height: 50rpx;
  238. border-radius: 50rpx;
  239. display: flex;
  240. align-items: center;
  241. justify-content: center;
  242. font-size: 24rpx;
  243. color: #FFFFFF;
  244. background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
  245. margin-left: 30rpx;
  246. &.disabled {
  247. background: #C1C1C1;
  248. }
  249. }
  250. }
  251. .row-c {
  252. height: 60rpx;
  253. display: flex;
  254. align-items: center;
  255. border-bottom: 1px solid #D1D1D1;
  256. .left {
  257. width: 140rpx;
  258. height: 28rpx;
  259. border-right: 1px solid #D1D1D1;
  260. font-size: 30rpx;
  261. display: flex;
  262. align-items: center;
  263. justify-content: center;
  264. flex-shrink: 0;
  265. }
  266. .input {
  267. width: 100%;
  268. input {
  269. font-size: 30rpx;
  270. width: 100%;
  271. padding: 0 25rpx;
  272. box-sizing: border-box;
  273. }
  274. }
  275. }
  276. }
  277. }
  278. }
  279. </style>