123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <template>
- <view class="login">
- <view class="login-box">
- <view class="login-box-title">
- <view>智慧停车</view>
- <view>运营数据系统</view>
- </view>
- <view class="login-box-form">
- <view class="login-box-form-box">
- <u--form :model="form" :rules="rules" ref="uForm">
- <u-form-item label="" prop="phoneNumber">
- <u--input
- v-model="form.phoneNumber"
- :prefixIcon="require('@/static/icons/job-number-icon.svg')"
- placeholder="请输入手机号"
- :maxlength="11"
- type="number"
- border="none"
- class="custom-input"
- :prefixIconStyle="{ marginRight: '10px' }"
- fontSize="14px"
- color="#ffffff"
- placeholderStyle="color: #fff"
- />
- </u-form-item>
- <u-form-item label="" prop="password">
- <u--input
- v-model="form.password"
- :prefixIcon="require('@/static/icons/password-icon.svg')"
- placeholder="请输入密码"
- :password="true"
- border="none"
- class="custom-input"
- :prefixIconStyle="{ marginRight: '10px' }"
- fontSize="14px"
- color="#ffffff"
- placeholderStyle="color: #fff"
- />
- </u-form-item>
- <u-form-item>
- <u-checkbox-group v-model="checked">
- <u-checkbox
- name="remeber"
- activeColor="#f05"
- iconSize="18px"
- label="记住密码"
- labelColor="#fff"
- />
- </u-checkbox-group>
- </u-form-item>
- </u--form>
- </view>
- <view class="login-box-form-btn">
- <u-button
- class="login-btn"
- type="primary"
- text="登录"
- :loading="loading"
- @click="submitLogin"
- ></u-button>
- </view>
- </view>
- </view>
- <u-toast ref="uToast"></u-toast>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- form: {
- phoneNumber: '',
- password: ''
- },
- checked: [],
- loading: false,
- rules: {
- phoneNumber: {
- required: true,
- message: '请输入手机号',
- trigger: ['change', 'blur']
- },
- password: {
- required: true,
- message: '请输入密码',
- trigger: ['change', 'blur']
- }
- }
- };
- },
- onShow() {
- uni.getStorage({
- key: 'userLoginInfo',
- success: (res) => {
- let userLoginInfo = JSON.parse(res.data)
- if (userLoginInfo) {
- const { telephone, loginPwd, checked } = userLoginInfo
- this.form.phoneNumber = telephone
- this.form.password = loginPwd
- if (checked) {
- this.checked = ['remeber']
- }
- }
- }
- })
- },
- methods: {
- /**
- * 登录提交
- */
- submitLogin() {
- this.$refs.uForm
- .validate()
- .then((res) => {
- this.loading = true;
- const form = {
- ...this.form
- };
- uni.$u.api
- .loginApi({
- telephone: form.phoneNumber,
- loginPwd: form.password
- })
- .then((res) => {
- if (res.code === 200) {
- uni.$u.vuex('vuex_token', res.data.token);
- this.$u.vuex('vuex_user', res.data);
- this.$u.vuex('vuex_isLogin', true);
- if (this.checked.includes('remeber')) {
- const loginInfo = {
- telephone: form.phoneNumber,
- loginPwd: form.password,
- checked: true
- }
- uni.setStorage({
- key: 'userLoginInfo',
- data: JSON.stringify(loginInfo)
- })
- }
- this.$refs.uToast.show({
- loading: true,
- message: '登录成功!',
- type: 'success',
- complete() {
- uni.$u.route({
- url: 'pages/index/index',
- type: 'redirect'
- });
- }
- });
- } else {
- this.$refs.uToast.show({
- loading: true,
- message: res.msg || '登录失败',
- type: 'error'
- });
- }
- })
- .catch((err) => {
- this.loading = false;
- });
- })
- .catch((errors) => {
- uni.$u.toast(errors[0].message || '必填项不能为空!');
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100vh;
- background: linear-gradient(183deg, #2d82fb 0%, #1558f8 100%);
- }
- </style>
- <style lang="scss" scoped>
- @import './login.scss';
- </style>
|