Blame view

ant-design-vue-jeecg/src/components/layouts/UserLayoutLogin.vue 13.9 KB
1
2
3
4
5
6
7
<template>
  <div id="userLayout" :class="['user-layout-wrapper']">
    <div class="left-div">
      <div id="logo">
        <div id="logoImg">
          <img src="~@/assets/logo.png" alt="" srcset="" class="imge">
        </div>
谭毅彬 authored
8
        <div id="text">华恒WMS仓储管理系统</div>
9
10
      </div>
      <div id="backgroundImg">
谭毅彬 authored
11
        <img src="~@/assets/beijingtu.jpg" alt="" srcset="" class="imge"/>
12
13
      </div>
      <div id="copyright">
谭毅彬 authored
14
        <div id="company">Copyright &copy; 2024 华恒焊接股份有限公司</div>
15
16
17
      </div>
    </div>
    <div class="right-div">
谭毅彬 authored
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
      <div id="welcome">欢迎来到华恒仓储管理系统 !</div>
      <a-form-model ref="form" :model="model" :rules="validatorRules">
        <a-form-model-item required prop="username">
          <a-input id="name" v-model="model.username" size="default"  autocomplete="off" placeholder="请输入帐户名  / admin" @blur="getWarehouse">
          </a-input>
        </a-form-model-item>
        <a-form-model-item required prop="password">
          <a-input id="password" v-model="model.password" size="default" type="password" autocomplete="new-password" @input="maskPassword" placeholder="请输入密码">
          </a-input>
        </a-form-model-item>
        <a-form-model-item prop="warehouseCode">
          <a-select
            show-search
            placeholder="请选择仓库"
            option-filter-prop="label"
            v-model="model.warehouseCode" id="warehouseCode">
            <a-select-option v-for="item in warehouseList" :key="item.name" :value="item.code">{{
                item.name
              }}
            </a-select-option>
          </a-select>
        </a-form-model-item>
        <a-form-item>
          <a-button id="logIn" size="default" type="primary" htmlType="submit" class="login-button"
            :loading="loginBtn" @click.stop.prevent="handleSubmit" :disabled="loginBtn">登 录</a-button>
        </a-form-item>
      </a-form-model>
    </div>
46
47
48
49
50
51
52
    <two-step-captcha v-if="requiredTwoStepCaptcha" :visible="stepCaptchaVisible" @success="stepCaptchaSuccess" @cancel="stepCaptchaCancel"></two-step-captcha>
    <login-select-tenant ref="loginSelect" @success="loginSelectOk" ></login-select-tenant>

  </div>
</template>

<script>
谭毅彬 authored
53
54
55
56
57
58
59
60
61
import RouteView from '@/components/layouts/RouteView'
import { mixinDevice } from '@/utils/mixin.js'
import LoginAccount from '@views/user/LoginAccount.vue'
import { mapActions } from 'vuex'
import { getAction } from '@api/manage'
import { getWarehouseByUserCode } from '@api/api'
import TwoStepCaptcha from '@comp/tools/TwoStepCaptcha.vue'
import LoginSelectTenant from '@views/user/LoginSelectTenant.vue'
import { timeFix } from '@/utils/util'
62
63

