url参数解码

This commit is contained in:
aixianling
2022-05-20 11:26:12 +08:00
parent 753b5f9874
commit 3f0e6bab8f

View File

@@ -60,6 +60,7 @@ export default {
getList() { getList() {
let {current, total, name: con, $route: {query: {action}}} = this let {current, total, name: con, $route: {query: {action}}} = this
if (total == 0 || current <= total) { if (total == 0 || current <= total) {
action = decodeURIComponent(action)
this.$http.post(action || `/admin/user/userIntegralList`, null, { this.$http.post(action || `/admin/user/userIntegralList`, null, {
params: {current, size: 20, con} params: {current, size: 20, con}
}).then(res => { }).then(res => {