bindphone.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <view class="pages">
  3. <view class="app_container">
  4. <form @submit="formSubmit" :model="form" ref="uForm" :rules="rules" @reset="formReset">
  5. <view class="login-list flex border-all">
  6. <view class="login-input">
  7. <view label="手机号" label-width="150" prop="telephone">
  8. <input v-model="form.telephone" placeholder="请输入手机号" />
  9. </view>
  10. </view>
  11. </view>
  12. <view class="login-list flex border-all">
  13. <view class="login-input">
  14. <view label="验证码" label-width="150" prop="pictureCode">
  15. <input v-model="form.pictureCode" placeholder="请输入验证码" />
  16. </view>
  17. </view>
  18. <view class="codeimg"><img :src="codeUrl" @click="getCode" /></view>
  19. </view>
  20. <view class="login-list-code flex border-all">
  21. <view class="login-input login-code">
  22. <view label="短信验证码" label-width="150" prop="SMSCode">
  23. <input class="uni-input" v-model="form.SMSCode" maxlength="10" placeholder="请输入短信验证码" />
  24. </view>
  25. </view>
  26. <view class="getCodeMsg" @click="getSMSCode" :disabled="countFlag">{{btnMsg == null ? countNum+'s重新发送':btnMsg}}</view>
  27. </view>
  28. </form>
  29. <view class="uni-padding-wrap uni-common-mt">
  30. <button type="primary" class="login-btn" @tap="submit">绑定</button>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. params:{
  40. token: '',
  41. },
  42. // 倒计时周期
  43. countNum: 60,
  44. // 用于倒计时标记,true-正在倒计时
  45. countFlag: false,
  46. // 定时器
  47. intervalBtn: {},
  48. //默认按钮的值
  49. btnMsg: "发送验证码",
  50. form: [],
  51. codeUrl: '',
  52. rules: {
  53. telephone: [{
  54. required: true,
  55. message: '请输入品牌名称',
  56. trigger: 'blur'
  57. },
  58. {
  59. min: 2,
  60. max: 140,
  61. message: '长度在 2 到 140 个字符',
  62. trigger: 'blur'
  63. }
  64. ],
  65. pictureCode: [{
  66. required: true,
  67. message: '请输入品牌logo',
  68. trigger: 'blur'
  69. }],
  70. SMSCode: [{
  71. required: true,
  72. message: '请选择供应商',
  73. trigger: 'blur'
  74. }],
  75. },
  76. }
  77. },
  78. onShow() {
  79. let self = this;
  80. uni.getStorage({
  81. key:'token',
  82. success: function (res) {
  83. self.params.token = res.data;
  84. // console.log(res.data);
  85. }
  86. });
  87. },
  88. onLoad() {
  89. this.getCode();
  90. },
  91. methods: {
  92. // 倒计时
  93. countDown() {
  94. // 设置btn倒计时时显示的信息
  95. this.btnMsg = null;
  96. // 更改btn状态
  97. this.countFlag = !this.countFlag;
  98. // 设置倒计时
  99. this.intervalBtn = setInterval(() => {
  100. if (this.countNum <= 0) {
  101. // 重置btn提示信息
  102. this.btnMsg = "发送验证码";
  103. // 清除定时器
  104. clearInterval(this.intervalBtn)
  105. // 更改btn状态
  106. this.countFlag = !this.countFlag;
  107. // 重置倒计时状态
  108. this.countNum = 60;
  109. };
  110. // 倒计时
  111. this.countNum--;
  112. }, 1000);
  113. },
  114. getCode() {
  115. this.$api.http.get(this.config.apiBaseurl + '/product/categorySearch').then(res => {
  116. if (res.data.code == 200) {
  117. this.codeUrl = 'http://placekitten.com/120/50'
  118. }
  119. })
  120. },
  121. getSMSCode() {
  122. if (this.form.pictureCode === null || this.form.pictureCode === '' || this.form.telephone === null || this.form.telephone ===
  123. '') {
  124. uni.showToast({
  125. title: '请填写完整',
  126. icon: 'none'
  127. });
  128. } else {
  129. this.$api.http.get(this.config.apiBaseurl + '/product/categorySearch').then(res => {
  130. if (res.data.code == 200) {
  131. this.codeUrl = 'http://placekitten.com/120/60';
  132. this.countDown();
  133. }
  134. })
  135. }
  136. },
  137. submit(){
  138. this.$api.http.post(this.config.apiBaseurl+'/product/categorySearch',this.form,{
  139. header: {
  140. Accept:'application/json',
  141. Authorization: 'Bearer '+ this.params.token, //注意Bearer后面有一空格
  142. }
  143. }).then(res=>{
  144. console.log('res',res)
  145. })
  146. }
  147. }
  148. }
  149. </script>
  150. <style scoped>
  151. @import url("./bindphone.css");
  152. </style>