123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <template>
- <view class="content">
- <view class="header">
- <image src="../../static/shilu-login/logo.png"></image>
- </view>
- <view class="list">
- <view class="list-call">
- <image class="img" src="/static/shilu-login/1.png"></image>
- <input class="sl-input" v-model="userInfo.username" maxlength="11" placeholder="输入用户名" />
- </view>
- <view class="list-call">
- <image class="img" src="/static/shilu-login/2.png"></image>
- <input class="sl-input" v-model="userInfo.password" type="text" maxlength="32" placeholder="输入密码"
- password="true" />
- </view>
- </view>
- <view class="button-login" hover-class="button-hover" @tap="bindLogin()">
- <text>登录</text>
- </view>
- <!-- <view class="agreenment">
- <navigator url="forget" open-type="navigate">忘记密码</navigator>
- <text>|</text>
- <navigator url="reg" open-type="navigate">注册账户</navigator>
- </view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- userInfo: {
- username: '',
- password: '',
- verifyCode: 666666
- }
- };
- },
- methods: {
- bindLogin() {
- // if (this.phone.length) {
- // uni.showToast({
- // icon: 'none',
- // title: '用户名不正确'
- // });
- // return;
- // }
- // if (this.password.length < 6) {
- // uni.showToast({
- // icon: 'none',
- // title: '密码不正确'
- // });
- // return;
- // }
- // {
- // sunMemberInfo: JSON.stringify({
- // name: that.userInfo.nickname,
- // phone: val.phoneNumber,
- // sex: '1'
- // })
- // }
- uni.showLoading({
- mask: true,
- title: "加载中"
- })
- this.$request.baseRequest('admin', 'login', this.userInfo, failres => {
- console.log('res+++++', failres.errmsg)
- this.$refs.uToast.show({
- type: 'error',
- message: failres.errmsg,
- })
- uni.hideLoading()
- }).then(res => {
- console.log(res)
- if (res.errno == 200) {
- uni.hideLoading()
- uni.setStorageSync('userInfo', this.userInfo)
- this.$store.commit('login', this.userInfo)
- // that.$api.setUserInfo(that.userInfo)
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- })
- }
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .header {
- width: 161rpx;
- height: 161rpx;
- background: rgba(63, 205, 235, 1);
- box-shadow: 0rpx 12rpx 13rpx 0rpx rgba(63, 205, 235, 0.47);
- border-radius: 50%;
- margin-top: 30rpx;
- margin-left: auto;
- margin-right: auto;
- }
- .header image {
- width: 161rpx;
- height: 161rpx;
- border-radius: 50%;
- }
- .list {
- display: flex;
- flex-direction: column;
- padding-top: 50rpx;
- padding-left: 70rpx;
- padding-right: 70rpx;
- }
- .list-call {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 100rpx;
- color: #333333;
- border-bottom: 0.5px solid #e2e2e2;
- }
- .list-call .img {
- width: 40rpx;
- height: 40rpx;
- }
- .list-call .sl-input {
- flex: 1;
- text-align: left;
- font-size: 32rpx;
- margin-left: 16rpx;
- }
- .button-login {
- color: #FFFFFF;
- font-size: 34rpx;
- width: 470rpx;
- height: 100rpx;
- background: linear-gradient(-90deg, rgba(63, 205, 235, 1), rgba(188, 226, 158, 1));
- box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(164, 217, 228, 0.2);
- border-radius: 50rpx;
- line-height: 100rpx;
- text-align: center;
- margin-left: auto;
- margin-right: auto;
- margin-top: 100rpx;
- }
- .button-hover {
- background: linear-gradient(-90deg, rgba(63, 205, 235, 0.8), rgba(188, 226, 158, 0.8));
- }
- .agreenment {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- font-size: 30rpx;
- margin-top: 80rpx;
- color: #FFA800;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- }
- .agreenment text {
- font-size: 24rpx;
- margin-left: 15rpx;
- margin-right: 15rpx;
- }
- </style>
|