Browse Source

完善专项、回款返利预提、核对--办理页面中标题包含的年月判断

master
yunuo970428 4 months ago
parent
commit
e9286b34ea
  1. 2
      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

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

@ -138,7 +138,7 @@ export default {
if (day > 6) {
month = date.getMonth() + 1 //
}
this.formobj.withApply = year + '年' + month + '月'
this.formobj.checkApply = year + '年' + month + '月'
},
init() {
fetchBySid(this.formobj.createOrgSid).then((res) => {

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

@ -113,8 +113,12 @@ export default {
//
newDate() {
let date = new Date()
let year = date.getFullYear() //
let month = date.getMonth() //
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
month = date.getMonth() + 1 //
}
this.formobj.checkApply = year + '年' + month + '月'
},
init() {

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

@ -119,8 +119,12 @@ export default {
//
newDate() {
let date = new Date()
let year = date.getFullYear() //
let month = date.getMonth() //
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
month = date.getMonth() + 1 //
}
this.formobj.collectionApply = year + '年' + month + '月'
},
showAdd(createOrgSid) {

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

@ -120,8 +120,12 @@ export default {
//
newDate() {
let date = new Date()
let year = date.getFullYear() //
let month = date.getMonth() //
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
month = date.getMonth() + 1 //
}
this.formobj.checkApply = year + '年' + month + '月'
},
init() {

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

@ -115,8 +115,12 @@ export default {
//
newDate() {
let date = new Date()
let year = date.getFullYear() //
let month = date.getMonth() //
let year = date.getFullYear() //
let month = date.getMonth() //
let day = date.getDate() //
if (day > 6) {
month = date.getMonth() + 1 //
}
this.formobj.withApply = year + '年' + month + '月'
},
showAdd(createOrgSid) {

Loading…
Cancel
Save