Browse Source

处理首页楼层报错问题

Administrator 7 năm trước cách đây
mục cha
commit
757dbc4299

+ 6 - 2
components/home/floor/FloorList.vue

@@ -49,8 +49,12 @@
           </li>
         </ul>
       </div>
-      <floor v-for="floor in expandList" :floor="floor" :isDefault="true"></floor>
-      <floor v-for="floor in floorsList" :floor="floor" :isDefault="false"></floor>
+      <template v-for="floor in expandList">
+        <floor :floor="floor" :isDefault="true"></floor>
+      </template>
+      <template v-for="floor in floorsList" >
+        <floor :floor="floor" :isDefault="false"></floor>
+      </template>
     </div>
     <say-price :current="currentSayPriceIndex"
                :purchase="purchaseManListData || {}"

+ 0 - 1
pages/mobile/center/user/applyPurchase.vue

@@ -77,7 +77,6 @@
     },
     computed: {
       compCollectList () {
-        console.log('123', this.$store.state.product.common.publishMobile)
         return this.$store.state.product.common.publishMobile
       },
       fetching () {