瀏覽代碼

🎈 perf(product): 清理热销商品页面

陈雪 1 月之前
父節點
當前提交
7643bb7016
共有 1 個文件被更改,包括 0 次插入35 次删除
  1. 0 35
      src/pages/index/hot-sell.vue

+ 0 - 35
src/pages/index/hot-sell.vue

@@ -1,35 +0,0 @@
-<route lang="json5">
-{
-  layout: 'default',
-  style: {
-    navigationBarTitleText: '%home.hotSelling%',
-  },
-}
-</route>
-
-<template>
-  <view class="hot-selling">
-    <HotTags v-bind:current-tag="currentTag"></HotTags>
-    <ProductList></ProductList>
-  </view>
-</template>
-
-<script lang="ts" setup>
-  import HotTags from '@/components/hot-tags/hot-tags.vue'
-  import ProductList from '@/components/product-list/product-list.vue'
-
-  const currentTag = ref(0)
-
-  //
-</script>
-
-<style lang="scss" scoped>
-  .hot-selling {
-    box-sizing: border-box;
-    display: flex;
-    flex-direction: column;
-    align-items: flex-start;
-    justify-content: center;
-    padding: 24rpx 0 44rpx 32rpx;
-  }
-</style>