16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
import {resourceAddDialog} from "../../components/resource/dialog-resource.js";
|
|
|
|
export function tabData() {
|
|
return {
|
|
title: '数据资源',
|
|
icon: 'fa fa-database',
|
|
body: [
|
|
{
|
|
type: 'action',
|
|
label: '',
|
|
icon: 'fa fa-plus',
|
|
...resourceAddDialog()
|
|
}
|
|
]
|
|
}
|
|
} |