92 lines
3.8 KiB
JavaScript
92 lines
3.8 KiB
JavaScript
import { Button, Descriptions } from 'antd';
|
|
import React from 'react';
|
|
import { initFilter, extendRule, guid, extendInclude, extendIgnoreDataRule } from "../../../utils/common";
|
|
import ReactToPrint from "react-to-print";
|
|
import { ExportToExcel } from '@woowalker/feui'
|
|
import XLSX from 'xlsx';
|
|
import { connect } from 'dva';
|
|
import config from "../../../config.js";
|
|
import FormPage from '../../../components/FormPage'
|
|
|
|
|
|
class BS049ShowPrint extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
data: null,
|
|
BtnAgreeDisplay: 'none',
|
|
};
|
|
};
|
|
|
|
componentDidMount() {
|
|
if (this.props.data?.id)
|
|
this.loadData(this.props.data?.id);
|
|
}
|
|
|
|
componentWillReceiveProps(NextProps) {
|
|
if (NextProps.data?.id && this.props.data?.id != NextProps.data?.id) {
|
|
this.loadData(NextProps.data?.id);
|
|
}
|
|
}
|
|
|
|
loadData = () => {
|
|
let json = initFilter(this.props.login.OrgId);
|
|
extendRule(json, 'ID', 1, this.props.data.id);
|
|
extendInclude(json, 'Nav_UserDeal.Nav_Department');
|
|
extendInclude(json, 'Nav_UserActualDeal');
|
|
extendIgnoreDataRule(json)
|
|
this.props.dispatch({
|
|
type: 'app/getDataByPost',
|
|
payload: json,
|
|
url: 'BS/RiskSubmitContent/Get',
|
|
onComplete: (ret) => {
|
|
if (ret) {
|
|
this.setState({ //设置setState全局变量
|
|
data: ret, //将ret对象赋值给data, data供页面调用
|
|
})
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
onTableBtnExport() {
|
|
let TableWrap = document.getElementById('tableId' + this.props.data.id);
|
|
let Table = TableWrap.getElementsByTagName('table')[0];
|
|
const wb = XLSX.utils.table_to_book(Table);
|
|
XLSX.writeFile(wb, "指定整改落实人.xlsx")
|
|
}
|
|
render() {
|
|
const { data } = this.state;
|
|
return <div>
|
|
<div style={{ padding: '10px' }}>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td><ReactToPrint trigger={() => <Button type={'default'} icon={'printer'} >打印</Button>} content={() => this.componentRef} pageStyle={"#tableId" + this.props.data.id + " { padding:0 40px;} img{width :120px}"} /></td>
|
|
<td><ExportToExcel fileName='指定整改落实人' tableId={'tableId' + this.props.data.id} /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<FormPage {...this.state.tmpData} />
|
|
{/* 检查表制定 */}
|
|
<div ref={el => (this.componentRef = el)} style={{ padding: '20px', paddingTop: '20px' }} id={'tableId' + this.props.data.id}>
|
|
<h1 style={{ textAlign: 'center', margin: '15px' }}>指定整改落实人</h1>
|
|
{
|
|
data ? <div>
|
|
<Descriptions title="" size="middle" bordered>
|
|
<Descriptions.Item label="编号">{data.CODE}</Descriptions.Item>
|
|
<Descriptions.Item label="名称">{data.NAME}</Descriptions.Item>
|
|
<Descriptions.Item label="整改期限">{data.LastDateUser}</Descriptions.Item>
|
|
<Descriptions.Item label="整改部门">{data.Nav_UserDeal.Nav_Department.NAME}</Descriptions.Item>
|
|
<Descriptions.Item label="整改责任人">{data.Nav_UserDeal.NAME}</Descriptions.Item>
|
|
<Descriptions.Item label="整改落实人">{data.Nav_UserActualDeal.NAME}</Descriptions.Item>
|
|
</Descriptions>
|
|
</div> : null
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|
|
}
|
|
export default connect(({ login, app }) => ({ login, app }))(BS049ShowPrint)
|