|
|
|
@ -17,6 +17,7 @@ import {
|
|
|
|
|
} from "../../utils/auth";
|
|
|
|
|
// import { $NOT_NETWORK } from '../../utils/errorCode'
|
|
|
|
|
import {Message} from "element-ui";
|
|
|
|
|
import md5 from 'js-md5';
|
|
|
|
|
import {RECEIVE_LOCINVCODE, RECEIVE_LOCINVNAME, RECEIVE_LOCSUBINVCODE, RECEIVE_LOCSUBINVNAME} from "../mutation-types";
|
|
|
|
|
|
|
|
|
|
// initial state
|
|
|
|
@ -58,7 +59,7 @@ const actions = {
|
|
|
|
|
// 用户名登录
|
|
|
|
|
loginName({commit}, userInfo) {
|
|
|
|
|
const userName = userInfo.userName ? userInfo.userName.trim() : "";
|
|
|
|
|
const pwd = userInfo.pwd ? userInfo.pwd : "";
|
|
|
|
|
const pwd = md5(userInfo.pwd);
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
loginName(userName, pwd)
|
|
|
|
|
.then(response => {
|
|
|
|
|