Browse Source

完善金融产品政策管理

master
yunuo970428 2 years ago
parent
commit
50caac244f
  1. 4
      anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagement.vue

4
anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagement.vue

@ -576,7 +576,7 @@ export default {
spinner: 'el-icon-loading', spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)' background: 'rgba(0, 0, 0, 0.7)'
}) })
req.setRiskState({ sidsList: this.sids, riskState: '1' }).then(resp => { req.setRiskState({ sidsList: this.sids, riskState: '1', userSid: window.sessionStorage.getItem('userSid') }).then(resp => {
if (resp.success) { if (resp.success) {
this.$message({ type: 'success', message: resp.msg, showClose: true }) this.$message({ type: 'success', message: resp.msg, showClose: true })
} }
@ -605,7 +605,7 @@ export default {
spinner: 'el-icon-loading', spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)' background: 'rgba(0, 0, 0, 0.7)'
}) })
req.setRiskState({ sidsList: this.sids, riskState: '0' }).then(resp => { req.setRiskState({ sidsList: this.sids, riskState: '0', userSid: window.sessionStorage.getItem('userSid') }).then(resp => {
if (resp.success) { if (resp.success) {
this.$message({ type: 'success', message: resp.msg, showClose: true }) this.$message({ type: 'success', message: resp.msg, showClose: true })
} }

Loading…
Cancel
Save