Selaa lähdekoodia

feat(physical): 添加晋级功能和用户注销操作记录管理

- 在参赛者模块中增加晋级功能,支持将选手晋级到下一阶段
- 新增用户注销操作记录管理模块,包括查询、新增、修改、删除功能
- 添加解除注销操作功能,支持对注销用户进行恢复操作
- 在锦标赛页面增加赛事标识筛选和显示功能
- 优化参赛者表格界面,添加晋级操作按钮
- 增加用户注销操作记录的数据模型和接口定义
- 实现注销操作的完整业务流程和审核机制
fugui001 3 viikkoa sitten
vanhempi
commit
5c697d9a50

+ 11 - 0
src/api/system/physical/participants/index.ts

@@ -61,3 +61,14 @@ export const delParticipants = (id: string | number | Array<string | number>) =>
     method: 'delete'
   });
 };
+/**
+ * 晋级
+ * @param data
+ */
+export const promoteTournament = (data: ParticipantsForm) => {
+  return request({
+    url: '/physical/participants/promoteTournament',
+    method: 'post',
+    data: data
+  });
+};

+ 74 - 0
src/api/system/physical/unsubscribeLog/index.ts

@@ -0,0 +1,74 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { UnsubscribeLogVO, UnsubscribeLogForm, UnsubscribeLogQuery } from '@/api/system/physical/unsubscribeLog/types';
+
+/**
+ * 查询用户注销操作记录列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listUnsubscribeLog = (query?: UnsubscribeLogQuery): AxiosPromise<UnsubscribeLogVO[]> => {
+  return request({
+    url: '/physical/unsubscribeLog/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询用户注销操作记录详细
+ * @param id
+ */
+export const getUnsubscribeLog = (id: string | number): AxiosPromise<UnsubscribeLogVO> => {
+  return request({
+    url: '/physical/unsubscribeLog/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增用户注销操作记录
+ * @param data
+ */
+export const addUnsubscribeLog = (data: UnsubscribeLogForm) => {
+  return request({
+    url: '/physical/unsubscribeLog',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改用户注销操作记录
+ * @param data
+ */
+export const updateUnsubscribeLog = (data: UnsubscribeLogForm) => {
+  return request({
+    url: '/physical/unsubscribeLog',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除用户注销操作记录
+ * @param id
+ */
+export const delUnsubscribeLog = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/physical/unsubscribeLog/' + id,
+    method: 'delete'
+  });
+};
+/**
+ * 取消注销
+ * @param data
+ */
+export const removeUnsubscribe = (data: UnsubscribeLogForm) => {
+  return request({
+    url: '/physical/unsubscribeLog/removeUnsubscribe',
+    method: 'put',
+    data: data
+  });
+};

+ 202 - 0
src/api/system/physical/unsubscribeLog/types.ts

@@ -0,0 +1,202 @@
+export interface UnsubscribeLogVO {
+  /**
+   * 主键ID
+   */
+  id: string | number;
+
+  /**
+   * 用户ID
+   */
+  userId: string | number;
+
+  /**
+   * 用户昵称(或账号)
+   */
+  username: string;
+
+  /**
+   * 用户真实姓名(如实名认证信息)
+   */
+  realName: string;
+
+  /**
+   * 手机号(唯一标识,便于搜索)
+   */
+  mobile: string;
+
+  /**
+   * 操作类型:unsubscribe=注销, cancel_unsubscribe=解除注销
+   */
+  operationType: string;
+
+  /**
+   * 状态:pending=待处理, completed=已完成, cancelled=已取消
+   */
+  status: string;
+
+  /**
+   * 操作时间(精确到秒)
+   */
+  operateTime: string;
+
+  /**
+   * 注销原因(可选,如“个人原因”、“服务终止”等)
+   */
+  reason: string;
+
+  /**
+   * 操作人ID(系统自动=0,人工干预填管理员ID)
+   */
+  operatorId: string | number;
+
+  /**
+   * 操作人姓名(用于日志审计)
+   */
+  operatorName: string;
+
+  /**
+   *
+   */
+  createdAt: string;
+
+  /**
+   *
+   */
+  updatedAt: string;
+}
+
+export interface UnsubscribeLogForm extends BaseEntity {
+  /**
+   * 主键ID
+   */
+  id?: string | number;
+
+  /**
+   * 用户ID
+   */
+  userId?: string | number;
+
+  /**
+   * 用户昵称(或账号)
+   */
+  username?: string;
+
+  /**
+   * 用户真实姓名(如实名认证信息)
+   */
+  realName?: string;
+
+  /**
+   * 手机号(唯一标识,便于搜索)
+   */
+  mobile?: string;
+
+  /**
+   * 操作类型:unsubscribe=注销, cancel_unsubscribe=解除注销
+   */
+  operationType?: string;
+
+  /**
+   * 状态:pending=待处理, completed=已完成, cancelled=已取消
+   */
+  status?: string;
+
+  /**
+   * 操作时间(精确到秒)
+   */
+  operateTime?: string;
+
+  /**
+   * 注销原因(可选,如“个人原因”、“服务终止”等)
+   */
+  reason?: string;
+
+  /**
+   * 操作人ID(系统自动=0,人工干预填管理员ID)
+   */
+  operatorId?: string | number;
+
+  /**
+   * 操作人姓名(用于日志审计)
+   */
+  operatorName?: string;
+
+  /**
+   *
+   */
+  createdAt?: string;
+
+  /**
+   *
+   */
+  updatedAt?: string;
+
+}
+
+export interface UnsubscribeLogQuery extends PageQuery {
+
+  /**
+   * 用户ID
+   */
+  userId?: string | number;
+
+  /**
+   * 用户昵称(或账号)
+   */
+  username?: string;
+
+  /**
+   * 用户真实姓名(如实名认证信息)
+   */
+  realName?: string;
+
+  /**
+   * 手机号(唯一标识,便于搜索)
+   */
+  mobile?: string;
+
+  /**
+   * 操作类型:unsubscribe=注销, cancel_unsubscribe=解除注销
+   */
+  operationType?: string;
+
+  /**
+   * 状态:pending=待处理, completed=已完成, cancelled=已取消
+   */
+  status?: string;
+
+  /**
+   * 操作时间(精确到秒)
+   */
+  operateTime?: string;
+
+  /**
+   * 注销原因(可选,如“个人原因”、“服务终止”等)
+   */
+  reason?: string;
+
+  /**
+   * 操作人ID(系统自动=0,人工干预填管理员ID)
+   */
+  operatorId?: string | number;
+
+  /**
+   * 操作人姓名(用于日志审计)
+   */
+  operatorName?: string;
+
+  /**
+   *
+   */
+  createdAt?: string;
+
+  /**
+   *
+   */
+  updatedAt?: string;
+
+  /**
+   * 日期范围参数
+   */
+  params?: any;
+}

+ 1 - 1
src/views/system/business/tournaments/index.vue

@@ -188,7 +188,7 @@
             </span>
           </template>
         </el-table-column>
-
+        <el-table-column label="创建时间" align="center" prop="createdAt" width="150"> </el-table-column>
         <!--        <el-table-column label="是否删除" align="center">
           <template #default="scope">
             <span

+ 38 - 3
src/views/system/physical/participants/index.vue

@@ -57,7 +57,7 @@
     <el-card shadow="never">
       <template #header>
         <el-row :gutter="10" class="mb8">
-<!--          <el-col :span="1.5">
+          <!--          <el-col :span="1.5">
             <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['physical:participants:add']">新增</el-button>
           </el-col>
           <el-col :span="1.5">
@@ -90,6 +90,13 @@
         <el-table-column label="手机号" align="center" prop="phone" />
         <el-table-column label="报名条件" align="center" prop="tournamentCondition" />
         <el-table-column label="报名时间" align="center" prop="registrationTime" />
+        <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="getNextTournament(scope.row)">晋级</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" />
@@ -150,7 +157,14 @@
 </template>
 
 <script setup name="Participants" lang="ts">
-import { listParticipants, getParticipants, delParticipants, addParticipants, updateParticipants } from '@/api/system/physical/participants';
+import {
+  listParticipants,
+  getParticipants,
+  delParticipants,
+  addParticipants,
+  updateParticipants,
+  promoteTournament
+} from '@/api/system/physical/participants';
 import { ParticipantsVO, ParticipantsQuery, ParticipantsForm } from '@/api/system/physical/participants/types';
 import { parseTime } from '@/utils/dateUtils';
 const { proxy } = getCurrentInstance() as ComponentInternalInstance;
@@ -273,7 +287,28 @@ const handleUpdate = async (row?: ParticipantsVO) => {
   dialog.visible = true;
   dialog.title = '修改线下用户报名';
 };
-
+//晋级
+const getNextTournament = async (row?: ParticipantsVO) => {
+  try {
+    await proxy?.$modal.confirm('是否确认将该选手晋级?');
+    const _row = row || participantsList.value.find((item) => item.id === ids.value[0]);
+    if (!_row) {
+      proxy?.$modal.msgError('未找到对应的参赛记录');
+      return;
+    }
+    await promoteTournament({
+      id: _row.id,
+      tournamentId: _row.tournamentId,
+      playerId: _row.playerId
+    } as ParticipantsForm);
+    proxy?.$modal.msgSuccess('晋级成功');
+    await getList();
+  } catch (error) {
+    if (error !== 'cancel') {
+      proxy?.$modal.msgError('晋级失败:' + (error as Error).message);
+    }
+  }
+};
 /** 提交按钮 */
 const submitForm = () => {
   participantsFormRef.value?.validate(async (valid: boolean) => {

+ 15 - 1
src/views/system/physical/tournaments/index.vue

@@ -13,6 +13,12 @@
             <el-form-item label="开始时间" prop="startTime">
               <el-date-picker clearable v-model="queryParams.startTimeOne" type="date" value-format="YYYY-MM-DD" placeholder="请选择比赛开始时间" />
             </el-form-item>
+            <el-form-item label="赛事标识" prop="tournamentType">
+              <el-select v-model="queryParams.tournamentType" placeholder="请选择" clearable style="width: 150px">
+                <el-option label="普通赛" :value="0" />
+                <el-option label="晋级赛" :value="1" />
+              </el-select>
+            </el-form-item>
             <el-form-item>
               <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
               <el-button icon="Refresh" @click="resetQuery">重置</el-button>
@@ -118,6 +124,13 @@
           </template>
         </el-table-column>
         <el-table-column label="最小参赛人数" align="center" prop="minPlayers" />
+        <el-table-column label="赛事标识" align="center" prop="tournamentType">
+          <template #default="scope">
+            <span :style="{ color: scope.row.tournamentType === 1 ? 'red' : 'inherit' }">
+              {{ scope.row.tournamentType === 0 ? '普通赛' : '晋级赛' }}
+            </span>
+          </template>
+        </el-table-column>
         <el-table-column label="状态" align="center">
           <template #default="scope">
             <span
@@ -576,7 +589,8 @@ const data = reactive<PageData<TournamentsForm, TournamentsQuery>>({
     qualifierType: undefined,
     qualifierValue: undefined,
     params: {},
-    leagueTournamentId: undefined // ← 新增字段
+    leagueTournamentId: undefined, // ← 新增字段
+    startTimeOne: parseTime(new Date(), '{y}-{m}-{d}') // 默认今天
   },
   rules: {
     id: [{ required: true, message: '不能为空', trigger: 'blur' }],

+ 339 - 0
src/views/system/physical/unsubscribeLog/index.vue

@@ -0,0 +1,339 @@
+<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="用户ID" prop="userId">
+              <el-input v-model="queryParams.userId" placeholder="请输入用户ID" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item label="用户昵称" prop="username">
+              <el-input v-model="queryParams.username" placeholder="请输入用户昵称" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item label="真实姓名" prop="realName">
+              <el-input v-model="queryParams.realName" placeholder="请输入用户真实姓名" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item label="手机号" prop="mobile">
+              <el-input v-model="queryParams.mobile" 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="['physical:unsubscribeLog:add']">新增</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['physical:unsubscribeLog:edit']">修改</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['physical:unsubscribeLog:remove']">删除</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['physical:unsubscribeLog: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="unsubscribeLogList">
+        <el-table-column label="编号" align="center" prop="id" v-if="true" />
+        <el-table-column label="用户ID" align="center" prop="userId" />
+        <el-table-column label="用户昵称" align="center" prop="username" />
+        <el-table-column label="真实姓名" align="center" prop="realName" />
+        <el-table-column label="手机号" align="center" prop="mobile" />
+        <el-table-column label="操作类型" align="center" prop="operationType">
+          <template #default="scope">
+            {{ scope.row.operationType === 'unsubscribe' ? '注销' : '解除注销' }}
+          </template>
+        </el-table-column>
+        <el-table-column label="状态" align="center" prop="status">
+          <template #default="scope">
+            {{ scope.row.status === 'pending' ? '待处理' : scope.row.status === 'completed' ? '已完成' : '已取消' }}
+          </template>
+        </el-table-column>
+        <el-table-column label="操作时间" align="center" prop="operateTime" width="180">
+          <template #default="scope">
+            <span>{{ parseTime(scope.row.operateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+          </template>
+        </el-table-column>
+        <!--        <el-table-column label="注销原因" align="center" prop="reason" />
+        <el-table-column label="操作人ID" align="center" prop="operatorId" />-->
+        <el-table-column label="操作人" align="center" prop="operatorName" />
+        <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+          <template #default="scope">
+            <el-tooltip v-if="scope.row.operationType === 'unsubscribe'" content="解除注销" placement="top">
+              <el-button link type="primary" icon="Edit" @click="removeUnsubscribe2(scope.row)"
+                >解除注销</el-button
+              >
+            </el-tooltip>
+            <!--
+            <el-tooltip content="删除" placement="top">
+              <el-button
+                link
+                type="primary"
+                icon="Delete"
+                @click="handleDelete(scope.row)"
+                v-hasPermi="['physical:unsubscribeLog: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="unsubscribeLogFormRef" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="用户ID" prop="userId">
+          <el-input v-model="form.userId" placeholder="请输入用户ID" />
+        </el-form-item>
+        <el-form-item label="用户昵称" prop="username">
+          <el-input v-model="form.username" placeholder="请输入用户昵称" />
+        </el-form-item>
+        <el-form-item label="用户真实姓名" prop="realName">
+          <el-input v-model="form.realName" placeholder="请输入用户真实姓名" />
+        </el-form-item>
+        <el-form-item label="手机号" prop="mobile">
+          <el-input v-model="form.mobile" placeholder="请输入手机号" />
+        </el-form-item>
+        <el-form-item label="操作时间" prop="operateTime">
+          <el-date-picker clearable v-model="form.operateTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择操作时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="注销原因" prop="reason">
+          <el-input v-model="form.reason" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="操作人ID" prop="operatorId">
+          <el-input v-model="form.operatorId" placeholder="请输入操作人ID" />
+        </el-form-item>
+        <el-form-item label="操作人姓名" prop="operatorName">
+          <el-input v-model="form.operatorName" placeholder="请输入操作人姓名" />
+        </el-form-item>
+        <el-form-item label="" prop="createdAt">
+          <el-date-picker clearable v-model="form.createdAt" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="" prop="updatedAt">
+          <el-date-picker clearable v-model="form.updatedAt" type="datetime" value-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择">
+          </el-date-picker>
+        </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="UnsubscribeLog" lang="ts">
+import {
+  listUnsubscribeLog,
+  getUnsubscribeLog,
+  delUnsubscribeLog,
+  addUnsubscribeLog,
+  updateUnsubscribeLog, removeUnsubscribe
+} from '@/api/system/physical/unsubscribeLog';
+import { UnsubscribeLogVO, UnsubscribeLogQuery, UnsubscribeLogForm } from '@/api/system/physical/unsubscribeLog/types';
+
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const unsubscribeLogList = ref<UnsubscribeLogVO[]>([]);
+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 unsubscribeLogFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: UnsubscribeLogForm = {
+  id: undefined,
+  userId: undefined,
+  username: undefined,
+  realName: undefined,
+  mobile: undefined,
+  operationType: undefined,
+  status: undefined,
+  operateTime: undefined,
+  reason: undefined,
+  operatorId: undefined,
+  operatorName: undefined,
+  createdAt: undefined,
+  updatedAt: undefined
+};
+const data = reactive<PageData<UnsubscribeLogForm, UnsubscribeLogQuery>>({
+  form: { ...initFormData },
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    userId: undefined,
+    username: undefined,
+    realName: undefined,
+    mobile: undefined,
+    operationType: undefined,
+    status: undefined,
+    operateTime: undefined,
+    reason: undefined,
+    operatorId: undefined,
+    operatorName: undefined,
+    createdAt: undefined,
+    updatedAt: undefined,
+    params: {}
+  },
+  rules: {
+    id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }],
+    userId: [{ required: true, message: '用户ID不能为空', trigger: 'blur' }],
+    username: [{ required: true, message: '用户昵称不能为空', trigger: 'blur' }],
+    mobile: [{ required: true, message: '手机号不能为空', trigger: 'blur' }],
+    operationType: [{ required: true, message: '操作类型:unsubscribe=注销, cancel_unsubscribe=解除注销不能为空', trigger: 'change' }],
+    status: [{ required: true, message: '状态:pending=待处理, completed=已完成, cancelled=已取消不能为空', trigger: 'change' }],
+    operateTime: [{ required: true, message: '操作时间不能为空', trigger: 'blur' }]
+  }
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 查询用户注销操作记录列表 */
+const getList = async () => {
+  loading.value = true;
+  const res = await listUnsubscribeLog(queryParams.value);
+  unsubscribeLogList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  unsubscribeLogFormRef.value?.resetFields();
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 多选框选中数据 */
+const handleSelectionChange = (selection: UnsubscribeLogVO[]) => {
+  ids.value = selection.map((item) => item.id);
+  single.value = selection.length != 1;
+  multiple.value = !selection.length;
+};
+
+/** 新增按钮操作 */
+const handleAdd = () => {
+  reset();
+  dialog.visible = true;
+  dialog.title = '添加用户注销操作记录';
+};
+
+/** 修改按钮操作 */
+const handleUpdate = async (row?: UnsubscribeLogVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getUnsubscribeLog(_id);
+  Object.assign(form.value, res.data);
+  dialog.visible = true;
+  dialog.title = '修改用户注销操作记录';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  unsubscribeLogFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updateUnsubscribeLog(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addUnsubscribeLog(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: UnsubscribeLogVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除用户注销操作记录编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delUnsubscribeLog(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'system/unsubscribeLog/export',
+    {
+      ...queryParams.value
+    },
+    `unsubscribeLog_${new Date().getTime()}.xlsx`
+  );
+};
+/** 解除注销按钮操作 */
+const removeUnsubscribe2 = async (row?: UnsubscribeLogVO) => {
+  try {
+    await proxy?.$modal.confirm('是否确认对该用户进行解除注销操作?');
+    buttonLoading.value = true;
+    const data: UnsubscribeLogForm = {
+      id: row?.id,
+      userId: row?.userId,
+      username: row?.username,
+      realName: row?.realName,
+      mobile: row?.mobile,
+      operationType: 'cancel_unsubscribe',
+      status: 'completed'
+    };
+    await removeUnsubscribe(data);
+    proxy?.$modal.msgSuccess('解除注销成功');
+    await getList();
+  } catch (error) {
+    if (error !== 'cancel') {
+      console.error('解除注销失败:', error);
+      proxy?.$modal.msgError('解除注销失败:' + (error as Error).message);
+    }
+  } finally {
+    buttonLoading.value = false;
+  }
+};
+onMounted(() => {
+  getList();
+});
+</script>