| | |
| | | |
| | | import React from 'react'; |
| | | |
| | | import { Row, Col, Input, DatePicker, Button, Modal, Upload, Icon, message, Divider, TimePicker, Badge, Select, Popconfirm, Spin } from 'antd'; |
| | | import { Row, Col, Input, DatePicker, Button, Modal, Upload, Icon, message, Divider, Breadcrumb, Badge, Select, Popconfirm, Spin } from 'antd'; |
| | | const { TextArea } = Input; |
| | | import HeadView from '../view/HeadView'; |
| | | import BusDetailView from '../view/BusDetailView'; |
| | |
| | | ...res, |
| | | }, |
| | | loading: false, |
| | | fileList: res.list ? res.list.map((item, index) => ({ uid: index, id: item.id, name: item.name, status: 'done', url: domain + `/api/v1/attachment/download/${item.id}?online=false` })) : [] |
| | | fileList: res.list ? res.list.map((item, index) => ({ uid: uid, id: item.uid, name: item.name, status: 'done', url: domain + `/api/v1/attachment/download/${item.uid}?online=false` })) : [] |
| | | }); |
| | | |
| | | }) |
| | |
| | | showRemoveIcon: false |
| | | }, |
| | | onDownload: (file) => { |
| | | Fetch.attachmentDownload(file.id) |
| | | Fetch.attachmentDownload(file.uid) |
| | | .then(res => { |
| | | message.success("下载成功!"); |
| | | }); |
| | |
| | | <div className="app-page"> |
| | | <Spin spinning={loading}> |
| | | <HeadView history={this.props.history} /> |
| | | <Breadcrumb style={{ padding: '20px' }}> |
| | | <Breadcrumb.Item><a href="index.html#/entry/applyFor">检察院审核</a></Breadcrumb.Item> |
| | | <Breadcrumb.Item>检察院审核详情</Breadcrumb.Item> |
| | | </Breadcrumb> |
| | | <BusDetailView type='检察院审核' > |
| | | <div style={divStyle}> |
| | | <Row type="flex" align='middle' justify="space-around"> |