export default {
谭毅彬 authored
64
65
  name: 'UserLayout',
  components: { LoginSelectTenant, TwoStepCaptcha },
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  data() {
    return {
      requestCodeSuccess: false,
      randCodeImage: '',
      currdatetime: '',
      requiredTwoStepCaptcha: false,
      stepCaptchaVisible: false,
      maskedPassword: '',
      loginType: 0,
      loginBtn: false,
      warehouseList: {},
      querySource: {},
      model: {
        username: '',
        password: '',
谭毅彬 authored
81
        warehouseCode: ''
82
83
84
85
        // inputCode: ''
      },
      validatorRules: {
        username: [
谭毅彬 authored
86
87
88
89
90
          {
            required: true,
            message: <span style="color: red; font-weight: bold; margin-left: 10%;">请输入用户名!</span>
          },
          { validator: this.handleUsernameOrEmail }
91
        ],
谭毅彬 authored
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
        password: [
          {
            required: true,
            message: <span style="color: red; font-weight: bold; margin-left: 10%;">请输入密码!</span>,
            validator: 'click'
          }
        ],
        warehouseCode: [
          {
            required: true,
            message: <span style="color: red; font-weight: bold; margin-left: 10%;">请选择仓库!</span>,
            trigger: 'change',
            validator: 'click'
          }
        ]
107
108
109
110
      }
    }
  },
  created() {
谭毅彬 authored
111
112
    this.handleChangeCheckCode()
    this.getWarehouse()
113
114
115
116
117
118
119
120
121
  },

  methods: {
    stepCaptchaCancel() {
      this.Logout().then(() => {
        this.loginBtn = false
        this.stepCaptchaVisible = false
      })
    },
肖超群 authored
122
123
124
125
126
    stepCaptchaSuccess() {
      this.loginSuccess()
    },
    handleSubmit() {
谭毅彬 authored
127
      this.loginBtn = true
128
      // if (this.customActiveKey === 'tab1') {
谭毅彬 authored
129
130
      // 使用账户密码登录
      this.handleLogin(this.rememberMe)
131
132
133
134
135
136
137
      // } else {
      //   //手机号码登录
      //   this.$refs.plogin.handleLogin(this.rememberMe)
      // }
    },
    // 校验失败
    validateFail() {
谭毅彬 authored
138
      this.loginBtn = false
139
140
141
142
143
144
145
146
    },
    requestSuccess(loginResult) {
      this.$refs.loginSelect.show(loginResult)
    },
    loginSelectOk() {
      this.loginSuccess()
    },
    loginSuccess() {
谭毅彬 authored
147
      this.$router.push({ path: '/dashboard/analysis' })
148
149
      this.$notification.success({
        message: '欢迎',
谭毅彬 authored
150
151
        description: `${timeFix()},欢迎回来`
      })
152
153
154
    },
    //登录后台失败
    requestFailed(err) {
谭毅彬 authored
155
      let description = ((err.response || {}).data || {}).message || err.message || '请求出现错误,请稍后再试'
156
157
158
      this.$notification['error']({
        message: '登录失败',
        description: description,
谭毅彬 authored
159
160
        duration: 4
      })
161
162
163
164
      //账户密码登录错误后更新验证码
      if (this.customActiveKey === 'tab1' && description.indexOf('密码错误') > 0) {
        this.$refs.alogin.handleChangeCheckCode()
      }
谭毅彬 authored
165
      this.loginBtn = false
166
167
168
169
    },
    ...mapActions(['Login']),
    /**刷新验证码*/
    handleChangeCheckCode() {
谭毅彬 authored
170
      this.currdatetime = new Date().getTime()
171
      // this.model.inputCode = ''
谭毅彬 authored
172
173
174
175
176
177
178
179
180
181
182
      getAction(`/sys/randomImage/${this.currdatetime}`)
        .then(res => {
          if (res.success) {
            this.randCodeImage = res.result
            this.requestCodeSuccess = true
          } else {
            this.$message.error(res.message)
            this.requestCodeSuccess = false
          }
        })
        .catch(() => {
183
          this.requestCodeSuccess = false
谭毅彬 authored
184
        })
185
186
187
    },

    getWarehouse() {
谭毅彬 authored
188
189
190
191
192
      const that = this
      this.querySource.username = that.model.username
      let obj = getWarehouseByUserCode(that.querySource)
      obj.then(res => {
        that.warehouseList = res.result
193
        if (this.warehouseList != null) {
谭毅彬 authored
194
          this.model.warehouseCode = this.warehouseList[0].code
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
        }
      })
    },

    maskPassword() {
      //获取输入框的值
      let value = this.model.password
      if (value != '') {
        //如果不为空,逐个字符判断是否为圆点
        for (let i = 0; i < value.length; i++) {
          if (value.charAt(i) != '\u25CF') {
            //如果不是圆点,表示该字符为用户输入的值,放到真实值的对应位置
            let char = value.charAt(i)
            this.maskedPassword = this.maskedPassword.slice(0, i) + char + this.maskedPassword.slice(i)
            //将该字符替换为圆点
            value = value.slice(0, i) + '\u25CF' + value.slice(i + 1)
          }
        }
        //防止真实值和圆点的数量不对应。
        this.maskedPassword = this.maskedPassword.slice(0, value.length)
        //将转换过的字符串显示给用户
        this.model.password = value
      } else {
        //保持一致性
        this.maskedPassword = ''
      }
    },

    // 判断登录类型
    handleUsernameOrEmail(rule, value, callback) {
谭毅彬 authored
225
      const regex = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((\.[a-zA-Z0-9_-]{2,3}){1,2})$/
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
      if (regex.test(value)) {
        this.loginType = 0
      } else {
        this.loginType = 1
      }
      callback()
    },
    /**
     * 验证字段
     * @param arr
     * @param callback
     */
    validateFields(arr, callback) {
      let promiseArray = []
      for (let item of arr) {
        let p = new Promise((resolve, reject) => {
谭毅彬 authored
242
          this.$refs['form'].validateField(item, err => {
243
            if (!err) {
谭毅彬 authored
244
              resolve()
245
            } else {
谭毅彬 authored
246
              reject(err)
247
248
            }
          })
谭毅彬 authored
249
        })
250
251
        promiseArray.push(p)
      }
谭毅彬 authored
252
253
254
255
256
257
258
      Promise.all(promiseArray)
        .then(() => {
          callback()
        })
        .catch(err => {
          callback(err)
        })
259
260
261
262
263
264
    },
    acceptUsername(username) {
      this.model['username'] = username
    },
    // 账号密码登录
    handleLogin(rememberMe) {
谭毅彬 authored
265
      this.validateFields(['username', 'password'], err => {
266
267
268
269
270
271
        if (!err) {
          let loginParams = {
            username: this.model.username,
            password: this.maskedPassword,
            warehouseCode: this.model.warehouseCode,
            checkKey: this.currdatetime,
谭毅彬 authored
272
            remember_me: rememberMe
273
          }
谭毅彬 authored
274
275
276
277
278
279
280
281
282
283
284
285
286
          this.Login(loginParams)
            .then(res => {
              this.$emit('success', res.result)
              this.loginSuccess()
            })
            .catch(err => {
              this.validateFail()
              this.requestFailed(err)
              this.$emit('fail', err)
              if (err.code == 499) {
                this.$router.push({ path: '/user/systemTokenModal' })
              }
            })
287
288
289
290
291
292
293
294
295
296
297
        } else {
          this.validateFail()
          this.$emit('validateFail')
        }
      })
    }
  }
}
</script>

