16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
import {wareAddDialog} from "../../components/ware/dialog-ware.js";
|
|
|
|
export function tabMarket() {
|
|
return {
|
|
title: '数据市场',
|
|
icon: 'fa fa-store',
|
|
body: [
|
|
{
|
|
type: 'action',
|
|
label: '',
|
|
icon: 'fa fa-plus',
|
|
...wareAddDialog()
|
|
},
|
|
]
|
|
}
|
|
} |