- 新增产品API模块 (src/api/products.ts) - 完善产品列表页面 (src/views/Products.vue) - 添加产品类型定义 (src/types/api.ts) 功能包括: - 产品列表展示 - 搜索过滤功能 - 新建产品对话框 - 产品状态管理 (发布/冻结/解冻/退役) - 分页功能
14 lines
358 B
HTML
14 lines
358 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>frontend</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|