From 31dcd2ac79af82cc149f34fbfb6ffd3d4a91a3cd Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Tue, 25 Feb 2025 13:46:58 +0800
Subject: [PATCH] 修改名称
---
src/views/system/department/index.vue | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/views/system/department/index.vue b/src/views/system/department/index.vue
index 07c711a..6627085 100644
--- a/src/views/system/department/index.vue
+++ b/src/views/system/department/index.vue
@@ -17,8 +17,10 @@
</el-button>
</div>
<el-table :data="tableData.data" style="width: 100%" row-key="depId" :tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
- <el-table-column prop="depName" label="部门名称" show-overflow-tooltip> </el-table-column>
- <el-table-column prop="depInfo" label="部门描述" show-overflow-tooltip></el-table-column>
+ <el-table-column prop="depName" label="部门名称" show-overflow-tooltip/>
+ <el-table-column prop="depLevelDesc" label="部门等级" show-overflow-tooltip/>
+ <el-table-column prop="depCode" label="部门编号" show-overflow-tooltip/>
+ <el-table-column prop="depInfo" label="部门描述" show-overflow-tooltip/>
<el-table-column label="操作" show-overflow-tooltip width="140">
<template #default="scope">
<el-button size="small" text type="primary" @click="onOpenDeptDialog('新增', '')">新增</el-button>
@@ -87,7 +89,7 @@
};
// 删除当前行
const onTabelRowDel = (row: TableDataRow) => {
- ElMessageBox.confirm(`此操作将永久删除部门:${row.depId}, 是否继续?`, '提示', {
+ ElMessageBox.confirm(`此操作将永久删除部门:${row.depName}, 是否继续?`, '提示', {
confirmButtonText: '删除',
cancelButtonText: '取消',
type: 'warning'
--
Gitblit v1.9.2