Commit f6e44752 by liang ce

文案修改,充值和津贴文案取后端文案

parent 514e32ce
...@@ -339,9 +339,9 @@ export default { ...@@ -339,9 +339,9 @@ export default {
this.rechargeData.orgId = localStorage.getItem('orgId') this.rechargeData.orgId = localStorage.getItem('orgId')
let rechargeData = this.$qs.stringify(this.rechargeData) let rechargeData = this.$qs.stringify(this.rechargeData)
$http.get(`/v1/charge/charge?${rechargeData}`).then((res) => { $http.get(`/v1/charge/charge?${rechargeData}`).then((res) => {
if (res.data.message === 'SUCCESS') { if (res.data.resultCode === '0') {
this.form.resetFields() this.form.resetFields()
this.$message.success('充值已提交,审批中请耐心等待') this.$message.success(res.data.message)
this.spinning = !this.spinning this.spinning = !this.spinning
} else { } else {
this.spinning = !this.spinning this.spinning = !this.spinning
......
...@@ -306,12 +306,12 @@ export default { ...@@ -306,12 +306,12 @@ export default {
orgId: localStorage.getItem('orgId') orgId: localStorage.getItem('orgId')
}) })
$http.get(`/v1/account/batch_create_subsidy?${RecordData}`).then((res) => { $http.get(`/v1/account/batch_create_subsidy?${RecordData}`).then((res) => {
if (res.data.message === 'SUCCESS') { if (res.data.resultCode === '0') {
this.visible = false this.visible = false
this.form.resetFields() this.form.resetFields()
this.userIdListObj = [] this.userIdListObj = []
this.departmentIdListObj = [] this.departmentIdListObj = []
this.$message.success('发放成功') this.$message.success(res.data.message)
this.spinning = false this.spinning = false
this.queryRecordList() this.queryRecordList()
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment