1
0

feat(ware): 上架数据产品功能

- 新增数据产品上架相关的对话框组件和页面功能
- 实现数据产品的添加、编辑和详情查看功能
- 添加数据产品相关的实体类、控制器、服务类和仓库接口
This commit is contained in:
2024-12-13 18:18:49 +08:00
parent 8202a27f55
commit dbdf9c59bb
8 changed files with 345 additions and 2 deletions

View File

@@ -1,9 +1,16 @@
import {wareAddDialog} from "../../components/ware/dialog-ware.js";
export function tabMarket() {
return {
title: '数据市场',
icon: 'fa fa-store',
body: [
'hello world'
{
type: 'action',
label: '',
icon: 'fa fa-plus',
...wareAddDialog()
},
]
}
}