login.vue 5.0 KB

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