Browse Source

完善单车返利核对

master
yunuo970428 9 months ago
parent
commit
c5146386ba
  1. 11
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/relation/yiheduidanchefanli.vue

11
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/relation/yiheduidanchefanli.vue

@ -231,10 +231,12 @@ export default {
}, },
handleSelectionChange(row) { handleSelectionChange(row) {
var dateTime = '' var dateTime = ''
let date = new Date() var nowDate = new Date()
let year = date.getFullYear() // var date = {
let month = date.getMonth() + 1 // year: nowDate.getFullYear(),
dateTime = year + '年' + month + '月' month: nowDate.getMonth() + 1
}
dateTime = date.year + '年' + (date.month >= 10 ? date.month : '0' + date.month) + '月'
const aa = [] const aa = []
const bb = [] const bb = []
row.forEach((element) => { row.forEach((element) => {
@ -265,7 +267,6 @@ export default {
}) })
this.sids = aa this.sids = aa
this.sids_list = bb this.sids_list = bb
console.log('sids', this.sids, bb, 99999999)
}, },
// //
getList() { getList() {

Loading…
Cancel
Save