<style lang="less" scoped>
谭毅彬 authored
298
299
300
301
302
303
304
#userLayout {
  height: 100%;
  display: flex; /* 设置flex布局 */
  width: 100%; /* 容器宽度设置为100% */
}
::v-deep .ant-select-selection {
  border-width: 1px;
谭毅彬 authored
305
  border-radius: 0.6vw;
谭毅彬 authored
306
307
308
309
310
311
312
313
314
315
316
  width: 100% !important;
  height: 100% !important;
  background-color: #fff;
  background-image: url(../../assets/cangku.png);
  padding-left: 50px; /* 留出图片的空间 */
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 28px 28px;
  box-shadow: 2px 5px 5px #c3c3c3;
  font-size: 18px;
}
317
谭毅彬 authored
318
319
320
/deep/ .ant-select-selection__rendered {
  margin-top: 8px;
}
321
谭毅彬 authored
322
323
324
325
///deep/ .ant-select-dropdown-menu-item-selected{
//  font-size: 18px;
//  height: 30px;
//}
326
谭毅彬 authored
327
328
329
.left-div {
  flex: 0 0 65%; /* 左侧div宽度为容器的70% */
}
330
谭毅彬 authored
331
332
333
334
335
336
337
338
339
340
341
.right-div {
  flex: 0 0 35%;
  background-color: #fafafa;
}
#backgroundImg {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  .imge {
    height: 75%;
