|
@@ -1,5 +1,5 @@
|
|
|
import React,{ useEffect } from 'react'
|
|
import React,{ useEffect } from 'react'
|
|
|
-import { Row, Col } from 'antd'
|
|
|
|
|
|
|
+import { Row, Col, Divider } from 'antd'
|
|
|
// import EditableForm from '@/components/EditableForm'
|
|
// import EditableForm from '@/components/EditableForm'
|
|
|
|
|
|
|
|
const LockForm = props => {
|
|
const LockForm = props => {
|
|
@@ -17,18 +17,25 @@ const LockForm = props => {
|
|
|
</Col>
|
|
</Col>
|
|
|
</Row>
|
|
</Row>
|
|
|
<Row>
|
|
<Row>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>锁号</Col>
|
|
<Col span={6}>锁号</Col>
|
|
|
<Col span={18}>{longle.keyNum}</Col>
|
|
<Col span={18}>{longle.keyNum}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>产品</Col>
|
|
<Col span={6}>产品</Col>
|
|
|
<Col span={18}>{longle.product}</Col>
|
|
<Col span={18}>{longle.product}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>期限</Col>
|
|
<Col span={6}>期限</Col>
|
|
|
<Col span={18}>{longle.allotedTime}</Col>
|
|
<Col span={18}>{longle.allotedTime}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>使用状态</Col>
|
|
<Col span={6}>使用状态</Col>
|
|
|
<Col span={18}>{longle.statusT}</Col>
|
|
<Col span={18}>{longle.statusT}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>负责人</Col>
|
|
<Col span={6}>负责人</Col>
|
|
|
<Col span={18}>{longle.responsible}</Col>
|
|
<Col span={18}>{longle.responsible}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>联系人</Col>
|
|
<Col span={6}>联系人</Col>
|
|
|
<Col span={18}>{longle.client}</Col>
|
|
<Col span={18}>{longle.client}</Col>
|
|
|
|
|
+ <Divider/>
|
|
|
<Col span={6}>公司</Col>
|
|
<Col span={6}>公司</Col>
|
|
|
<Col span={18} />
|
|
<Col span={18} />
|
|
|
</Row>
|
|
</Row>
|