This commit is contained in:
van
2026-03-23 17:04:47 +08:00
parent 1ddf792076
commit e63ab42c41
11 changed files with 883 additions and 1214 deletions

View File

@@ -2276,14 +2276,14 @@ export default {
// 认领人buyer
const buyer = row.buyer || ''
// 下单日期orderTime格式yyyyMMdd
// 下单日期orderTime格式 yyyy/MM/dd(如 2020/03/03
let orderDateStr = ''
if (row.orderTime) {
const orderDate = new Date(row.orderTime)
const year = orderDate.getFullYear()
const month = String(orderDate.getMonth() + 1).padStart(2, '0')
const day = String(orderDate.getDate()).padStart(2, '0')
orderDateStr = `${year}${month}${day}`
orderDateStr = `${year}/${month}/${day}`
}
// 按顺序拼接:发过运营、需要重发运营、已经重发、需要二次重发运营、二次重发、单号、型号、返现金额(团长)、晒单金额(主图没标)、总共返现、确认收货日期、认领人、下单日期