Login.vue 6.5 KB
Newer Older
陈文彬 已提交
1
<template>
N
nebv 已提交
2 3 4 5 6 7
  <div class="login">
    <div class="login-mask" />
    <div class="login-form-wrap">
      <div class="login-form mx-6">
        <div class="login-form__content px-2 py-10">
          <header>
V
vben 已提交
8
            <img :src="logo" class="mr-4" />
N
nebv 已提交
9
            <h1>{{ title }}</h1>
陈文彬 已提交
10 11
          </header>

N
nebv 已提交
12
          <a-form class="mx-auto mt-10" :model="formData" :rules="formRules" ref="formRef">
陈文彬 已提交
13
            <a-form-item name="account">
V
vben 已提交
14
              <a-input size="large" v-model:value="formData.account" placeholder="username: vben" />
陈文彬 已提交
15 16 17 18 19 20
            </a-form-item>
            <a-form-item name="password">
              <a-input-password
                size="large"
                visibilityToggle
                v-model:value="formData.password"
V
vben 已提交
21
                placeholder="password: 123456"
陈文彬 已提交
22 23
              />
            </a-form-item>
24 25

            <!-- <a-form-item name="verify" v-if="openLoginVerify">
陈文彬 已提交
26
              <BasicDragVerify v-model:value="formData.verify" ref="verifyRef" />
27 28 29 30
            </a-form-item> -->
            <a-row>
              <a-col :span="12">
                <a-form-item>
V
vben 已提交
31
                  <!-- No logic, you need to deal with it yourself -->
32 33 34 35 36
                  <a-checkbox v-model:checked="autoLogin" size="small">自动登录</a-checkbox>
                </a-form-item>
              </a-col>
              <a-col :span="12">
                <a-form-item :style="{ 'text-align': 'right' }">
V
vben 已提交
37
                  <!-- No logic, you need to deal with it yourself -->
38 39 40 41
                  <a-button type="link" size="small">忘记密码</a-button>
                </a-form-item>
              </a-col>
            </a-row>
陈文彬 已提交
42 43 44 45 46
            <a-form-item>
              <a-button
                type="primary"
                size="large"
                class="rounded-sm"
V
vben 已提交
47
                :block="true"
陈文彬 已提交
48 49
                @click="login"
                :loading="formState.loading"
V
vben 已提交
50
                >{{ t('system.login.button') }}</a-button
陈文彬 已提交
51 52 53 54 55 56 57 58 59
              >
            </a-form-item>
          </a-form>
        </div>
      </div>
    </div>
  </div>
</template>
<script lang="ts">
V
vben 已提交
60
  import { defineComponent, reactive, ref, unref, toRaw } from 'vue';
61 62 63 64 65
  import { Checkbox } from 'ant-design-vue';

  import Button from '/@/components/Button/index.vue';
  // import { BasicDragVerify, DragVerifyActionType } from '/@/components/Verify/index';

陈文彬 已提交
66
  import { userStore } from '/@/store/modules/user';
V
vben 已提交
67 68
  import { useI18n } from 'vue-i18n';

69
  // import { appStore } from '/@/store/modules/app';
陈文彬 已提交
70
  import { useMessage } from '/@/hooks/web/useMessage';
N
nebv 已提交
71
  import { useSetting } from '/@/hooks/core/useSetting';
V
vben 已提交
72
  import logo from '/@/assets/images/logo.png';
V
vben 已提交
73

