diff --git a/epmet-oper-web/src/views/pages/loginWork.vue b/epmet-oper-web/src/views/pages/loginWork.vue index acfba34..c479762 100644 --- a/epmet-oper-web/src/views/pages/loginWork.vue +++ b/epmet-oper-web/src/views/pages/loginWork.vue @@ -283,8 +283,9 @@ export default { // const url = 'https://nei.netease.com/api/apimock-v2/e3b1d0eb88e905f6c7ee559b2d6bb7ad/auth/govweb/login' const url = '/auth/govweb/login' this.dataForm.customerId = row.customerId - - this.dataForm.password = this.encryptedData(this.pubKey, this.dataForm.password); + let param = {}; + Object.assign(param,this.dataForm); + param.password = this.encryptedData(this.pubKey, this.dataForm.password); this.$http.post(url, this.dataForm).then(({data: res}) => { if (res.code !== 0) { this.getCaptcha()