Browse Source

完善单车、专项、回款返利

master
yunuo970428 4 months ago
parent
commit
e338e8ffd0
  1. 8
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatecheckAdd.vue
  2. 8
      anrui-scm/anrui-scm-ui/src/views/manufacturerrebates/huikuanhedui/collectionrebatecheckedAdd.vue
  3. 8
      anrui-scm/anrui-scm-ui/src/views/manufacturerrebates/huikuanyuti/collectionrebatewithholdingAdd.vue
  4. 8
      anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckAdd.vue
  5. 8
      anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholdingAdd.vue

8
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatecheckAdd.vue

@ -151,8 +151,14 @@ export default {
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
if (month < 1 && day < 7) {
month = 12
} else if (month < 1 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day < 7) {
month = date.getMonth() //
}
this.formobj.checkApply = year + '年' + month + '月'
},

8
anrui-scm/anrui-scm-ui/src/views/manufacturerrebates/huikuanhedui/collectionrebatecheckedAdd.vue

@ -116,8 +116,14 @@ export default {
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
if (month < 1 && day < 7) {
month = 12
} else if (month < 1 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day < 7) {
month = date.getMonth() //
}
this.formobj.checkApply = year + '年' + month + '月'
},

8
anrui-scm/anrui-scm-ui/src/views/manufacturerrebates/huikuanyuti/collectionrebatewithholdingAdd.vue

@ -122,8 +122,14 @@ export default {
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
if (month < 1 && day < 7) {
month = 12
} else if (month < 1 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day < 7) {
month = date.getMonth() //
}
this.formobj.collectionApply = year + '年' + month + '月'
},

8
anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheckAdd.vue

@ -150,8 +150,14 @@ export default {
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
if (month < 1 && day < 7) {
month = 12
} else if (month < 1 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day < 7) {
month = date.getMonth() //
}
this.formobj.checkApply = year + '年' + month + '月'
},

8
anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholdingAdd.vue

@ -129,8 +129,14 @@ export default {
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
if (month < 1 && day < 7) {
month = 12
} else if (month < 1 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day > 6) {
month = date.getMonth() + 1 //
} else if (month > 0 && day < 7) {
month = date.getMonth() //
}
this.formobj.withApply = year + '年' + month + '月'
},

Loading…
Cancel
Save