1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <template>
| <doc-alert title="【统计】会员、商品、交易统计" url="https://doc.iocoder.cn/mall/statistics/" />
|
| <!-- 商品概览 -->
| <ProductSummary />
| <!-- 商品排行 -->
| <ProductRank class="mt-16px" />
| </template>
| <script lang="ts" setup>
| import ProductSummary from './components/ProductSummary.vue'
| import ProductRank from './components/ProductRank.vue'
|
| /** 商品统计 */
| defineOptions({ name: 'ProductStatistics' })
| </script>
| <style lang="scss" scoped></style>
|
|