2023-11-14 17:21:03 +08:00
|
|
|
|
/**
|
|
|
|
|
* @name: index.data
|
|
|
|
|
* @author: kahu4
|
|
|
|
|
* @date: 2023-11-06 14:15
|
|
|
|
|
* @description:index.data
|
|
|
|
|
* @update: 2023-11-06 14:15
|
|
|
|
|
* */
|
|
|
|
|
// 购物车统计信息
|
|
|
|
|
export const settleFields = [
|
|
|
|
|
{
|
|
|
|
|
label: '商品总价',
|
|
|
|
|
field: 'costPrice',
|
|
|
|
|
prefix: '¥'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '优惠',
|
|
|
|
|
field: 'couponPrice',
|
|
|
|
|
prefix: '-¥'
|
|
|
|
|
},
|
2023-11-17 20:55:32 +08:00
|
|
|
|
{
|
|
|
|
|
label: '运费',
|
|
|
|
|
field: 'storePostage',
|
|
|
|
|
prefix: '¥'
|
|
|
|
|
},
|
2023-11-14 17:21:03 +08:00
|
|
|
|
{
|
|
|
|
|
label: '总计',
|
|
|
|
|
field: 'totalPrice',
|
|
|
|
|
prefix: '¥'
|
|
|
|
|
}
|
|
|
|
|
]
|