DaMowang 3 vuotta sitten
vanhempi
sitoutus
8b49027b91
2 muutettua tiedostoa jossa 4 lisäystä ja 52 poistoa
  1. 3 51
      src/components/goodsList.vue
  2. 1 1
      src/pages/index/index.vue

+ 3 - 51
src/components/goodsList.vue

@@ -37,68 +37,20 @@ export default {
   },
   methods: {
     loadData(action = "add") {
-      // const data = [{
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product1.jpg',
-      //         title: 'Apple iPhone X 256GB 深空灰色 移动联通电信4G手机',
-      //         originalPrice: 9999,
-      //         favourPrice: 8888,
-      //         tip: '自营'
-      //     },
-      //     {
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product2.jpg',
-      //         title: 'Apple iPad 平板电脑 2018年新款9.7英寸',
-      //         originalPrice: 3499,
-      //         favourPrice: 3399,
-      //         tip: '优惠'
-      //     },
-      //     {
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product3.jpg',
-      //         title: 'Apple MacBook Pro 13.3英寸笔记本电脑(2017款Core i5处理器/8GB内存/256GB硬盘 MupxT2CH/A)',
-      //         originalPrice: 12999,
-      //         favourPrice: 10688,
-      //         tip: '秒杀'
-      //     },
-      //     {
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product4.jpg',
-      //         title: 'Kindle Paperwhite电纸书阅读器 电子书墨水屏 6英寸wifi 黑色',
-      //         originalPrice: 999,
-      //         favourPrice: 958,
-      //         tip: '秒杀'
-      //     },
-      //     {
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product5.jpg',
-      //         title: '微软(Microsoft)新Surface Pro 二合一平板电脑笔记本 12.3英寸(i5 8G内存 256G存储)',
-      //         originalPrice: 8888,
-      //         favourPrice: 8288,
-      //         tip: '优惠'
-      //     },
-      //     {
-      //         image: 'https://img-cdn-qiniu.dcloud.net.cn/uploads/example/product6.jpg',
-      //         title: 'Apple Watch Series 3智能手表(GPS款 42毫米 深空灰色铝金属表壳 黑色运动型表带 MQL12CH/A)',
-      //         originalPrice: 2899,
-      //         favourPrice: 2799,
-      //         tip: '自营'
-      //     }
-      // ];
       post("ShuZiTeaYW/shop/getGoodsLikeByUserId").then((res) => {
         if (res.status == 200) {
           this.productList = res.goods;
         }
       });
-
       if (action === "refresh") {
         this.productList = [];
       }
-
-      // data.forEach(item => {
-      //     this.productList.push(item);
-      // });
     },
   },
 };
 </script>
 
-<style>
+<style lang="scss" scoped>
 .product-list {
   padding: 0 20rpx;
   display: flex;
@@ -115,11 +67,11 @@ export default {
   flex-direction: column;
 }
 
-.image-view {
+/* .image-view { */
   /* height: 330upx; */
   /* width: 330upx;
         margin: 12upx 0; */
-}
+/* } */
 
 .product-image {
   /* height: 330upx;

+ 1 - 1
src/pages/index/index.vue

@@ -1,6 +1,6 @@
 <template>
 	<div class='Appindex'>
-		<goodslist/>
+		<goodslist :long="1"/>
 	</div>
 </template>