orderStatistics.jsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. import React from 'react';
  2. import { Select, Spin, Input, Table, Button ,DatePicker, Form , Tabs , Switch,message} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import './report.less';
  6. import { post,taskStatus,publishStatus } from '../../../dataDic.js';
  7. import moment from 'moment';
  8. import {ChooseList} from "../orderNew/chooseList";
  9. const TabPane = Tabs.TabPane;
  10. const DiurnalStatistics = React.createClass({
  11. loadData(timeTypes) {
  12. this.setState({
  13. loading: true,
  14. timeTypes:timeTypes
  15. });
  16. $.ajax({
  17. method: "get",
  18. dataType: "json",
  19. crossDomain: false,
  20. url: globalConfig.context + "/api/admin/report/technicalDepStatistics",
  21. data: {
  22. type:'1',
  23. timeType:this.state.releaseDate[0]?4:timeTypes,
  24. startTime: this.state.releaseDate[0],
  25. endTime: this.state.releaseDate[1],
  26. depId:this.state.superId,//部门机构
  27. taskStatus:this.state.taskStatus,//任务状态
  28. publishStatus:this.state.publishStatus,//公示状态
  29. },
  30. success: function(data) {
  31. let thedata = data.data;
  32. let theArr = [];
  33. if(!thedata) {
  34. if(data.error && data.error.length) {
  35. message.warning(data.error[0].message);
  36. };
  37. thedata = {};
  38. } else {
  39. thedata.map(function(item, index) {
  40. let nub=index+1;
  41. theArr.push({
  42. key: index,
  43. theNumber:false,
  44. nub:nub,
  45. orderDep: item.orderDep,//订单部门
  46. signTotalAmount:item.signTotalAmount,//项目签单金额
  47. signTime:item.signTime,//签单日期
  48. contractNo:item.contractNo,//合同编号
  49. orderRemarks:item.orderRemarks, //订单留言
  50. contacts:item.contacts,//企业联系人
  51. contactMobile:item.contactMobile,//联系人电话
  52. commodityName:item.commodityName,//任务名称
  53. taskDistributionTime:item.taskDistributionTime,//派单时间
  54. dutyDep:item.dutyDep, //任务责任部门
  55. dutyName:item.dutyName,//任务责任人
  56. dutyContactMobile:item.dutyContactMobile,//责任人联系电话
  57. taskStatus:item.taskStatus,//任务状态
  58. finishTime:item.finishTime, //完成时间
  59. taskComment:item.taskComment,//任务说明
  60. publishStatus:item.publishStatus, //公示状态
  61. publishTime:item.publishTime,//公示时间
  62. salesmanName:item.salesmanName, //营销员
  63. orgName:item.orgName,//公司名称
  64. })
  65. })
  66. }
  67. this.setState({
  68. dataSource: theArr,
  69. })
  70. }.bind(this),
  71. }).always(function() {
  72. this.setState({
  73. loading: false
  74. });
  75. }.bind(this));
  76. },
  77. totalData(timeTypes) {
  78. this.setState({
  79. loading: true
  80. });
  81. $.ajax({
  82. method: "get",
  83. dataType: "json",
  84. crossDomain: false,
  85. url: globalConfig.context + "/api/admin/report/sales/countsometimeMarketingStatistics",
  86. data: {
  87. type:'1',
  88. timeType:this.state.releaseDate[0]?4:timeTypes,
  89. startTime: this.state.releaseDate[0],
  90. endTime: this.state.releaseDate[1],
  91. depId:this.state.superId,//部门机构
  92. },
  93. success: function(data) {
  94. let thedata = data.data;
  95. let theArr = [];
  96. if(!thedata) {
  97. if(data.error && data.error.length) {
  98. message.warning(data.error[0].message);
  99. };
  100. thedata = {};
  101. }
  102. this.loadData(timeTypes)
  103. this.selectSuperId();
  104. }.bind(this),
  105. }).always(function() {
  106. this.setState({
  107. loading: false
  108. });
  109. }.bind(this));
  110. },
  111. //时间选择
  112. selTime(value,index){
  113. this.setState({
  114. Dtime:value,
  115. selTime:index
  116. })
  117. },
  118. //获取上级组织
  119. selectSuperId() {
  120. this.state.data = []
  121. $.ajax({
  122. method: "get",
  123. dataType: "json",
  124. crossDomain: false,
  125. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  126. data:{
  127. },
  128. success: function (data) {
  129. let theArr = [];
  130. let theId=[];//用于保存上级组织的ID和名称
  131. let thedata=data.data;
  132. if (!thedata) {
  133. if (data.error && data.error.length) {
  134. message.warning(data.error[0].message);
  135. };
  136. thedata = {};
  137. };
  138. var contactIds=[];
  139. for(var i=0;i<data.data.length;i++){
  140. let theData = data.data[i];
  141. theArr.push(
  142. <Select.Option value={theData.id} key={theData.id}>{theData.name}</Select.Option>
  143. );
  144. theId.push(
  145. [theData.id,theData.name]
  146. );
  147. };
  148. this.setState({
  149. SuperArr:thedata,
  150. contactsOption: theArr,
  151. theId: theId,
  152. orderStatusOptions:data.data,
  153. });
  154. }.bind(this),
  155. }).always(function () {
  156. this.setState({
  157. loading: false
  158. });
  159. }.bind(this));
  160. },
  161. //判断浏览器类型
  162. getExplorer() {
  163. var explorer = window.navigator.userAgent;
  164. //ie
  165. if(explorer.indexOf("MSIE") >= 0) {
  166. return 'ie';
  167. }
  168. //firefox
  169. else if(explorer.indexOf("Firefox") >= 0) {
  170. return 'Firefox';
  171. }
  172. //Chrome
  173. else if(explorer.indexOf("Chrome") >= 0) {
  174. return 'Chrome';
  175. }
  176. //Opera
  177. else if(explorer.indexOf("Opera") >= 0) {
  178. return 'Opera';
  179. }
  180. //Safari
  181. else if(explorer.indexOf("Safari") >= 0) {
  182. return 'Safari';
  183. }
  184. },
  185. //导出为exel表格
  186. tabExel() {
  187. var table = document.querySelector('#daochu');
  188. var idTmr;
  189. //debugger;
  190. //整个表格拷贝到EXCEL中
  191. if(this.getExplorer() == 'ie') {
  192. var curTbl = document.getElementById(tableid);
  193. var oXL = new ActiveXObject("Excel.Application");
  194. //创建AX对象excel
  195. var oWB = oXL.Workbooks.Add();
  196. //获取workbook对象
  197. var xlsheet = oWB.Worksheets(1);
  198. //激活当前sheet
  199. var sel = document.body.createTextRange();
  200. sel.moveToElementText(curTbl);
  201. //把表格中的内容移到TextRange中
  202. sel.select();
  203. //全选TextRange中内容
  204. sel.execCommand("Copy");
  205. //复制TextRange中内容
  206. xlsheet.Paste();
  207. //粘贴到活动的EXCEL中
  208. oXL.Visible = true;
  209. //设置excel可见属性
  210. try {
  211. var fname = oXL.Application.GetSaveAsFilename("Excel.xls", "Excel Spreadsheets (*.xls), *.xls");
  212. } catch(e) {
  213. print("Nested catch caught " + e);
  214. } finally {
  215. oWB.SaveAs(fname);
  216. oWB.Close(savechanges = false);
  217. //xls.visible = false;
  218. oXL.Quit();
  219. oXL = null;
  220. //结束excel进程,退出完成
  221. //window.setInterval("Cleanup();",1);
  222. idTmr = window.setInterval("Cleanup();", 1);
  223. }
  224. } else {
  225. this.tableToExcel(table,this.getExplorer());
  226. }
  227. function Cleanup() {
  228. window.clearInterval(idTmr);
  229. CollectGarbage();
  230. }
  231. },
  232. tableToExcel(table,name) {
  233. var uri = 'data:application/vnd.ms-excel;base64,',
  234. template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>',
  235. base64 = function(s) {
  236. return window.btoa(unescape(encodeURIComponent(s)))
  237. },
  238. format = function(s, c) {
  239. return s.replace(/{(\w+)}/g,
  240. function(m, p) {
  241. return c[p];
  242. })
  243. }
  244. if(!table.nodeType) table = document.getElementById(table);
  245. var ctx = {
  246. worksheet: name || 'Worksheet',
  247. table: table.innerHTML
  248. };
  249. window.location.href = uri + base64(format(template, ctx))
  250. },
  251. getInitialState() {
  252. return {
  253. releaseDate: [],
  254. selectedRowKeys: [],
  255. selectedRows: [],
  256. loading: false,
  257. visible: false,
  258. showDesc: false,
  259. timeState:false,
  260. weekColor:true,
  261. monthColor:false,
  262. quarterColor:false,
  263. yearColor:false,
  264. Dtime:undefined,
  265. timeTypes:0,
  266. selTime:'',
  267. columns: [
  268. {
  269. title: '序号',
  270. dataIndex: 'nub',
  271. width:50,
  272. key: 'nub',
  273. fixed:false,
  274. render:(text,record)=>{
  275. if(!record.theNumber){
  276. return text
  277. }else{
  278. return {
  279. children: text,
  280. props: {
  281. colSpan:0
  282. },
  283. }
  284. }
  285. }
  286. },
  287. {
  288. title: '公司名称',
  289. dataIndex: 'orgName',
  290. key: 'orgName',
  291. width:100,
  292. fixed:false,
  293. render:(text,record)=>{
  294. if(!record.theNumber){
  295. return text//&&text.length>6?<span title={text}>{text.substr(0,6)+'…'}</span>:text
  296. }else{
  297. return {
  298. children: text,
  299. props: {
  300. colSpan:3
  301. },
  302. }
  303. }
  304. }
  305. }, {
  306. title: '订单部门',
  307. fixed:false,
  308. width:100,
  309. dataIndex: 'orderDep',
  310. key: 'orderDep',
  311. render:(text,record)=>{
  312. if(!record.theNumber){
  313. return text
  314. }else{
  315. return {
  316. children: text,
  317. props: {
  318. colSpan:0
  319. },
  320. }
  321. }
  322. }
  323. },
  324. {
  325. title: '项目签单金额',
  326. fixed:false,
  327. dataIndex: 'signTotalAmount',
  328. key: 'signTotalAmount',
  329. sorter: (a, b) => a.signTotalAmount - b.signTotalAmount,
  330. render:(text,record)=>{
  331. if(!record.theNumber){
  332. return text
  333. }else{
  334. return {
  335. children: text,
  336. props: {
  337. colSpan:1
  338. },
  339. }
  340. }
  341. }
  342. }, {
  343. title: '签单日期',
  344. fixed:false,
  345. width:50,
  346. dataIndex: 'signTime',
  347. key: 'signTime',
  348. render:(text,record)=>{
  349. if(!record.theNumber){
  350. return text
  351. }else{
  352. return {
  353. children: text,
  354. props: {
  355. colSpan:0
  356. },
  357. }
  358. }
  359. }
  360. }, {
  361. title: '合同编号',
  362. fixed:false,
  363. dataIndex: 'contractNo',
  364. key: 'contractNo',
  365. render:(text,record)=>{
  366. if(!record.theNumber){
  367. return text
  368. }else{
  369. return {
  370. children: text,
  371. props: {
  372. colSpan:0
  373. },
  374. }
  375. }
  376. }
  377. },{
  378. title: '订单留言',
  379. fixed:false,
  380. width:200,
  381. dataIndex: 'orderRemarks',
  382. key: 'orderRemarks',
  383. render:(text,record)=>{
  384. if(!record.theNumber){
  385. return text
  386. }else{
  387. return {
  388. children: text,
  389. props: {
  390. colSpan:0
  391. },
  392. }
  393. }
  394. }
  395. },{
  396. title: '企业联系人',
  397. fixed:false,
  398. dataIndex: 'contacts',
  399. key: 'contacts',
  400. render:(text,record)=>{
  401. if(!record.theNumber){
  402. return text
  403. }else{
  404. return {
  405. children: text,
  406. props: {
  407. colSpan:0
  408. },
  409. }
  410. }
  411. }
  412. },{
  413. title: '联系人电话',
  414. fixed:false,
  415. dataIndex: 'contactMobile',
  416. key: 'contactMobile',
  417. render:(text,record)=>{
  418. if(!record.theNumber){
  419. return text
  420. }else{
  421. return {
  422. children: text,
  423. props: {
  424. colSpan:0
  425. },
  426. }
  427. }
  428. }
  429. },{
  430. title: '任务名称',
  431. fixed:false,
  432. dataIndex: 'commodityName',
  433. key: 'commodityName',
  434. render:(text,record)=>{
  435. if(!record.theNumber){
  436. return text
  437. }else{
  438. return {
  439. children: text,
  440. props: {
  441. colSpan:0
  442. },
  443. }
  444. }
  445. }
  446. },{
  447. title: '派单时间',
  448. fixed:false,
  449. dataIndex: 'taskDistributionTime',
  450. key: 'taskDistributionTime',
  451. render:(text,record)=>{
  452. if(!record.theNumber){
  453. return text
  454. }else{
  455. return {
  456. children: text,
  457. props: {
  458. colSpan:0
  459. },
  460. }
  461. }
  462. }
  463. },{
  464. title: '部门',
  465. fixed:false,
  466. dataIndex: 'dutyDep',
  467. key: 'dutyDep',
  468. render:(text,record)=>{
  469. if(!record.theNumber){
  470. return text
  471. }else{
  472. return {
  473. children: text,
  474. props: {
  475. colSpan:0
  476. },
  477. }
  478. }
  479. }
  480. },{
  481. title: '负责人',
  482. fixed:false,
  483. dataIndex: 'dutyName',
  484. key: 'dutyName',
  485. render:(text,record)=>{
  486. if(!record.theNumber){
  487. return text
  488. }else{
  489. return {
  490. children: text,
  491. props: {
  492. colSpan:0
  493. },
  494. }
  495. }
  496. }
  497. },{
  498. title: '负责人电话',
  499. fixed:false,
  500. dataIndex: 'dutyContactMobile',
  501. key: 'dutyContactMobile',
  502. render:(text,record)=>{
  503. if(!record.theNumber){
  504. return text
  505. }else{
  506. return {
  507. children: text,
  508. props: {
  509. colSpan:0
  510. },
  511. }
  512. }
  513. }
  514. },{
  515. title: '任务状态',
  516. fixed:false,
  517. dataIndex: 'taskStatus',
  518. key: 'taskStatus',
  519. render:(text,record)=>{
  520. if(!record.theNumber){
  521. return text
  522. }else{
  523. return {
  524. children: text,
  525. props: {
  526. colSpan:0
  527. },
  528. }
  529. }
  530. }
  531. },{
  532. title: '项目完成时间',
  533. fixed:false,
  534. dataIndex: 'finishTime',
  535. key: 'finishTime',
  536. render:(text,record)=>{
  537. if(!record.theNumber){
  538. return text
  539. }else{
  540. return {
  541. children: text,
  542. props: {
  543. colSpan:0
  544. },
  545. }
  546. }
  547. }
  548. },{
  549. title: '任务说明',
  550. fixed:false,
  551. width:200,
  552. dataIndex: 'taskComment',
  553. key: 'taskComment',
  554. render:(text,record)=>{
  555. if(!record.theNumber){
  556. return text
  557. }else{
  558. return {
  559. children: text,
  560. props: {
  561. colSpan:0
  562. },
  563. }
  564. }
  565. }
  566. },
  567. // {
  568. // title: '公示状态',
  569. // fixed:false,
  570. // dataIndex: 'publishStatus',
  571. // key: 'publishStatus',
  572. // render:(text,record)=>{
  573. // if(!record.theNumber){
  574. // return text
  575. // }else{
  576. // return {
  577. // children: text,
  578. // props: {
  579. // colSpan:0
  580. // },
  581. // }
  582. //
  583. // }
  584. //
  585. // }
  586. // },{
  587. // title: '公示时间',
  588. // fixed:false,
  589. // dataIndex: 'publishTime',
  590. // key: 'publishTime',
  591. // render:(text,record)=>{
  592. // if(!record.theNumber){
  593. // return text
  594. // }else{
  595. // return {
  596. // children: text,
  597. // props: {
  598. // colSpan:0
  599. // },
  600. // }
  601. //
  602. // }
  603. //
  604. // }
  605. // },
  606. {
  607. title: '营销员',
  608. fixed:false,
  609. dataIndex: 'salesmanName',
  610. key: 'salesmanName',
  611. render:(text,record)=>{
  612. if(!record.theNumber){
  613. return text
  614. }else{
  615. return {
  616. children: text,
  617. props: {
  618. colSpan:1
  619. },
  620. }
  621. }
  622. }
  623. }
  624. ],
  625. dataSource: [],
  626. };
  627. },
  628. search() {
  629. this.loadData(this.state.timeTypes);
  630. },
  631. reset() {
  632. this.state.superId = undefined;//部门机构清零
  633. this.state.taskStatus= undefined;//任务状态
  634. this.state.publishStatus= undefined;//公示状态
  635. this.loadData(0)
  636. this.setState({
  637. order:"false",
  638. weekColor:true,
  639. monthColor:false,
  640. quarterColor:false,
  641. yearColor:false
  642. })
  643. },
  644. week(){
  645. this.state.releaseDate[0] = undefined;//开始时间清零
  646. this.state.releaseDate[1] = undefined;//结束时间清零
  647. this.loadData(0);
  648. this.setState({
  649. weekColor:true,
  650. monthColor:false,
  651. quarterColor:false,
  652. yearColor:false
  653. })
  654. },
  655. month(){
  656. this.state.releaseDate[0] = undefined;//开始时间清零
  657. this.state.releaseDate[1] = undefined;//结束时间清零
  658. this.loadData(1);
  659. this.setState({
  660. weekColor:false,
  661. monthColor:true,
  662. quarterColor:false,
  663. yearColor:false
  664. })
  665. },
  666. quarter(){
  667. this.state.releaseDate[0] = undefined;//开始时间清零
  668. this.state.releaseDate[1] = undefined;//结束时间清零
  669. this.loadData(2);
  670. this.setState({
  671. weekColor:false,
  672. monthColor:false,
  673. quarterColor:true,
  674. yearColor:false
  675. })
  676. },
  677. year(){
  678. this.state.releaseDate[0] = undefined;//开始时间清零
  679. this.state.releaseDate[1] = undefined;//结束时间清零
  680. this.loadData(3);
  681. this.setState({
  682. weekColor:false,
  683. monthColor:false,
  684. quarterColor:false,
  685. yearColor:true
  686. })
  687. },
  688. //重构排序
  689. tabChange(pagination,filter,sorter){
  690. console.log(pagination)
  691. console.log(sorter)
  692. },
  693. componentWillMount() {
  694. //this.loadData();
  695. this.totalData(0);
  696. let times=new Date();
  697. let nowTime=times.getFullYear()+'年'+(times.getMonth()+1)+'月'+times.getDate()+'日';
  698. this.setState({
  699. Nowtime:nowTime
  700. })
  701. },
  702. changeList(arr) {
  703. const newArr = [];
  704. this.state.columns.forEach(item => {
  705. arr.forEach(val => {
  706. if (val === item.title) {
  707. newArr.push(item);
  708. }
  709. });
  710. });
  711. this.setState({
  712. changeList: newArr
  713. });
  714. },
  715. render() {
  716. const { RangePicker } = DatePicker;
  717. let departmentArr = this.state.departmentArr || [];
  718. return(
  719. <div className='set-content'>
  720. <p style={{fontSize:'20px',marginBottom:'10px'}}>订单统计报表</p>
  721. <div className="clearfix">
  722. <Tabs defaultActiveKey="1" className="test">
  723. <TabPane tab="搜索" key="1">
  724. <div className="user-search" style={{padding:'11px'}}>
  725. <Button type="primary" onClick={this.tabExel} style={{ float:'right' }}>导出到表格</Button>
  726. <span style={{fontSize:'16px'}}>部门机构 : </span>
  727. <Select placeholder="选择部门"
  728. style={{ width:'200px',marginRight:'10px' }}
  729. value={this.state.superId}
  730. onChange={(e) => { this.setState({ superId: e }) }} notFoundContent="未获取到上级组织列表">
  731. {this.state.contactsOption}
  732. </Select>
  733. <Select placeholder="任务状态"
  734. style={{ width: 150 ,marginRight:'10px'}}
  735. value={this.state.taskStatus}
  736. onChange={(e) => { this.setState({ taskStatus: e }) }}>
  737. {
  738. taskStatus.map(function (item) {
  739. return <Select.Option key={item.value} >{item.key}</Select.Option>
  740. })
  741. }
  742. </Select>
  743. <Select placeholder="公示状态"
  744. style={{ width: 150 ,marginRight:'10px'}}
  745. value={this.state.publishStatus}
  746. onChange={(e) => { this.setState({ publishStatus: e }) }}>
  747. {
  748. publishStatus.map(function (item) {
  749. return <Select.Option key={item.value} >{item.key}</Select.Option>
  750. })
  751. }
  752. </Select>
  753. <Button type="primary" onClick={this.search} style={{marginLeft:'10px',marginRight:'10px'}}>搜索</Button>
  754. <Button onClick={this.reset}>重置</Button>
  755. <div className="clearfix" style={{marginTop:"10px"}}>
  756. <Button onClick={this.week} style={{marginRight:'5px'}} type={this.state.weekColor?"primary":''}>本周</Button>
  757. <Button onClick={this.month} style={{marginRight:'5px'}} type={this.state.monthColor?"primary":''}>本月</Button>
  758. <Button onClick={this.quarter} style={{marginRight:'5px'}} type={this.state.quarterColor?"primary":''}>本季</Button>
  759. <Button onClick={this.year} style={{marginRight:'5px'}} type={this.state.yearColor?"primary":''}>本年</Button>
  760. <span className="titleTime" style={{marginRight:'5px',marginTop:"0px"}}>起止时间:</span>
  761. <RangePicker
  762. style={{marginRight:'5px',marginTop:"0px"}}
  763. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  764. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  765. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }}
  766. />
  767. </div>
  768. </div>
  769. </TabPane>
  770. <TabPane tab="更改表格显示数据" key="2">
  771. <div style={{ marginLeft: 10 }}>
  772. <ChooseList
  773. columns={this.state.columns}
  774. changeFn={this.changeList}
  775. changeList={this.state.changeList}
  776. top={55}
  777. margin={11}
  778. />
  779. </div>
  780. </TabPane>
  781. </Tabs>
  782. </div>
  783. <div id='daochu'>
  784. {/* <div className="surfaceTitle">
  785. <span style={{marginTop:"10px"}}>订单统计报表</span>
  786. </div> */}
  787. <div className="patent-table" id='daochu'>
  788. <div className="scroll">
  789. <Spin spinning={this.state.loading}>
  790. <Table
  791. size="small"
  792. columns={
  793. this.state.changeList
  794. ? this.state.changeList
  795. : this.state.columns
  796. }
  797. dataSource={this.state.dataSource}
  798. bordered
  799. onChange={this.tabChange}
  800. pagination={false}
  801. />
  802. </Spin>
  803. </div>
  804. </div>
  805. </div>
  806. </div>
  807. )
  808. }
  809. });
  810. export default DiurnalStatistics;