register.1.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <view class="login uni-flex uni-column register">
  3. <view class="uni-flex login-top" @click="Home">
  4. <image mode="widthFix" src="../../../static/login/login_bg.png"></image>
  5. </view>
  6. <view class="login-bottom uni-flex-item uni-column uni-flex">
  7. <view class="login-form uni-flex uni-column">
  8. <view class="logoImg uni-flex">
  9. <image src="../../../static/login/login_logo.png"></image>
  10. </view>
  11. <view class="tab uni-flex uni-flex-item uni-column">
  12. <view class="content uni-flex-item">
  13. <view>
  14. <view class="form-phone uni-flex">
  15. <view class="form-phone-lf uni-flex">
  16. <image src="../../../static/login/ico1.png"></image>
  17. </view>
  18. <input class="uni-flex-item userNameIput" placeholder-style="color:#e2e2e2" v-model="phone" name="input"
  19. placeholder="输入手机号码" />
  20. </view>
  21. <view class="form-phone uni-flex">
  22. <view class="form-phone-lf uni-flex">
  23. <image src="../../../static/login/ico2.png"></image>
  24. </view>
  25. <input class="uni-flex-item userNameIput" placeholder-style="color:#e2e2e2" v-model="password" name="input"
  26. placeholder="输入登录密码" />
  27. </view>
  28. <view class="form-phone uni-flex">
  29. <view class="form-phone-lf uni-flex">
  30. <image src="../../../static/login/ico2.png"></image>
  31. </view>
  32. <input class="uni-flex-item userNameIput" placeholder-style="color:#e2e2e2" v-model="password" name="input"
  33. placeholder="确认登录密码" />
  34. </view>
  35. <view class="form-phone uni-flex">
  36. <view class="form-phone-lf uni-flex">
  37. <image src="../../../static/login/login_message.png"></image>
  38. </view>
  39. <input class="uni-flex-item userNameIput" placeholder-style="color:#e2e2e2" v-model="password" name="input"
  40. placeholder="输入短信验证码" />
  41. <view class="codeBtn">
  42. 获取验证码
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="btnImg">
  49. <image src="../../../static/login/login_btn.png"></image>
  50. </view>
  51. </view>
  52. <view class="login-tip uni-flex">
  53. <view class="registerMsg">已有账号登录</view>
  54. </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import {
  60. mapState,
  61. mapMutations
  62. } from 'vuex'
  63. export default {
  64. data() {
  65. return {
  66. userName: "",
  67. code: "",
  68. vcode: "",
  69. content: '发送验证码',
  70. totalTime: 10,
  71. type: "primary",
  72. canClick: true
  73. };
  74. },
  75. onLoad(e) {
  76. this.id = e.id;
  77. },
  78. onPullDownRefresh() {
  79. setTimeout(function() {
  80. uni.stopPullDownRefresh();
  81. }, 1000);
  82. },
  83. methods: {
  84. ...mapMutations(['login']),
  85. Register() {
  86. if (this.userName == "") {
  87. uni.showToast({
  88. icon: "none",
  89. title: "请填写手机号",
  90. });
  91. return false;
  92. }
  93. if (this.code == "") {
  94. uni.showToast({
  95. icon: "none",
  96. title: "请填写验证码",
  97. });
  98. return false;
  99. }
  100. // if (this.no == "") {
  101. // uni.showToast({
  102. // icon: "none",
  103. // title: "请填写激活码",
  104. // });
  105. // return false;
  106. // }
  107. uni.showLoading({
  108. title: "注册中"
  109. });
  110. uni.request({
  111. url: this.webUrl + 'Register',
  112. method: 'POST',
  113. data: {
  114. id: this.id,
  115. userName: this.userName,
  116. code: this.code,
  117. vcode: this.vcode
  118. // no: this.no
  119. },
  120. header: {
  121. 'content-type': 'application/x-www-form-urlencoded'
  122. },
  123. success: res => {
  124. uni.hideLoading();
  125. if (res.data.result.isSuccess) {
  126. this.login(JSON.stringify(res.data.user));
  127. uni.switchTab({
  128. url: '../user/user'
  129. });
  130. } else {
  131. uni.showToast({
  132. icon: "none",
  133. title: res.data.result.resultInfo,
  134. })
  135. }
  136. },
  137. fail: () => {},
  138. complete: () => {}
  139. });
  140. },
  141. SendEsms() {
  142. if (this.userName == "") {
  143. uni.showToast({
  144. icon: "none",
  145. title: "请填写手机号码",
  146. })
  147. } else {
  148. if (!this.canClick) return //改动的是这两行代码
  149. uni.showLoading({
  150. title: "发送中"
  151. });
  152. uni.request({
  153. url: this.webUrl + 'SendEsms',
  154. method: 'POST',
  155. data: {
  156. mobile: this.userName
  157. },
  158. header: {
  159. 'content-type': 'application/x-www-form-urlencoded'
  160. },
  161. success: res => {
  162. uni.hideLoading()
  163. if (res.data.result.status == "1") {
  164. this.vcode = res.data.result.code;
  165. this.canClick = false
  166. this.type = "default";
  167. this.content = this.totalTime + 's'
  168. let clock = setInterval(() => {
  169. this.totalTime--
  170. this.content = this.totalTime + 's'
  171. if (this.totalTime < 0) {
  172. clearInterval(clock)
  173. this.content = '重新发送'
  174. this.totalTime = 10
  175. this.canClick = false //这里重新开启
  176. this.type = "primary"
  177. }
  178. }, 1000)
  179. } else {
  180. uni.showToast({
  181. icon: "none",
  182. title: "发送失败",
  183. })
  184. }
  185. },
  186. fail: () => {},
  187. complete: () => {}
  188. });
  189. }
  190. }
  191. }
  192. }
  193. </script>