You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view> <view class="head"></view> <view class="content"> <view> <!-- 账号 --> <view class="lf-flex lf-m-b-10"> <u-icon name="account-fill"></u-icon> <text class="lf-m-l-10 lf-font-28 lf-color-333">登录账号</text> </view> <input class="input" maxlength="11" v-model="user_key" :adjust-position="false" :auto-blur="true" placeholder="请输入账号" @focus="inputFocus(170)" @blur="inputBlur" /> <!-- 密码 --> <view class="lf-flex lf-m-b-10 lf-m-t-60"> <u-icon name="lock-fill"></u-icon> <text class="lf-m-l-10 lf-font-28 lf-color-333">登录密码</text> </view> <input class="input" maxlength="11" v-model="user_pw" :adjust-position="false" :auto-blur="true" placeholder="请输入密码" :password="true" @focus="inputFocus(220)" @blur="inputBlur" @confirm="login" /> </view> <view> <!-- 登录按钮 --> <button class="button" @click="login">登录</button> </view> </view> <view :style="is_focus ? 'height: 540rpx' : 'height: 40rpx'"></view> </view></template>
<script> let time = null; export default { data(){ return { is_focus: false, user_key: '', user_pw: '' } }, onReady(){ // #ifndef MP
var a = document.getElementsByClassName('uni-page-head-hd')[0]; a.style.display = 'none'; // #endif
}, methods: { inputFocus(scrollTop){ time = setTimeout(() => { this.is_focus = true; }, 0); // 给blur事件留出时间
setTimeout(() => { uni.pageScrollTo({ scrollTop: scrollTop, duration: 100 }) }, 200); }, inputBlur(){ time = setTimeout(() => { this.is_focus = false; }, 0); // 给click事件留出时间
}, login(){ if(!this.user_key){ this.$msg('账号不能为空'); }else if(!this.user_pw){ this.$msg('密码不能为空'); }else{ this.$http(this.API.API_SUPPLIER_LOGIN, { username: this.user_key, password: this.user_pw }).then(res => { console.log("login", res); uni.setStorageSync('supply_token', res.data.token); this.$url('/pages/supply/index/index', {tyep: 'redirect'}); }) } } } }</script>
<style lang="scss" scoped="scoped"> .lf-m-t-60{ margin-top: 60rpx; } .head{ height: 604rpx; width: 750rpx; background-color: #1833F2; } .content{ width: 686rpx; height: 622rpx; background: #FFFFFF; box-shadow: 0rpx 2rpx 10rpx 5rpx rgba(24, 51, 242, 0.1); border-radius: 20rpx; margin: 0 auto; margin-top: -100rpx; padding: 60rpx 30rpx; box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between; .input{ // padding: 20rpx 0;
border-bottom: 1rpx solid #e5e5e5; font-size: 60rpx; /* #ifdef MP */ height: 90rpx; line-height: 90rpx; /* #endif */ } .button{ background-color: #1833F2; color: #FFFFFF; font-size: 32rpx; } } /deep/.input-placeholder{ color: #999999; font-size: 28rpx; } /deep/.button-hover{ opacity: .5; animation: all .3s; }</style>
|