123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <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" type="number" placeholder="请输入手机号" @input="changePhone" />
- </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" type="number" placeholder="请输入验证码" />
- <view style="margin-left: 150rpx;font-size: 24rpx;text-align: center;line-height: 40rpx;" v-show="isGet" @tap="getCode"
- class="getCode" :class="{codeActive:phoneLength==11}">获取验证码</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);"><text
- class="cx" :class="{cxActive:num==0}">重新获取</text><text v-show="num>0">({{num}}s)</text>
- </view>
- </view>
- <!--注册按钮 -->
- <button class="info-btn" @tap="login" :class="{active: form.phone && form.code}" :loading="isLoading">
- 登录
- </button>
- <view class="regiter" @tap="register">注册</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isLoading:false,
- phoneLength: 0, //手机号的长度
- isShow: false, //判断是否显示重新获取
- isGet: true, //判断是否显示获取验证码
- // 倒计时数字
- num: 0,
- // 倒计时
- timer: null,
- //表单绑定值
- form: {
- name: '', //姓名
- idNumber: '', //身份证号
- phone: '', //手机号
- code: '', //验证码
- }
- }
- },
- created() {
- let id = uni.getStorageSync('userId')
- let name =uni.getStorageSync('createBy')
- // 判断当前用户是否已经登录过是 直接跳到首页 否 需要登录
- if(id && name){
- uni.switchTab({
- url:'../index/index'
- })
- }else{
- if(id){
- uni.navigateTo({
- url:'./authorization'
- })
- }else{
-
- }
- }
- },
- methods: {
- // 监听输入手机号码的长度
- changePhone() {
- this.phoneLength = this.form.phone.length
- },
- // 注册
- register() {
- uni.navigateTo({
- url: "../register/register"
- })
- },
- // 获取验证码
- getCode() {
- if (this.phoneLength != 11) {
- return
- } else {
- let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
- if (phoneReg.test(this.form.phone)) {
- 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;
- this.num = 0
- }
- }, 1000)
- }
- this.http.httpRequest('/wxapplet/ownersid/shortmessaging', 'get', {
- phoneNumBer: this.form.phone
- }, true).then((res) => {})
- } else {
- uni.showToast({
- "icon": "none",
- title: "请输入正确手机号码格式"
- })
- }
- }
- },
- //重新获取验证码
- againGetCode() {
- if (this.num == 0) {
- this.getCode()
- } else {
- return
- }
- },
- // 登录
- login() {
- // 判断输入框是否都有值 是可以点击注册 否不可以点击
- if (!this.form.code || !this.form.phone) {
- return
- } else {
- uni.showLoading({
- mask:true,
- title:'登录中'
- })
- this.http.httpRequest('/wxapplet/ownersid/login', 'post', {
- phoneNumBer: this.form.phone,
- loginType: '2',
- passWord: this.form.code
- }, true).then((res) => {
- // 判断是否登陆成功
- if (res.code == 0) {
- console.log(res)
- uni.setStorageSync('userId',res.data[0].userId)
- uni.setStorageSync('idNumber',res.data[0].idcardNum)
- uni.setStorageSync('phoneNumber',res.data[0].phoneNumBer)
- // 判断当前是否已经认证过房屋了
- if(res.data[0].comtyInfos.length>0){
- uni.setStorageSync('comtyId',res.data[0].comtyInfos[0].cbId)
- uni.setStorageSync('homeId',res.data[0].comtyInfos[0].ownerBases[0].bid)
- uni.setStorageSync('homeAdress',res.data[0].comtyInfos[0].comtyName)
- uni.switchTab({
- url:'../index/index'
- })
- }else{
- console.log('走这里')
- uni.navigateTo({
- url: '../authentication/city'
- })
- }
- uni.hideLoading()
- } else {
- uni.hideLoading()
- uni.showToast({
- title: res.msg,
- 'icon': 'none'
- })
- }
- }).catch(()=>{
- uni.hideLoading()
- })
- }
- }
- }
- }
- </script>
- <style>
- .getCode {
- color: rgba(163, 197, 237, 1);
- }
- .codeActive {
- color: rgba(41, 138, 253, 1);
- }
- .cx {
- color: rgba(163, 197, 237, 1);
- }
- .cxActive {
- color: rgba(41, 138, 253, 1);
- }
- .regiter {
- width: 56rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 40rpx;
- color: rgba(51, 51, 51, 1);
- margin: 0 auto;
- margin-top: 92rpx;
- }
- .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>
|