From bb604caa12580f599284a16e5fc5fe0d642f00e9 Mon Sep 17 00:00:00 2001
From: Z-WICK <2289431216@qq.com>
Date: Sun, 28 Dec 2025 19:03:48 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE?=
=?UTF-8?q?=E7=B1=BB=E5=9E=8B=E7=AD=9B=E9=80=89=E5=92=8C=E6=98=BE=E7=A4=BA?=
=?UTF-8?q?=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 添加项目类型下拉筛选框(套路/散打/器械/对练)
- 在表格中添加项目类型列
- 支持项目类型查询参数
---
src/views/martial/project/index.vue | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)
diff --git a/src/views/martial/project/index.vue b/src/views/martial/project/index.vue
index a2000f7..0bc1d71 100644
--- a/src/views/martial/project/index.vue
+++ b/src/views/martial/project/index.vue
@@ -35,7 +35,19 @@
style="width: 150px"
/>
-
+
+
+
+
+
+
+
+
{{ row.category || '-' }}
-
+
+
+ 套路
+ 散打
+ 器械
+ 对练
+ -
+
+
单人
@@ -498,6 +518,7 @@ const queryParams = reactive({
competitionId: '',
projectName: '',
category: '',
+ eventType: '',
type: ''
})
@@ -596,6 +617,7 @@ const fetchData = async () => {
competitionId: queryParams.competitionId || undefined,
projectName: queryParams.projectName || undefined,
category: queryParams.category || undefined,
+ eventType: queryParams.eventType || undefined,
type: queryParams.type || undefined
}
const res = await getProjectList(
@@ -629,6 +651,7 @@ const handleReset = () => {
competitionId: '',
projectName: '',
category: '',
+ eventType: '',
type: ''
})
fetchData()