diff --git a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js index e57f08402c..63362654dd 100644 --- a/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js +++ b/anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js @@ -102,8 +102,9 @@ export default { // 查看明细 specialRebateGroupDetails: function(data) { return request({ - url: '/scm/v1/scmspecialrebatecheckapplydetail/specialRebateGroupDetails/' + data, - method: 'get' + url: '/scm/v1/scmspecialrebatecheckapplydetail/specialRebateGroupDetails', + method: 'get', + params: data }) }, // 导出 diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue index 5ec4b648a7..97e11dba36 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue @@ -72,12 +72,12 @@ export default { } }, methods: { - showInfo(specialRebateSids) { + showInfo(sid, specialRebateSids) { this.$nextTick(() => { this.$refs['form_obj'].clearValidate() }) this.viewTitle = '专项返利核对审核申请明细' - req.specialRebateGroupDetails(specialRebateSids).then((resp) => { + req.specialRebateGroupDetails({ appleSid: sid, specialRebateSids: specialRebateSids }).then((resp) => { if (resp.success) { this.list = resp.data } diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckInfo.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckInfo.vue index 96bc928b52..544e81ebfa 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckInfo.vue @@ -154,7 +154,7 @@ export default { }, handleLook(row) { this.viewState = 2 - this.$refs['divInfo'].showInfo(row.specialRebateSids) + this.$refs['divInfo'].showInfo(this.formobj.sid, row.specialRebateSids) }, resetState() { this.viewState = 1 diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue index 6cb61adaf3..503c34b9ff 100644 --- a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue @@ -72,12 +72,12 @@ export default { } }, methods: { - showInfo(specialRebateSids) { + showInfo(sid, specialRebateSids) { this.$nextTick(() => { this.$refs['form_obj'].clearValidate() }) this.viewTitle = '专项返利核对审核申请明细' - req.specialRebateGroupDetails(specialRebateSids).then((resp) => { + req.specialRebateGroupDetails({ appleSid: sid, specialRebateSids: specialRebateSids }).then((resp) => { if (resp.success) { this.list = resp.data } diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiDaiBanInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiDaiBanInfo.vue index 22a299af14..8d67668435 100644 --- a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiDaiBanInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiDaiBanInfo.vue @@ -258,7 +258,7 @@ export default { }, handleLook(row) { this.viewState = 2 - this.$refs['divInfo'].showInfo(row.specialRebateSids) + this.$refs['divInfo'].showInfo(this.formobj.sid, row.specialRebateSids) }, resetState() { this.viewState = 1 diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiYiBanInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiYiBanInfo.vue index c1826af4f9..5cbc302c40 100644 --- a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiYiBanInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiYiBanInfo.vue @@ -190,7 +190,7 @@ export default { }, handleLook(row) { this.viewState = 2 - this.$refs['divInfo'].showInfo(row.specialRebateSids) + this.$refs['divInfo'].showInfo(this.formobj.sid, row.specialRebateSids) }, resetState() { this.viewState = 1