1
This commit is contained in:
@@ -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}`
|
||||
}
|
||||
|
||||
// 按顺序拼接:发过运营、需要重发运营、已经重发、需要二次重发运营、二次重发、单号、型号、返现金额(团长)、晒单金额(主图没标)、总共返现、确认收货日期、认领人、下单日期
|
||||
|
||||
Reference in New Issue
Block a user