31 lines
553 B
JavaScript
31 lines
553 B
JavaScript
/**
|
||
* @name: index.data
|
||
* @author: hsj
|
||
* @date: 2023-11-21 14:15
|
||
* @description:index.data
|
||
* @update: 2023-11-06 14:15
|
||
* */
|
||
// 购物车统计信息
|
||
export const settleFields = [
|
||
{
|
||
label: '商品总价',
|
||
field: 'truePrice',
|
||
prefix: '¥'
|
||
},
|
||
{
|
||
label: '优惠',
|
||
field: 'couponPrice',
|
||
prefix: '-¥'
|
||
},
|
||
{
|
||
label: '运费',
|
||
field: 'postagePrice',
|
||
prefix: '¥'
|
||
},
|
||
{
|
||
label: '总计',
|
||
field: 'totalPrice',
|
||
prefix: '¥'
|
||
}
|
||
]
|