diff --git a/src/pages/category/category.vue b/src/pages/category/category.vue
index 9e22b13..eec36d5 100644
--- a/src/pages/category/category.vue
+++ b/src/pages/category/category.vue
@@ -1,7 +1,264 @@
- test
+
+
+
+
+
+ 女靴
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+ {{ goods.name }}
+
+ ¥
+ {{ goods.price }}
+
+
+
+
+
+
+
-
+
+
+
diff --git a/src/pages/category/components/PageSkeleton.vue b/src/pages/category/components/PageSkeleton.vue
new file mode 100644
index 0000000..70ec50b
--- /dev/null
+++ b/src/pages/category/components/PageSkeleton.vue
@@ -0,0 +1,417 @@
+
+
+
+
+
+ 女靴
+
+
+
+
+
+ 居家
+
+
+ 美食
+
+
+ 服饰
+
+
+ 母婴
+
+
+ 个护
+
+
+ 严选
+
+
+ 数码
+
+
+ 运动
+
+
+ 杂项
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 居家生活用品
+
+
+
+
+ 钻石陶瓷涂层多用锅18cm 小奶锅
+
+ ¥
+ 149.00
+
+
+
+
+ 极光限定 珠光蓝珐琅锅
+
+ ¥
+ 199.00
+
+
+
+
+
+
+ 收纳
+
+
+
+
+ 给衣柜减减肥,真空防潮压缩袋
+
+ ¥
+ 79.00
+
+
+
+
+ 爆款明星好物,抽屉式透明储物柜
+
+ ¥
+ 129.00
+
+
+
+
+ 衣柜省空间神器,棉麻涤·收纳挂袋
+
+ ¥
+ 55.00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/services/category.ts b/src/services/category.ts
new file mode 100644
index 0000000..6e706a8
--- /dev/null
+++ b/src/services/category.ts
@@ -0,0 +1,13 @@
+import type { CategoryTopItem } from '@/types/category'
+import { http } from '@/utils/http'
+
+/**
+ * 获取分类数据
+ * @returns 分类数据
+ */
+export const getCategoryTopAPI = () => {
+ return http({
+ url: '/category/top',
+ method: 'GET',
+ })
+}