| 12345678910111213141516171819 |
- // components/existProduct-list/existProduct-list.js
- Component({
- /**
- * 页面的初始数据
- */
- data: {
- cartList: [
- { id: 1, prodName: "商品A商品A商品A商品A商品A", price: 100, prodAttrName:'属性',checked: false, quantity: 1 }
- ],
- },
- methods:{
- },
- ready(){
- }
- })
|