existProduct-list.js 328 B

12345678910111213141516171819
  1. // components/existProduct-list/existProduct-list.js
  2. Component({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. cartList: [
  8. { id: 1, prodName: "商品A商品A商品A商品A商品A", price: 100, prodAttrName:'属性',checked: false, quantity: 1 }
  9. ],
  10. },
  11. methods:{
  12. },
  13. ready(){
  14. }
  15. })