冀北数据总览添加导出功能

This commit is contained in:
guanj
2026-02-06 14:45:15 +08:00
parent 15e3d4aec8
commit bfa061fb03
12 changed files with 2276 additions and 466 deletions

View File

@@ -157,7 +157,7 @@ const tableStore: any = new TableStore({
},
{
name: 'del',
text: '禁止接入',
text: '删除',
type: 'danger',
icon: 'el-icon-Delete',
render: 'confirmButton',
@@ -165,11 +165,11 @@ const tableStore: any = new TableStore({
confirmButtonText: '确认',
cancelButtonText: '取消',
confirmButtonType: 'danger',
title: '确定禁止接入'
title: '确定删除'
},
click: row => {
remove({ ids: row.id }).then(() => {
ElMessage.success('禁止接入成功')
ElMessage.success('删除成功')
tableStore.index()
})
}