123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <view>
- <view style="width:100%;height:516rpx;position: relative;">
- <view class="navImage">
- <image src="../../static/login_bgground@2x.png" style="width:100%;height:516rpx;"></image>
- </view>
- <!-- <view style="color:#fff;" class="nvaTitle">访客密码</view> -->
- </view>
- <view>
- <view class="info">
- <view class="topType"></view>
- <view class="info-title">登录</view>
- <view class="item">
- <view class="left-icon">
- <image src="../../static/login_icon_phone@2x.png" style="width: 100%;height: 100%;"></image>
- </view>
- <input class="uni-input item-input" v-model="form.phone" focus placeholder="请输入手机号" />
- </view>
- <view class="item">
- <view class="left-icon">
- <image src="../../static/login_icon_code@2x.png" style="width: 100%;height: 100%;"></image>
- </view>
- <input class="uni-input item-input" style="width:190rpx;" v-model="form.code" placeholder="请输入验证码" />
- <view style="margin-left: 150rpx;font-size: 24rpx;text-align: center;line-height: 40rpx;color:rgba(41,138,253,1);"
- v-show="isGet" @tap="getCode">获取验证码</view>
- <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>
- </view>
- </view>
- <!--注册按钮 -->
- <view class="info-btn" @tap="login" :class="{active: form.phone && form.code}">
- 登录
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isShow: false, //判断是否显示重新获取
- isGet: true, //判断是否显示获取验证码
- // 倒计时数字
- num: 59,
- // 倒计时
- timer: null,
- //表单绑定值
- form: {
- name: '', //姓名
- idNumber: '', //身份证号
- phone: '', //手机号
- code: '', //验证码
- }
- }
- },
- methods: {
- // 获取验证码
- getCode() {
- this.isShow = true
- this.isGet = false
- const TIME_COUNT = 60;
- // 判断当前timer是否有值
- if (!this.timer) {
- this.num = TIME_COUNT;
- this.show = false;
- this.timer = setInterval(() => {
- // 判断当前num值大于0并且小于等于60执行
- if (this.num > 0 && this.num <= TIME_COUNT) {
- this.num--;
- } else {
- //否则就清除定时
- clearInterval(this.timer);
- this.timer = null;
- }
- }, 1000)
- }
- },
- //重新获取验证码
- againGetCode() {
- },
- // 登录
- login() {
- let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
- // 判断输入框是否都有值 是可以点击注册 否不可以点击
- if (!this.form.code || !this.form.phone) {
- return
- } else {
- if (!phoneReg.test(this.form.phone)) {
- uni.showToast({
- icon: 'none',
- title: '手机号码格式不正确',
- duration: 2000
- });
- }
- uni.switchTab({
- url:'../index/index'
- })
- }
- }
- }
- }
- </script>
- <style>
- .loginNow {
- width: 116rpx;
- height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- margin: 0 auto;
- margin-top: 48rpx;
- }
- .info-btn {
- width: 342rpx;
- height: 88rpx;
- background: rgba(163, 197, 237, 1);
- opacity: 1;
- border-radius: 14rpx;
- font-size: 32rpx;
- text-align: center;
- line-height: 88rpx;
- color: rgba(255, 255, 255, 1);
- margin: 0 auto;
- margin-top: 88rpx;
- }
- .item-input {
- width: 100%;
- margin-left: 20rpx;
- height: 40rpx;
- /* margin-top: 5rpx; */
- font-size: 32rpx;
- color: #999999;
- color: #333333;
- opacity: 1;
- }
- .active {
- background: rgba(41, 138, 253, 1);
- }
- .left-icon {
- width: 40rpx;
- height: 40rpx;
- /* border: 1rpx solid #555555; */
- /* box-sizing: border-box; */
- }
- .item {
- display: flex;
- width: 531rpx;
- height: 59rpx;
- margin: 0 auto;
- border-bottom: 2px solid rgba(247, 247, 247, 1);
- opacity: 1;
- margin-top: 50rpx;
- }
- .info-box {
- width: 90%;
- margin: 0 auto;
- border: 1px solid #808080;
- }
- .info-title {
- width: 100%;
- height: 48rpx;
- font-size: 34rpx;
- text-align: center;
- line-height: 48rpx;
- font-family: PingFang SC;
- font-weight: bold;
- position: absolute;
- top: 30rpx;
- }
- .topType {
- width: 150rpx;
- height: 150rpx;
- border-radius: 50%;
- background: #FFFFFF;
- margin: 0 auto;
- margin-top: -50rpx;
- border: 1rpx solide #C0C0C0;
- }
- .navImage {}
- .info {
- width: 602rpx;
- height: 458rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 6px 30px rgba(41, 138, 253, 0.15);
- opacity: 1;
- position: absolute;
- top: 484rpx;
- left: 74rpx;
- border-radius: 20rpx;
- }
- .btn {
- width: 702rpx;
- height: 90rpx;
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- line-height: 90rpx;
- position: absolute;
- top: 990rpx;
- left: 27rpx;
- }
- .nvaTitle {
- position: absolute;
- text-align: center;
- max-width: 400rpx;
- overflow: hidden;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- font-size: 32rpx;
- margin: auto;
- }
- </style>
|