This commit is contained in:
Jerry
2020-05-24 22:59:25 +08:00
parent be7395cf82
commit 5d8aca463c
184 changed files with 4126 additions and 3508 deletions

View File

@@ -25,6 +25,7 @@
import { SystemController } from '@/api';
import { mapMutations } from 'vuex';
import projectConfig from '@/core/config';
import { encrypt } from '@/utils';
export default {
data () {
@@ -50,7 +51,7 @@ export default {
if (valid) {
let params = {
loginName: this.dataForm.mobilePhone,
password: this.dataForm.password
password: encrypt(this.dataForm.password)
};
SystemController.login(this, params, null, {showMask: false}).then(data => {