Browse Source

Merge remote-tracking branch 'origin/release-201819-wangcz' into release-201819-wangcz

shenjj 7 years ago
parent
commit
c567167569
2 changed files with 6 additions and 3 deletions
  1. 6 2
      components/home/floor/FloorList.vue
  2. 0 1
      pages/mobile/center/user/applyPurchase.vue

+ 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 () {