Commit 7245db0b authored by 张烨's avatar 张烨

merge: fix

parents 09facdbf 53b6354a
This diff is collapsed.
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
min-width: 1030px; min-width: 1030px;
} }
.chart{ .chart{
padding: 16px; padding: 10px;
background: white; background: white;
} }
.table{ .table{
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
color:rgba(0,0,0,0.85); color:rgba(0,0,0,0.85);
} }
.ant-table-content{ .ant-table-content{
height:calc(100vh - 500px); height:calc(100vh - 520px);
border-right: white; border-right: white;
overflow: auto !important; overflow: auto !important;
} }
......
This diff is collapsed.
...@@ -240,7 +240,9 @@ const WebDic = () => { ...@@ -240,7 +240,9 @@ const WebDic = () => {
.then(res => { .then(res => {
if (res.success) { if (res.success) {
getData(select.parentID); getData(select.parentID);
setSubData([]); if (select.parentID === '-1') {
setSubData([]);
}
notification.success({ notification.success({
message: '删除成功', message: '删除成功',
}); });
......
...@@ -14,7 +14,7 @@ const dictionary = () => { ...@@ -14,7 +14,7 @@ const dictionary = () => {
<TabPane tab="通用数据字典" key="1"> <TabPane tab="通用数据字典" key="1">
<WebDic /> <WebDic />
</TabPane> </TabPane>
<TabPane tab="app数据字典" key="2" type="card"> <TabPane tab="App数据字典" key="2" type="card">
<AppDic /> <AppDic />
</TabPane> </TabPane>
</Tabs> </Tabs>
......
...@@ -76,12 +76,6 @@ export default { ...@@ -76,12 +76,6 @@ export default {
component: BlankLayout, component: BlankLayout,
authority: adminAuthority, authority: adminAuthority,
routes: [ routes: [
// {
// path: '/dbm/solution',
// name: '数据库解决方案',
// authority: superAuthority,
// component: CurrentSolution,
// },
{ {
path: '/dbm/dbInit', path: '/dbm/dbInit',
name: '数据库连接', name: '数据库连接',
...@@ -156,6 +150,28 @@ export default { ...@@ -156,6 +150,28 @@ export default {
}, },
], ],
}, },
{
path: '/platformCenter/iot',
name: '物联网平台',
component: BaseFrameContainer,
tabs: [
{
tabName: '模型类型',
url:
'/web4/?widget=configuration/ConfigurationsOperationV1/ModelTypeManage/ModelTypeManage|hideMap=true',
},
{
tabName: '模型文件',
url:
'/web4/?widget=configuration/ConfigurationsOperationV1/ModelFileManage/ModelFileManage|hideMap=true',
},
{
tabName: '画板管理',
url:
'/web4/?widget=configuration/ConfigurationsOperationV1/DrawBoardManage/DrawBoardManage|hideMap=true',
},
],
},
// { // {
// path: '/platformCenter/order', // path: '/platformCenter/order',
// name: '工单平台', // name: '工单平台',
...@@ -194,7 +210,7 @@ export default { ...@@ -194,7 +210,7 @@ export default {
}, },
{ {
path: '/platformCenter/dictionary', path: '/platformCenter/dictionary',
name: '数据字典', name: '数据中心',
component: Dictionary, component: Dictionary,
}, },
], ],
...@@ -208,7 +224,7 @@ export default { ...@@ -208,7 +224,7 @@ export default {
routes: [ routes: [
{ {
path: '/productCenter/web', path: '/productCenter/web',
name: 'web配置', name: 'Web配置',
component: WebConfigPage, component: WebConfigPage,
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment