feat(admin): 优化字典管理界面并更新构建报告
- 优化字典列表页面交互与展示逻辑 - 改进字典类型模态框组件功能 - 更新构建分析报告数据
This commit is contained in:
File diff suppressed because one or more lines are too long
@ -57,6 +57,14 @@ async function fetchData() {
|
||||
|
||||
// 列定义
|
||||
const columns: DataTableColumns<Api.Dictionary.DictionaryItem> = [
|
||||
{
|
||||
title: '序号',
|
||||
key: 'index',
|
||||
width: 80,
|
||||
render(_, index) {
|
||||
return index + 1
|
||||
},
|
||||
},
|
||||
{ title: 'ID', key: 'Id' },
|
||||
{
|
||||
title: '字典键 (Key)',
|
||||
|
||||
@ -59,6 +59,14 @@ watch(() => props.visible, (val) => {
|
||||
})
|
||||
|
||||
const columns: DataTableColumns<any> = [
|
||||
{
|
||||
title: '序号',
|
||||
key: 'index',
|
||||
width: 80,
|
||||
render(_, index) {
|
||||
return index + 1
|
||||
},
|
||||
},
|
||||
{ title: 'ID', key: 'ID', width: 80 },
|
||||
{ title: '键 (Key)', key: 'UI_Key' },
|
||||
{ title: '值 (Value)', key: 'UI_Value', width: 100 },
|
||||
|
||||
Reference in New Issue
Block a user