login.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view>
  3. <view style="width:100%;height:516rpx;position: relative;">
  4. <view class="navImage">
  5. <image src="../../static/login_bgground@2x.png" style="width:100%;height:516rpx;"></image>
  6. </view>
  7. <!-- <view style="color:#fff;" class="nvaTitle">访客密码</view> -->
  8. </view>
  9. <view>
  10. <view class="info">
  11. <view class="topType"></view>
  12. <view class="info-title">登录</view>
  13. <view class="item">
  14. <view class="left-icon">
  15. <image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
  16. </view>
  17. <input class="uni-input item-input" v-model="form.phone" focus type="number" placeholder="请输入手机号" @input="changePhone" />
  18. </view>
  19. <view class="item">
  20. <view class="left-icon">
  21. <image src="../../static/login_icon_code@2x.png" style="width: 100%;height: 100%;"></image>
  22. </view>
  23. <input class="uni-input item-input" style="width:190rpx;" v-model="form.code" type="number" placeholder="请输入验证码" />
  24. <view style="margin-left: 150rpx;font-size: 24rpx;text-align: center;line-height: 40rpx;" v-show="isGet" @tap="getCode"
  25. class="getCode" :class="{codeActive:phoneLength==11}">获取验证码</view>
  26. <view v-show="isShow" @tap="againGetCode" style="width: 160rpx; margin-left: 116rpx;font-size: 24rpx;text-align: center;line-height: 45rpx;color:rgba(41,138,253,1);"><text
  27. class="cx" :class="{cxActive:num==0}">重新获取</text><text v-show="num>0">({{num}}s)</text>
  28. </view>
  29. </view>
  30. <!--注册按钮 -->
  31. <view class="info-btn" @tap="login" :class="{active: form.phone && form.code}">
  32. 登录
  33. </view>
  34. <view class="regiter" @tap="register">注册</view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {
  43. phoneLength: 0, //手机号的长度
  44. isShow: false, //判断是否显示重新获取
  45. isGet: true, //判断是否显示获取验证码
  46. // 倒计时数字
  47. num: 0,
  48. // 倒计时
  49. timer: null,
  50. //表单绑定值
  51. form: {
  52. name: '', //姓名
  53. idNumber: '', //身份证号
  54. phone: '', //手机号
  55. code: '', //验证码
  56. }
  57. }
  58. },
  59. methods: {
  60. // 监听输入手机号码的长度
  61. changePhone() {
  62. this.phoneLength = this.form.phone.length
  63. },
  64. // 注册
  65. register() {
  66. uni.navigateTo({
  67. url: "../register/register"
  68. })
  69. },
  70. // 获取验证码
  71. getCode() {
  72. if (this.phoneLength != 11) {
  73. return
  74. } else {
  75. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  76. if (phoneReg.test(this.form.phone)) {
  77. this.isShow = true
  78. this.isGet = false
  79. const TIME_COUNT = 60;
  80. // 判断当前timer是否有值
  81. if (!this.timer) {
  82. this.num = TIME_COUNT;
  83. this.show = false;
  84. this.timer = setInterval(() => {
  85. // 判断当前num值大于0并且小于等于60执行
  86. if (this.num > 0 && this.num <= TIME_COUNT) {
  87. this.num--;
  88. } else {
  89. //否则就清除定时
  90. clearInterval(this.timer);
  91. this.timer = null;
  92. this.num = 0
  93. }
  94. }, 1000)
  95. }
  96. } else {
  97. uni.showToast({
  98. "icon": "none",
  99. title: "请输入正确手机号码格式"
  100. })
  101. }
  102. }
  103. },
  104. //重新获取验证码
  105. againGetCode() {
  106. if (this.num == 0) {
  107. this.getCode()
  108. } else {
  109. return
  110. }
  111. },
  112. // 登录
  113. login() {
  114. // 判断输入框是否都有值 是可以点击注册 否不可以点击
  115. if (!this.form.code || !this.form.phone) {
  116. return
  117. } else {
  118. uni.navigateTo({
  119. url: '../authentication/city'
  120. })
  121. }
  122. }
  123. }
  124. }
  125. </script>
  126. <style>
  127. .getCode {
  128. color: rgba(163, 197, 237, 1);
  129. }
  130. .codeActive {
  131. color: rgba(41, 138, 253, 1);
  132. }
  133. .cx {
  134. color: rgba(163, 197, 237, 1);
  135. }
  136. .cxActive {
  137. color: rgba(41, 138, 253, 1);
  138. }
  139. .regiter {
  140. width: 56rpx;
  141. height: 40rpx;
  142. font-size: 28rpx;
  143. font-family: PingFang SC;
  144. font-weight: 400;
  145. line-height: 40rpx;
  146. color: rgba(51, 51, 51, 1);
  147. margin: 0 auto;
  148. margin-top: 92rpx;
  149. }
  150. .loginNow {
  151. width: 116rpx;
  152. height: 40rpx;
  153. font-size: 28rpx;
  154. color: #333333;
  155. margin: 0 auto;
  156. margin-top: 48rpx;
  157. }
  158. .info-btn {
  159. width: 342rpx;
  160. height: 88rpx;
  161. background: rgba(163, 197, 237, 1);
  162. opacity: 1;
  163. border-radius: 14rpx;
  164. font-size: 32rpx;
  165. text-align: center;
  166. line-height: 88rpx;
  167. color: rgba(255, 255, 255, 1);
  168. margin: 0 auto;
  169. margin-top: 88rpx;
  170. }
  171. .item-input {
  172. width: 100%;
  173. margin-left: 20rpx;
  174. height: 40rpx;
  175. /* margin-top: 5rpx; */
  176. font-size: 32rpx;
  177. color: #999999;
  178. color: #333333;
  179. opacity: 1;
  180. }
  181. .active {
  182. background: rgba(41, 138, 253, 1);
  183. }
  184. .left-icon {
  185. width: 40rpx;
  186. height: 40rpx;
  187. /* border: 1rpx solid #555555; */
  188. /* box-sizing: border-box; */
  189. }
  190. .item {
  191. display: flex;
  192. width: 531rpx;
  193. height: 59rpx;
  194. margin: 0 auto;
  195. border-bottom: 2px solid rgba(247, 247, 247, 1);
  196. opacity: 1;
  197. margin-top: 50rpx;
  198. }
  199. .info-box {
  200. width: 90%;
  201. margin: 0 auto;
  202. border: 1px solid #808080;
  203. }
  204. .info-title {
  205. width: 100%;
  206. height: 48rpx;
  207. font-size: 34rpx;
  208. text-align: center;
  209. line-height: 48rpx;
  210. font-family: PingFang SC;
  211. font-weight: bold;
  212. position: absolute;
  213. top: 30rpx;
  214. }
  215. .topType {
  216. width: 150rpx;
  217. height: 150rpx;
  218. border-radius: 50%;
  219. background: #FFFFFF;
  220. margin: 0 auto;
  221. margin-top: -50rpx;
  222. border: 1rpx solide #C0C0C0;
  223. }
  224. .navImage {}
  225. .info {
  226. width: 602rpx;
  227. height: 458rpx;
  228. background: rgba(255, 255, 255, 1);
  229. box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
  230. opacity: 1;
  231. position: absolute;
  232. top: 484rpx;
  233. left: 74rpx;
  234. border-radius: 20rpx;
  235. }
  236. .btn {
  237. width: 702rpx;
  238. height: 90rpx;
  239. background: rgba(41, 138, 253, 1);
  240. opacity: 1;
  241. border-radius: 18rpx;
  242. font-size: 32rpx;
  243. font-family: PingFang SC;
  244. color: rgba(255, 255, 255, 1);
  245. text-align: center;
  246. line-height: 90rpx;
  247. position: absolute;
  248. top: 990rpx;
  249. left: 27rpx;
  250. }
  251. .nvaTitle {
  252. position: absolute;
  253. text-align: center;
  254. max-width: 400rpx;
  255. overflow: hidden;
  256. top: 0;
  257. left: 0;
  258. bottom: 0;
  259. right: 0;
  260. font-size: 32rpx;
  261. margin: auto;
  262. }
  263. </style>