Browse Source

完善单车返利核对

master
yunuo970428 3 months ago
parent
commit
659cdcf040
  1. 5
      anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js
  2. 2
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatecheckInfo.vue
  3. 4
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/relation/bicyclerebatetobecheckedInfo.vue
  4. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue
  5. 2
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiYiBanInfo.vue
  6. 4
      anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/relation/bicyclerebatetobecheckedInfo.vue

5
anrui-scm/anrui-scm-ui/src/api/bikerebate/bicyclerebatecheck.js

@ -102,8 +102,9 @@ export default {
// 查看明细
vehRebateGroupDetails: function(data) {
return request({
url: '/scm/v1/scmvehrebatecheckapplydetail/vehRebateGroupDetails/' + data,
method: 'get'
url: '/scm/v1/scmvehrebatecheckapplydetail/vehRebateGroupDetails',
method: 'get',
params: data
})
},
// 导出

2
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatecheckInfo.vue

@ -155,7 +155,7 @@ export default {
},
handleLook(row) {
this.viewState = 2
this.$refs['divInfo'].showInfo(row.vehRebateSids)
this.$refs['divInfo'].showInfo(this.formobj.sid, row.vehRebateSids)
},
resetState() {
this.viewState = 1

4
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/relation/bicyclerebatetobecheckedInfo.vue

@ -75,12 +75,12 @@ export default {
}
},
methods: {
showInfo(vehRebateSids) {
showInfo(sid, vehRebateSids) {
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
this.viewTitle = '单车返利核对审核申请明细'
req.vehRebateGroupDetails(vehRebateSids).then((resp) => {
req.vehRebateGroupDetails({ appleSid: sid, vehRebateSids: vehRebateSids }).then((resp) => {
if (resp.success) {
this.list = resp.data
}

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiDaiBanInfo.vue

@ -259,7 +259,7 @@ export default {
},
handleLook(row) {
this.viewState = 2
this.$refs['divInfo'].showInfo(row.vehRebateSids)
this.$refs['divInfo'].showInfo(this.formobj.sid, row.vehRebateSids)
},
resetState() {
this.viewState = 1

2
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/danchefanliheduiYiBanInfo.vue

@ -191,7 +191,7 @@ export default {
},
handleLook(row) {
this.viewState = 2
this.$refs['divInfo'].showInfo(row.vehRebateSids)
this.$refs['divInfo'].showInfo(this.formobj.sid, row.vehRebateSids)
},
resetState() {
this.viewState = 1

4
anrui-scm/anrui-scm-ui/src/views/workFlow/danchefanliheduiFlow/relation/bicyclerebatetobecheckedInfo.vue

@ -75,12 +75,12 @@ export default {
}
},
methods: {
showInfo(vehRebateSids) {
showInfo(sid, vehRebateSids) {
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})
this.viewTitle = '单车返利核对审核申请明细'
req.vehRebateGroupDetails(vehRebateSids).then((resp) => {
req.vehRebateGroupDetails({ appleSid: sid, vehRebateSids: vehRebateSids }).then((resp) => {
if (resp.success) {
this.list = resp.data
}

Loading…
Cancel
Save