Commit 19b4f99a by zhaochengxiang

模型安全等级

parent 1acdda1c
...@@ -104,18 +104,24 @@ const FC = (props) => { ...@@ -104,18 +104,24 @@ const FC = (props) => {
<Form form={form} {...formItemLayout} onValuesChange={onValuesChange}> <Form form={form} {...formItemLayout} onValuesChange={onValuesChange}>
<Row gutter={10}> <Row gutter={10}>
<Col xs={24} sm={24} lg={12} xl={8}> <Col xs={24} sm={24} lg={12} xl={8}>
<Form.Item label='技术负责人' name='technicalManagerUser'> <Form.Item label='技术负责人' name='technicalManagerUser' style={{ marginBottom: 15 }}>
<UsersItem /> <UsersItem />
</Form.Item> </Form.Item>
</Col> </Col>
<Col xs={24} sm={24} lg={12} xl={8}> <Col xs={24} sm={24} lg={12} xl={8}>
<Form.Item label='业务负责人' name='businessManagerUser'> <Form.Item label='业务负责人' name='businessManagerUser' style={{ marginBottom: 15 }}>
<UsersItem /> <UsersItem />
</Form.Item> </Form.Item>
</Col> </Col>
<Col xs={24} sm={24} lg={12} xl={8}> <Col xs={24} sm={24} lg={12} xl={8}>
<Form.Item label='安全等级' style={{ marginBottom: 15 }}>
<span>{modelerData?.aggregateSecurityScale?.cnName}</span>
</Form.Item>
</Col>
<Col xs={24} sm={24} lg={12} xl={8}>
<Form.Item <Form.Item
label="维护历史" label="维护历史"
style={{ marginBottom: 0 }}
> >
<Input.TextArea rows={3} disabled={true} value={maintenanceDescription} /> <Input.TextArea rows={3} disabled={true} value={maintenanceDescription} />
</Form.Item> </Form.Item>
...@@ -123,13 +129,16 @@ const FC = (props) => { ...@@ -123,13 +129,16 @@ const FC = (props) => {
</Row> </Row>
</Form> </Form>
) : ( ) : (
<Descriptions column={3}> <Descriptions column={3} size='small'>
<Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >技术负责人</div>}> <Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >技术负责人</div>}>
{`${modelerData?.technicalManagerUser?.dname}(${modelerData?.technicalManagerUser?.name})`} {`${modelerData?.technicalManagerUser?.dname}(${modelerData?.technicalManagerUser?.name})`}
</Descriptions.Item> </Descriptions.Item>
<Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >业务负责人</div>}> <Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >业务负责人</div>}>
{`${modelerData?.businessManagerUser?.dname}(${modelerData?.businessManagerUser?.name})`} {`${modelerData?.businessManagerUser?.dname}(${modelerData?.businessManagerUser?.name})`}
</Descriptions.Item> </Descriptions.Item>
<Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >安全等级</div>}>
{modelerData?.aggregateSecurityScale?.cnName}
</Descriptions.Item>
<Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >维护历史</div>} > <Descriptions.Item label={<div style={{ textAlign: 'right', width: 106 }} >维护历史</div>} >
<div style={{ maxHeight: 70, overflow: 'auto' }}> <div style={{ maxHeight: 70, overflow: 'auto' }}>
{ {
......
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