代码提交

This commit is contained in:
黄少君
2023-11-22 18:55:55 +08:00
parent c3e62f8922
commit 68b3f2dcc3
46 changed files with 1021 additions and 763 deletions

View File

@ -0,0 +1,30 @@
/**
* @name: index.data
* @author: hsj
* @date: 2023-11-21 14:15
* @descriptionindex.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: '¥'
}
]