|                                 |  | const mockCartData = {  totalPrice: 0.0,  selectedCount: 0,  items: [    {      id: 1,      name: '豆角炒鸡蛋',      price: 9.9,      image: '/static/image/红烧肉.webp',      quantity: 1,      sold: 235    },    {      id: 2,      name: '豆角炒鸡蛋',      price: 9.9,      image: '/static/image/红烧肉.webp',      quantity: 1,      sold: 235    },    {      id: 3,      name: '豆角炒鸡蛋',      price: 9.9,      image: '/static/image/红烧肉.webp',      quantity: 1,      sold: 235    },    {      id: 4,      name: '豆角炒鸡蛋',      price: 9.9,      image: '/static/image/红烧肉.webp',      quantity: 1,      sold: 235    }  ]} 
// 统一导出
module.exports = {    mockCartData}
 |