Browse Source

完善单车返利预提

master
yunuo970428 4 months ago
parent
commit
d1e6d0d0eb
  1. 5
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingAdd.vue

5
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatewithholding/bicyclerebatewithholdingAdd.vue

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

Loading…
Cancel
Save