陈文彬 已提交
74
  export default defineComponent({
75 76 77 78 79
    components: {
      //  BasicDragVerify,
      AButton: Button,
      ACheckbox: Checkbox,
    },
陈文彬 已提交
80
    setup() {
81 82 83 84
      const formRef = ref<any>(null);
      const autoLoginRef = ref(false);
      // const verifyRef = ref<RefInstanceType<DragVerifyActionType>>(null);

N
nebv 已提交
85
      const { globSetting } = useSetting();
陈文彬 已提交
86 87
      const { notification } = useMessage();

88
      // const openLoginVerifyRef = computed(() => appStore.getProjectConfig.openLoginVerify);
陈文彬 已提交
89 90

      const formData = reactive({
V
vben 已提交
91 92
        account: 'vben',
        password: '123456',
93
        // verify: undefined,
陈文彬 已提交
94 95 96 97 98 99 100 101
      });
      const formState = reactive({
        loading: false,
      });

      const formRules = reactive({
        account: [{ required: true, message: '请输入账号', trigger: 'blur' }],
        password: [{ required: true, message: '请输入密码', trigger: 'blur' }],
102
        // verify: unref(openLoginVerifyRef) ? [{ required: true, message: '请通过验证码校验' }] : [],
陈文彬 已提交
103 104
      });

105 106 107 108 109 110
      // function resetVerify() {
      //   const verify = unref(verifyRef);
      //   if (!verify) return;
      //   formData.verify && verify.$.resume();
      //   formData.verify = undefined;
      // }
陈文彬 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

      async function handleLogin() {
        const form = unref(formRef);
        if (!form) return;
        formState.loading = true;
        try {
          const data = await form.validate();
          const userInfo = await userStore.login(
            toRaw({
              password: data.password,
              username: data.account,
            })
          );
          if (userInfo) {
            notification.success({
              message: '登录成功',
              description: `欢迎回来: ${userInfo.realName}`,
              duration: 3,
            });
          }
        } catch (error) {
        } finally {
133
          // resetVerify();
陈文彬 已提交
134 135 136
          formState.loading = false;
        }
      }
V
vben 已提交
137
      const { t } = useI18n();
陈文彬 已提交
138 139
      return {
        formRef,
140
        // verifyRef,
陈文彬 已提交
141 142 143 144
        formData,
        formState,
        formRules,
        login: handleLogin,
145 146
        autoLogin: autoLoginRef,
        // openLoginVerify: openLoginVerifyRef,
N
nebv 已提交
147
        title: globSetting && globSetting.title,
V
vben 已提交
148
        logo,
V
vben 已提交
149
        t,
陈文彬 已提交
150 151 152 153 154
      };
    },
  });
</script>
<style lang="less" scoped>
N
nebv 已提交
155 156
  @import (reference) '../../../design/index.less';

陈文彬 已提交
157
  .login {
N
nebv 已提交
158 159
    position: relative;
    height: 100vh;
陈文彬 已提交
160 161 162 163
    background: url(../../../assets/images/login/login-bg.png) no-repeat;
    background-size: 100% 100%;

    &-mask {
N
nebv 已提交
164 165
      display: none;
      height: 100%;
陈文彬 已提交
166
      background: url(../../../assets/images/login/login-in.png) no-repeat;
V
vben 已提交
167
      background-position: 30% 30%;
168
      background-size: 80% 80%;
N
nebv 已提交
169

170
      .respond-to(xlarge, { display: block;});
陈文彬 已提交
171 172 173
    }

    &-form {
174
      width: 520px;
N
nebv 已提交
175 176
      background: @white;
      border: 10px solid rgba(255, 255, 255, 0.5);
177
      border-width: 8px;
N
nebv 已提交
178 179
      border-radius: 4px;
      background-clip: padding-box;
180
      .respond-to(xlarge, { margin: 0 120px 0 50px});
N
nebv 已提交
181 182 183 184 185 186 187

      &-wrap {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        width: 100%;
188
        height: 90%;
N
nebv 已提交
189 190
        justify-content: center;
        align-items: center;
191
        .respond-to(large, {
192
          width: 600px;
V
vben 已提交
193
          right: calc(50% - 270px);
194
          });
V
vben 已提交
195
        .respond-to(xlarge, { width: 540px; right:0});
N
nebv 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
      }

      &__content {
        width: 100%;
        height: 100%;
        border: 1px solid #999;
        border-radius: 2px;

        header {
          display: flex;
          justify-content: center;
          align-items: center;

          img {
            display: inline-block;
211
            width: 48px;
N
nebv 已提交
212 213 214 215 216
          }

          h1 {
            margin-bottom: 0;
            font-size: 24px;
217
            // color: @primary-color;
N
nebv 已提交
218 219 220 221 222 223 224 225
            text-align: center;
          }
        }

        form {
          width: 80%;
        }
      }
陈文彬 已提交
226 227 228
    }
  }
</style>