ソースを参照

feat(business): 新增类目与标签管理功能

- 实现类目与标签的增删改查接口调用
- 开发类目管理页面,支持图标上传与预览
- 开发标签管理页面,支持基础信息维护
- 在赛事管理页面添加类目与标签跳转入口
- 定义类目与标签相关的数据类型与接口规范
fugui001 1 週間 前
コミット
5daaf28d6e

+ 63 - 0
src/api/system/business/tag/index.ts

@@ -0,0 +1,63 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { TagVO, TagForm, TagQuery } from '@/api/system/business/tag/types';
+
+/**
+ * 查询类目与标签合并列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listTag = (query?: TagQuery): AxiosPromise<TagVO[]> => {
+  return request({
+    url: '/business/tag/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询类目与标签合并详细
+ * @param id
+ */
+export const getTag = (id: string | number): AxiosPromise<TagVO> => {
+  return request({
+    url: '/business/tag/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增类目与标签合并
+ * @param data
+ */
+export const addTag = (data: TagForm) => {
+  return request({
+    url: '/business/tag',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改类目与标签合并
+ * @param data
+ */
+export const updateTag = (data: TagForm) => {
+  return request({
+    url: '/business/tag',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除类目与标签合并
+ * @param id
+ */
+export const delTag = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/business/tag/' + id,
+    method: 'delete'
+  });
+};

+ 110 - 0
src/api/system/business/tag/types.ts

@@ -0,0 +1,110 @@
+export interface TagVO {
+  /**
+   * 主键ID
+   */
+  id: string | number;
+
+  /**
+   * 名称,最多50字
+   */
+  name: string;
+
+  /**
+   * 类型:CATEGORY=类目,TAG=标签
+   */
+  type: string;
+
+  /**
+   * 图标URL,仅类目使用
+   */
+  iconUrl: string;
+
+  /**
+   * 排序权重,数值越小越靠前
+   */
+  sortWeight: number;
+
+  /**
+   * 应用状态:1=启用,0=禁用
+   */
+  status: number;
+
+  /**
+   * 软删除时间
+   */
+  deletedAt: string;
+}
+
+export interface TagForm extends BaseEntity {
+  /**
+   * 主键ID
+   */
+  id?: string | number;
+
+  /**
+   * 名称,最多50字
+   */
+  name?: string;
+
+  /**
+   * 类型:CATEGORY=类目,TAG=标签
+   */
+  type?: string;
+
+  /**
+   * 图标URL,仅类目使用
+   */
+  iconUrl?: string;
+
+  /**
+   * 排序权重,数值越小越靠前
+   */
+  sortWeight?: number;
+
+  /**
+   * 应用状态:1=启用,0=禁用
+   */
+  status?: number;
+
+  /**
+   * 软删除时间
+   */
+  deletedAt?: string;
+}
+
+export interface TagQuery extends PageQuery {
+  /**
+   * 名称,最多50字
+   */
+  name?: string;
+
+  /**
+   * 类型:CATEGORY=类目,TAG=标签
+   */
+  type?: string;
+
+  /**
+   * 图标URL,仅类目使用
+   */
+  iconUrl?: string;
+
+  /**
+   * 排序权重,数值越小越靠前
+   */
+  sortWeight?: number;
+
+  /**
+   * 应用状态:1=启用,0=禁用
+   */
+  status?: number;
+
+  /**
+   * 软删除时间
+   */
+  deletedAt?: string;
+
+  /**
+   * 日期范围参数
+   */
+  params?: any;
+}

+ 352 - 0
src/views/system/business/catory/index.vue

@@ -0,0 +1,352 @@
+<template>
+  <div class="p-2">
+    <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
+      <div v-show="showSearch" class="mb-[10px]">
+        <el-card shadow="hover">
+          <el-form ref="queryFormRef" :model="queryParams" :inline="true">
+            <el-form-item label="类目名称" prop="name">
+              <el-input v-model="queryParams.name" placeholder="请输入名称" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item>
+              <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
+              <el-button icon="Refresh" @click="resetQuery">重置</el-button>
+            </el-form-item>
+          </el-form>
+        </el-card>
+      </div>
+    </transition>
+
+    <el-card shadow="never">
+      <template #header>
+        <el-row :gutter="10" class="mb8">
+          <el-col :span="1.5">
+            <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['business:tag:add']">新增</el-button>
+          </el-col>
+          <!--          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['business:tag:edit']">修改</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['business:tag:remove']">删除</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['business:tag:export']">导出</el-button>
+          </el-col>-->
+          <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+        </el-row>
+      </template>
+
+      <el-table v-loading="loading" border :data="tagList">
+        <!--        <el-table-column type="selection" width="55" align="center" />-->
+        <el-table-column label="编号" align="center" prop="id" v-if="true" />
+        <el-table-column label="类目名称" align="center" prop="name" />
+        <el-table-column label="图标" align="center" prop="iconUrl" width="120">
+          <template #default="scope">
+            <img v-if="scope.row.iconUrl" :src="scope.row.iconUrl" alt="" style="width: 40px; height: 40px; object-fit: cover; border-radius: 4px" />
+            <span v-else>无</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="应用状态" align="center" prop="status">
+          <template #default="scope">
+            <el-tag :type="scope.row.status === 1 ? 'success' : 'info'">
+              {{ scope.row.status === 1 ? '启用' : '禁用' }}
+            </el-tag>
+          </template>
+        </el-table-column>
+        <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+          <template #default="scope">
+            <el-tooltip content="修改" placement="top">
+              <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:tag:edit']"></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['business:tag:remove']"></el-button>
+            </el-tooltip>
+          </template>
+        </el-table-column>
+      </el-table>
+
+      <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
+    </el-card>
+    <!-- 添加或修改类目与标签合并对话框 -->
+    <el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
+      <el-form ref="tagFormRef" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="类目名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入类目名称" />
+        </el-form-item>
+        <el-form-item label="图标" prop="iconUrl">
+          <div class="upload-container">
+            <el-upload
+              class="upload-icon"
+              action="#"
+              :on-change="handleIconChange"
+              :on-remove="handleIconRemove"
+              :file-list="fileList"
+              :auto-upload="false"
+              :limit="1"
+              accept="image/*"
+            >
+              <template #trigger>
+                <el-button type="primary">点击选择图标</el-button>
+              </template>
+
+              <!-- 预览图区域 -->
+              <template #default>
+                <div class="preview-area" @click="handlePreviewClick">
+                  <img
+                    v-if="iconPreviewUrl || form.iconUrl"
+                    :src="iconPreviewUrl || form.iconUrl"
+                    alt="预览图"
+                    style="max-width: 100px; max-height: 100px; margin-top: 10px; cursor: pointer"
+                  />
+                  <div v-else style="margin-top: 10px; color: #999">无</div>
+                </div>
+              </template>
+
+              <template #tip>
+                <div class="el-upload__tip">
+                  <span v-if="fileList.length > 0">当前已选文件:{{ fileList[0].name }}</span>
+                </div>
+              </template>
+            </el-upload>
+          </div>
+        </el-form-item>
+        <el-form-item label="排序" prop="name">
+          <el-input v-model="form.sortWeight" placeholder="请输入排序" />
+        </el-form-item>
+        <el-form-item label="应用状态" prop="status">
+          <el-radio-group v-model="form.status">
+            <el-radio :label="1">启用</el-radio>
+            <el-radio :label="0">禁用</el-radio>
+          </el-radio-group>
+        </el-form-item>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+          <el-button @click="cancel">取 消</el-button>
+        </div>
+      </template>
+    </el-dialog>
+    <!-- 图片预览弹窗 -->
+    <el-dialog v-model="dialogVisible" title="图片预览" width="50%">
+      <img :src="previewSrc || iconPreviewUrl || form.iconUrl" alt="预览图片" style="max-width: 100%; max-height: 80vh" />
+    </el-dialog>
+  </div>
+</template>
+
+<script setup name="Tag" lang="ts">
+import { listTag, getTag, delTag, addTag, updateTag } from '@/api/system/business/tag';
+import { TagVO, TagQuery, TagForm } from '@/api/system/business/tag/types';
+import { uploadTournament } from '@/api/system/business/tournaments';
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const tagList = ref<TagVO[]>([]);
+const buttonLoading = ref(false);
+const loading = ref(true);
+const showSearch = ref(true);
+const ids = ref<Array<string | number>>([]);
+const single = ref(true);
+const multiple = ref(true);
+const total = ref(0);
+
+const queryFormRef = ref<ElFormInstance>();
+const tagFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: TagForm = {
+  id: undefined,
+  name: undefined,
+  type: 'CATEGORY',
+  iconUrl: undefined,
+  sortWeight: undefined,
+  status: 1,
+  deletedAt: undefined
+};
+const data = reactive<PageData<TagForm, TagQuery>>({
+  form: { ...initFormData },
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    name: undefined,
+    type: 'CATEGORY',
+    iconUrl: undefined,
+    sortWeight: undefined,
+    status: undefined,
+    deletedAt: undefined,
+    params: {}
+  },
+  rules: {
+    id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
+    name: [{ required: true, message: '名称,最多50字不能为空', trigger: 'blur' }],
+    type: [{ required: true, message: '类型:CATEGORY=类目,TAG=标签不能为空', trigger: 'change' }],
+    sortWeight: [{ required: true, message: '排序权重,数值越小越靠前不能为空', trigger: 'blur' }],
+    status: [{ required: true, message: '应用状态:1=启用,0=禁用不能为空', trigger: 'change' }]
+  }
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 查询类目与标签合并列表 */
+const getList = async () => {
+  loading.value = true;
+  const res = await listTag(queryParams.value);
+  tagList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  tagFormRef.value?.resetFields();
+  // 清空上传相关状态
+  fileList.value = [];
+  iconPreviewUrl.value = '';
+  form.value.iconUrl = '';
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 新增按钮操作 */
+const handleAdd = () => {
+  reset();
+  dialog.visible = true;
+  dialog.title = '添加类目';
+  // 清空上传相关状态
+  fileList.value = [];
+  iconPreviewUrl.value = '';
+  form.value.iconUrl = '';
+};
+
+/** 修改按钮操作 */
+const handleUpdate = async (row?: TagVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getTag(_id);
+  Object.assign(form.value, res.data);
+  // 设置预览图
+  if (form.value.iconUrl) {
+    iconPreviewUrl.value = form.value.iconUrl;
+  }
+  dialog.visible = true;
+  dialog.title = '修改类目';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  tagFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updateTag(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addTag(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: TagVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delTag(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'business/tag/export',
+    {
+      ...queryParams.value
+    },
+    `tag_${new Date().getTime()}.xlsx`
+  );
+};
+
+onMounted(() => {
+  getList();
+});
+// 添加响应式变量(在其他ref声明附近添加)
+const iconPreviewUrl = ref('');
+const fileList = ref([]);
+const dialogVisible = ref(false);
+const previewSrc = ref('');
+
+/** 处理图标上传 */
+const handleIconChange = async (file) => {
+  const index = fileList.value.findIndex((f) => f.uid === file.uid);
+  fileList.value = [];
+
+  if (file.raw) {
+    iconPreviewUrl.value = URL.createObjectURL(file.raw);
+  }
+
+  if (index === -1) {
+    fileList.value.push(file);
+  }
+
+  try {
+    const rawFile = file.raw;
+    const res = await uploadTournament(rawFile);
+    if (res.code === 200) {
+      fileList.value[index] = {
+        ...file,
+        status: 'success',
+        response: res.data.url
+      };
+      form.value.iconUrl = fileList.value[index].response;
+      iconPreviewUrl.value = fileList.value[index].response;
+      proxy?.$modal.msgSuccess('上传成功');
+    } else {
+      throw new Error(res.msg);
+    }
+  } catch (error) {
+    fileList.value[index] = {
+      ...file,
+      status: 'fail',
+      error: '上传失败'
+    };
+    proxy?.$modal.msgError('上传失败,请重试');
+  }
+};
+
+/** 处理图标删除 */
+const handleIconRemove = (file, updatedFileList) => {
+  fileList.value = updatedFileList;
+  iconPreviewUrl.value = '';
+  form.value.iconUrl = '';
+};
+
+/** 点击预览图触发放大 */
+const handlePreviewClick = () => {
+  const currentSrc = iconPreviewUrl.value || form.value.iconUrl;
+  if (currentSrc) {
+    previewSrc.value = currentSrc;
+    dialogVisible.value = true;
+  }
+};
+</script>

+ 235 - 0
src/views/system/business/tag/index.vue

@@ -0,0 +1,235 @@
+<template>
+  <div class="p-2">
+    <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
+      <div v-show="showSearch" class="mb-[10px]">
+        <el-card shadow="hover">
+          <el-form ref="queryFormRef" :model="queryParams" :inline="true">
+            <el-form-item label="名称" prop="name">
+              <el-input v-model="queryParams.name" placeholder="请输入名称" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item>
+              <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
+              <el-button icon="Refresh" @click="resetQuery">重置</el-button>
+            </el-form-item>
+          </el-form>
+        </el-card>
+      </div>
+    </transition>
+
+    <el-card shadow="never">
+      <template #header>
+        <el-row :gutter="10" class="mb8">
+          <el-col :span="1.5">
+            <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['business:tag:add']">新增</el-button>
+          </el-col>
+          <!--          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['business:tag:edit']">修改</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['business:tag:remove']">删除</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['business:tag:export']">导出</el-button>
+          </el-col>-->
+          <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+        </el-row>
+      </template>
+
+      <el-table v-loading="loading" border :data="tagList">
+        <!--        <el-table-column type="selection" width="55" align="center" />-->
+        <el-table-column label="编号" align="center" prop="id" v-if="true" />
+        <el-table-column label="名称" align="center" prop="name" />
+        <el-table-column label="应用状态" align="center" prop="status">
+          <template #default="scope">
+            <el-tag :type="scope.row.status === 1 ? 'success' : 'info'">
+              {{ scope.row.status === 1 ? '启用' : '禁用' }}
+            </el-tag>
+          </template>
+        </el-table-column>
+        <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+          <template #default="scope">
+            <el-tooltip content="修改" placement="top">
+              <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:tag:edit']"></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['business:tag:remove']"></el-button>
+            </el-tooltip>
+          </template>
+        </el-table-column>
+      </el-table>
+
+      <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
+    </el-card>
+    <!-- 添加或修改类目与标签合并对话框 -->
+    <el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
+      <el-form ref="tagFormRef" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="标签名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入标签名称" />
+        </el-form-item>
+        <el-form-item label="排序" prop="name">
+          <el-input v-model="form.sortWeight" placeholder="请输入排序" />
+        </el-form-item>
+        <el-form-item label="应用状态" prop="status">
+          <el-radio-group v-model="form.status">
+            <el-radio :label="1">启用</el-radio>
+            <el-radio :label="0">禁用</el-radio>
+          </el-radio-group>
+        </el-form-item>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+          <el-button @click="cancel">取 消</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup name="Tag" lang="ts">
+import { listTag, getTag, delTag, addTag, updateTag } from '@/api/system/business/tag';
+import { TagVO, TagQuery, TagForm } from '@/api/system/business/tag/types';
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const tagList = ref<TagVO[]>([]);
+const buttonLoading = ref(false);
+const loading = ref(true);
+const showSearch = ref(true);
+const ids = ref<Array<string | number>>([]);
+const single = ref(true);
+const multiple = ref(true);
+const total = ref(0);
+
+const queryFormRef = ref<ElFormInstance>();
+const tagFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: TagForm = {
+  id: undefined,
+  name: undefined,
+  type: 'TAG',
+  iconUrl: undefined,
+  sortWeight: undefined,
+  status: 1,
+  deletedAt: undefined
+};
+const data = reactive<PageData<TagForm, TagQuery>>({
+  form: { ...initFormData },
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    name: undefined,
+    type: 'TAG',
+    iconUrl: undefined,
+    sortWeight: undefined,
+    status: undefined,
+    deletedAt: undefined,
+    params: {}
+  },
+  rules: {
+    id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
+    name: [{ required: true, message: '名称,最多50字不能为空', trigger: 'blur' }],
+    type: [{ required: true, message: '类型:CATEGORY=类目,TAG=标签不能为空', trigger: 'change' }],
+    sortWeight: [{ required: true, message: '排序权重,数值越小越靠前不能为空', trigger: 'blur' }],
+    status: [{ required: true, message: '应用状态:1=启用,0=禁用不能为空', trigger: 'change' }]
+  }
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 查询类目与标签合并列表 */
+const getList = async () => {
+  loading.value = true;
+  const res = await listTag(queryParams.value);
+  tagList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  tagFormRef.value?.resetFields();
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 新增按钮操作 */
+const handleAdd = () => {
+  reset();
+  dialog.visible = true;
+  dialog.title = '添加标签';
+};
+
+/** 修改按钮操作 */
+const handleUpdate = async (row?: TagVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getTag(_id);
+  Object.assign(form.value, res.data);
+  dialog.visible = true;
+  dialog.title = '修改标签';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  tagFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updateTag(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addTag(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: TagVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delTag(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'business/tag/export',
+    {
+      ...queryParams.value
+    },
+    `tag_${new Date().getTime()}.xlsx`
+  );
+};
+
+onMounted(() => {
+  getList();
+});
+
+
+</script>

+ 13 - 4
src/views/system/business/tournaments/index.vue

@@ -47,14 +47,23 @@
           <!--          <el-col :span="1.5">
             <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['business:tournaments:remove']"
               >删除</el-button
-            >
+            >service/catory
           </el-col>-->
           <el-col :span="1.5">
             <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['business:tournaments:export']">导出</el-button>
           </el-col>
-
-          <!-- 新增的 “盲注管理” 按钮 -->
           <el-col :span="1.5">
+            <el-button type="warning" plain icon="Operation">
+              <router-link to="/service/catory">比赛类目管理</router-link>
+            </el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Operation">
+              <router-link to="/service/tag">比赛标签管理</router-link>
+            </el-button>
+          </el-col>
+          <!-- 新增的 “盲注管理” 按钮 -->
+<!--          <el-col :span="1.5">
             <el-button type="warning" plain icon="Operation" v-hasPermi="['business:tournaments:manager']">
               <router-link to="/tournament/structures">盲注表管理</router-link>
             </el-button>
@@ -63,7 +72,7 @@
             <el-button type="success" plain icon="Operation" v-hasPermi="['business:tournaments:manager']">
               <router-link to="/tournament/config">自动比赛管理</router-link>
             </el-button>
-          </el-col>
+          </el-col>-->
           <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
         </el-row>
       </template>