Files

36 lines
638 B
JavaScript
Raw Normal View History

2023-11-22 18:55:55 +08:00
/**
* @name: index.data
* @author: hsj
* @date: 2023-11-21 14:15
* @descriptionindex.data
* @update: 2023-11-06 14:15
* */
// 购物车统计信息
export const settleFields = [
{
label: '支付总价',
2023-11-22 18:55:55 +08:00
field: 'truePrice',
prefix: '¥'
},
{
label: '优惠',
field: 'couponPrice',
prefix: '-¥'
},
{
label: '运费',
field: 'postagePrice',
prefix: '¥'
},
{
label: '积分',
field: 'integral',
prefix: '-'
},
2023-11-22 18:55:55 +08:00
{
label: '总计',
field: 'totalPrice',
prefix: '¥'
}
]