敢为人鲜小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

38 lines
701 B

export const mockCartData = {
totalPrice: 0.0,
selectedCount: 0,
items: [
{
id: 1,
name: '豆角炒鸡蛋',
price: 9.9,
image: '/static/image/红烧肉.png',
quantity: 1,
sold: 235
},
{
id: 2,
name: '豆角炒鸡蛋',
price: 9.9,
image: '/static/image/红烧肉.png',
quantity: 1,
sold: 235
},
{
id: 3,
name: '豆角炒鸡蛋',
price: 9.9,
image: '/static/image/红烧肉.png',
quantity: 1,
sold: 235
},
{
id: 4,
name: '豆角炒鸡蛋',
price: 9.9,
image: '/static/image/红烧肉.png',
quantity: 1,
sold: 235
}
]
}