342
343
344
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
谭毅彬 authored
345
    background-position: top center;
346
  }
谭毅彬 authored
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
}
#logo {
  height: 15%;
  width: 100%;
  //background-color: red;
  //margin-left: 150px;
  //margin-left: 11%;
  //margin-top: 30px;
  display: flex;
}
#logoImg {
  width: 35%;
  height: 100%;
  float: right;
  position: relative;
  //background-color: yellow;
  .imge {
    width: 60%;
    height: 20%;
    position: absolute;
    right: 3%; /* 水平居右 */
    top: 50%; /* 从顶部偏移50% */
    transform: translateY(-50%); /* 向上移动自身高度的50%,实现垂直居中 */
    //object-fit: contain;
    //top: 39%;
    //left: 45%;
    //object-fit: cover; /* 或 contain、fill、none、scale-down */
    //object-position: center;
375
  }
谭毅彬 authored
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
}
#text {
  height: 100%;
  width: 100%;
  font-size: 1vw;
  align-content: center;
  color: #333333;
  //margin-left: 5px;
  font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
  font-weight: bold;
  //background-color: blue;
}
#copyright {
  height: 5%;
  width: stretch;
  position: fixed;
  // transform: translateX(-50%);
  //margin-left: 820px;
  //margin-top: 100px;
}
#form-container {
  width: 200px; /* 设置宽度 */
  height: 50px; /* 设置高度 */
  //margin-left: 820px;
  //margin-top: 100px;
}
#company {
  align-content: center;
  text-align: center;
  color: #ac1e2b;
  height: 100%;
  width: 100%;
  font-size: 0.9vw;
  align-content: baseline;
  font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
}
#welcome {
  width: 85%;
  height: 3vw;
  margin-top: 25%;
  margin-left: 50%;
  transform: translateX(-48%);
  color: #333333;
  font-size: 1.5vw;
  align-content: center;
  font-family: 'Microsoft YaHei', 'SimSun', sans-serif;
}
#name {
  border-width: 1px;
  border-style: solid;
  border-radius: 0.6vw;
  width: 85%;
  height: 3vw;
  line-height: 3vw;
  margin-top: 2.5vw;
  margin-left: 8%;
  background-image: url(../../assets/huiyuan.png);
  padding-left: 12%; /* 留出图片的空间 */
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 26px 26px;
  font-size: 1vw;
  color: #333333;
  box-shadow: 2px 5px 5px #c3c3c3;
}
#name::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
}
#name::placeholder {
  font-size: 18px;
  color: #999999;
  padding-left: 0px;
}
#password {
  border-width: 1px;
  border-style: solid;
  border-radius: 0.6vw;
  width: 85%;
  height: 3vw;
  line-height: 3vw;
  margin-top: 0.5vw;
  margin-left: 8%;
  background-image: url(../../assets/mima.png);
  padding-left: 12%; /* 留出图片的空间 */
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 26px 26px;
  font-size: 1vw;
  color: #333333;
  box-shadow: 2px 5px 5px #c3c3c3;
}
#password::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
}
#password::placeholder {
  font-size: 18px;
  color: #999999;
  padding-left: 0px;
}
/deep/ .ant-form-item-control{
  line-height: 65px;
}
谭毅彬 authored
486
487
488
/deep/ .ant-select-selection__rendered {
  line-height: 25px;
}
谭毅彬 authored
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
#warehouseCode {
  border-color: #ebf3fd;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.6vw;
  width: 85%;
  height: 3vw;
  line-height: 3vw;
  margin-top: 0.5vw;
  margin-left: 8%;
  font-size: 1vw;
  text-align: center;
  //color: #333333;
}
a-select {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
谭毅彬 authored
510
  border-radius: 0.6vw;
谭毅彬 authored
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
}
#logIn {
  border-color: #ac1e2b;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.6vw;
  width: 85%;
  height: 3vw;
  line-height: 3vw;
  margin-top: 0.5vw;
  margin-left: 8%;
  font-size: 1.8vw;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #ebf3fd;
  background-color: red;
  box-shadow: 2px 5px 5px #c3c3c3;
}
530
</style>