mirror of https://github.com/openspug/spug
fix issue
parent
5234eb1c37
commit
989692a56e
|
@ -28,7 +28,6 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑应用' : '新建应用'}
|
title={store.record.id ? '编辑应用' : '新建应用'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
|
@ -28,7 +28,6 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑环境' : '新建环境'}
|
title={store.record.id ? '编辑环境' : '新建环境'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
|
@ -28,7 +28,6 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑服务' : '新建服务'}
|
title={store.record.id ? '编辑服务' : '新建服务'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
|
@ -58,7 +58,6 @@ class ComTable extends React.Component {
|
||||||
showTotal: total => `共 ${total} 条`,
|
showTotal: total => `共 ${total} 条`,
|
||||||
pageSizeOptions: ['10', '20', '50', '100']
|
pageSizeOptions: ['10', '20', '50', '100']
|
||||||
}}>
|
}}>
|
||||||
<Table.Column title="序号" key="series" render={(_, __, index) => index + 1}/>
|
|
||||||
<Table.Column title="服务名称" dataIndex="name"/>
|
<Table.Column title="服务名称" dataIndex="name"/>
|
||||||
<Table.Column title="标识符" dataIndex="key"/>
|
<Table.Column title="标识符" dataIndex="key"/>
|
||||||
<Table.Column ellipsis title="描述信息" dataIndex="desc"/>
|
<Table.Column ellipsis title="描述信息" dataIndex="desc"/>
|
||||||
|
|
|
@ -28,7 +28,6 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑应用' : '新建应用'}
|
title={store.record.id ? '编辑应用' : '新建应用'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
width={700}
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑账户' : '新建账户'}
|
title={store.record.id ? '编辑账户' : '新建账户'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
|
@ -28,7 +28,6 @@ export default observer(function () {
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible
|
visible
|
||||||
width={800}
|
|
||||||
maskClosable={false}
|
maskClosable={false}
|
||||||
title={store.record.id ? '编辑角色' : '新建角色'}
|
title={store.record.id ? '编辑角色' : '新建角色'}
|
||||||
onCancel={() => store.formVisible = false}
|
onCancel={() => store.formVisible = false}
|
||||||
|
|
Loading…
Reference in New Issue