Browse Source

完善专项返利核对

master
yunuo970428 3 months ago
parent
commit
cfa811e54f
  1. 5
      anrui-scm/anrui-scm-ui/src/api/specialrebate/specialrebatecheck.js
  2. 4
      anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue
  3. 2
      anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckInfo.vue
  4. 4
      anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue
  5. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiDaiBanInfo.vue
  6. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/zhuanxiangfanliheduiYiBanInfo.vue

5
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
})
},
// 导出

4
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
}

2
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

4
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
}

2
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

2
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

Loading…
Cancel
Save