Selaa lähdekoodia

:art: 删除前端eslint 单双引号限制,修复用户密码登录失败时回显加密的密码

aeizzz 1 vuosi sitten
vanhempi
commit
b73437254d
3 muutettua tiedostoa jossa 2 lisäystä ja 3 poistoa
  1. 1 1
      .eslintrc.js
  2. 0 1
      src/const/crud/admin/user.js
  3. 1 1
      src/page/login/userlogin.vue

+ 1 - 1
.eslintrc.js

@@ -181,7 +181,7 @@ module.exports = {
       }
     }], //换行时运算符在行尾还是行首
     'padded-blocks': 0, //块语句内行首行尾是否要空行
-    'quotes': [2, 'single', {
+    'quotes': [0, 'single', {
       'avoidEscape': true,
       'allowTemplateLiterals': true
     }], //引号类型 `` "" ''

+ 0 - 1
src/const/crud/admin/user.js

@@ -127,7 +127,6 @@ export const tableOption = {
     {
       label: '岗位',
       prop: 'post',
-      width: 168,
       overHidden: true,
       formslot: true,
       slot: true,

+ 1 - 1
src/page/login/userlogin.vue

@@ -119,7 +119,7 @@ export default {
       this.loginByUsername()
     },
     loginByUsername() {
-      this.$store.dispatch("LoginByUsername", this.loginForm).then(() => {
+      this.$store.dispatch("LoginByUsername", Object.assign({}, this.loginForm)).then(() => {
         this.$router.push({path: this.tagWel.value});
       });
     }