Browse Source

科研中心RD库

dev01 2 years ago
parent
commit
17bbfba41e

+ 1 - 12
css/base.less

@@ -488,7 +488,7 @@ template {
 body {
   color: #333;
   font-size: 14px;
-  background: #f0f0f0;
+  background: #D2D2D2;
 
   .ant-input-number,
   .ant-input-number-lg {
@@ -533,17 +533,6 @@ body {
   border-top: 1px solid #d8d8d8;
 }
 
-// .ant-modal-content {
-//     .ant-modal-body {
-//         .ant-form {
-//            .ant-form-item {
-//                .ant-form-item-control  {
-//                    text-align: center;
-//                }
-//            } 
-//         }
-//     }
-// }
 @font-face {
   font-family: 'myiconfont';
   src: url('./iconfont/iconfont.eot');

+ 0 - 35
css/login.less

@@ -1,35 +0,0 @@
-.wrap {
-  width: 960px;
-  margin: 0 auto;
-
-  //antd样式更改    
-  .ant-tabs-nav {
-    width: 100%;
-
-    .ant-tabs-tab {
-      width: 50%;
-      text-align: center;
-      margin-right: 0;
-    }
-  }
-
-  .ant-input-group-addon {
-    font-size: 18px;
-    color: #d0d0d0;
-  }
-
-  .ant-tabs-bar {
-    height: 50px;
-    margin-bottom: 0;
-    background: #f0f0f0;
-
-    .ant-tabs-nav-container {
-      line-height: 34px;
-    }
-  }
-
-  .ant-tabs-content {
-    padding: 30px 20px 0;
-    background: #fff;
-  }
-}

BIN
image/kede.png


+ 2 - 3
js/admin/index.js

@@ -1,14 +1,13 @@
 import React from 'react';
 import ReactDOM from 'react-dom';
 import '../../css/base.less';
-
-// import TopTab from '../component/manageCenter/topTab.jsx';
+import TopTab from '../component/manageCenter/top';
 import Footer from '../component/manageCenter/bottom.jsx';
 import Content from '../component/manageCenter/index/content.jsx';
 
 ReactDOM.render(
     <div className="wrap clearfix">
-        {/* <TopTab /> */}
+        <TopTab />
         <Content />
         <Footer />
     </div>,

+ 0 - 2
js/admin/login.js

@@ -1,7 +1,5 @@
 import React from 'react';
 import ReactDOM from 'react-dom';
-import '../../css/base.less';
-import '../../css/login.less';
 import '../../css/back.less';
 import LoginContent from '../component/login/adminLogin.jsx';
 import LoginTop from '../component/login/loginTop.jsx';

+ 0 - 3
js/component/login/adminLogin.less

@@ -1,5 +1,4 @@
 body {
-  // background: #fff url(../../../image/bg.jpg) no-repeat;
   background-size: cover;
 }
 
@@ -17,8 +16,6 @@ body {
   height: 300px;
   padding: 50px 50px 0;
   border-radius: 10px;
-  // background: rgba(0, 0, 0, 0.5);
-  // background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(0, 0, 0, .2);
   -moz-box-shadow: 0 0 13px 3px rgba(0, 0, 0, .5);
   -webkit-box-shadow: 0 0 13px 3px rgba(0, 0, 0, .5);

+ 1 - 8
js/component/manageCenter/content.less

@@ -1,9 +1,7 @@
 .manage-content {
     height: 100%;
     width: 100%;
-    padding-bottom: 40px;
-    background: rgb(32, 33, 36);
-    // background: #fff;
+    // padding-bottom: 40px;
 
     .content-right {
         width: 100%;
@@ -33,8 +31,3 @@
 .acc-top-user-name>a {
     color: #58a3ff !important;
 }
-
-// .user-content>.ant-tabs.ant-tabs-top.ant-tabs-line {
-//     background-color: #F5F5F5;
-//     margin-bottom: 10px;
-//   }

+ 330 - 71
js/component/manageCenter/index/contacts/detail.jsx

@@ -1,14 +1,21 @@
 import React from "react";
-import { Spin, Form, Modal, Button } from "antd";
+import { Spin, message, Modal, Button, DatePicker, Input, Icon } from "antd";
 import ajax from "jquery/src/ajax/xhr.js";
 import $ from "jquery/src/ajax";
+import './detail.less';
+import moment from "moment";
 import ReactToPrint from "react-to-print";
+import { getPdf } from "../../../../utils/tools";
+
+const { RangePicker } = DatePicker;
 
 const detail = React.createClass({
   getInitialState() {
     return {
       loading: false,
-      data: {}
+      change: false,
+      data: {},
+      num: 0,
     };
   },
 
@@ -29,7 +36,7 @@ const detail = React.createClass({
         this.setState({
           data: data.data,
         })
-        this.addBrowse()
+        this.state.num == 0 && this.addBrowse()
       }.bind(this),
     }).always(
       function () {
@@ -55,7 +62,9 @@ const detail = React.createClass({
             id: this.props.rowdata.id,
           },
           success: function (data) {
-
+            this.setState({
+              num: 1
+            })
           }.bind(this),
         }).always(
           function () {
@@ -77,7 +86,9 @@ const detail = React.createClass({
         id: this.props.rowdata.id,
       },
       success: function (data) {
-
+        this.state.data.downloadCount++
+        this.setState({ data: this.state.data });
+        // this.getInfo()
       }.bind(this),
     }).always(
       function () {
@@ -85,6 +96,96 @@ const detail = React.createClass({
       }.bind(this)
     )
   },
+  // PDF下载
+  pdfDownload() {
+    message.loading("下载中...");
+    window.location.href = globalConfig.context + `/api/admin/RD/downloadDetailsPDF?id=${this.props.rowdata.id}`;
+    // getPdf(this.state.data.rdName, "pdf")
+    this.addDownload()
+  },
+  // Word下载
+  wordDownload() {
+    message.loading("下载中...");
+    window.location.href = globalConfig.context + `/api/admin/RD/downloadDetailsWord?id=${this.props.rowdata.id}`;
+    this.addDownload()
+  },
+  // 修改详情
+  update() {
+    const { data } = this.state
+    // if (!data.userName) {
+    //   message.warning("公司名称不能为空!");
+    //   return
+    // }
+    // if (!data.consultantName) {
+    //   message.warning("项目负责人不能为空!");
+    //   return
+    // }
+    // if (!data.technicalField) {
+    //   message.warning("技术领域不能为空!");
+    //   return
+    // }
+    // if (!data.technologySource) {
+    //   message.warning("技术来源不能为空!");
+    //   return
+    // }
+    // if (!data.totalAmount) {
+    //   message.warning("研发费用总预计不能为空!");
+    //   return
+    // }
+    // if (!data.rdObjective) {
+    //   message.warning("研发目的/立项目的/实施方式不能为空!");
+    //   return
+    // }
+    // if (!data.coreTechnology) {
+    //   message.warning("核心技术/创新点不能为空!");
+    //   return
+    // }
+    // if (!data.achieveResults) {
+    //   message.warning("成果不能为空!");
+    //   return
+    // }
+    this.setState({
+      loading: true,
+    });
+    $.ajax({
+      method: "POST",
+      dataType: "json",
+      crossDomain: false,
+      url: globalConfig.context + "/api/admin/RD/update",
+      data:
+      {
+        id: data.id,
+        ipNo: data.ipNo,
+        rdNo: data.rdNo,
+        rdStartStr: data.rdStartStr,
+        rdEndStr: data.rdEndStr,
+        userName: data.userName,
+        consultantName: data.consultantName,
+        technicalField: data.technicalField,
+        technologySource: data.technologySource,
+        totalAmount: data.totalAmount,
+        rdObjective: data.rdObjective,
+        coreTechnology: data.coreTechnology,
+        achieveResults: data.achieveResults,
+      },
+    }).done(
+      function (data) {
+        this.setState({
+          loading: false,
+        });
+        if (!data.error.length) {
+          this.getInfo();
+          message.success("保存成功!");
+          this.setState({
+            change: false
+          })
+        } else {
+          message.warning(data.error[0].message);
+        }
+      }.bind(this)
+    );
+  },
+
 
   componentWillMount() {
     this.getInfo();
@@ -95,92 +196,250 @@ const detail = React.createClass({
   },
 
   render() {
-    const { data } = this.state
+    const { data, change } = this.state
     return (
       <Modal
         title={null}
         visible={this.props.visible}
         onCancel={this.props.onCancel}
         footer={null}
-        width={800}
+        width={874}
         maskClosable={false}
       >
-        <Form
-          layout="horizontal"
-          onSubmit={this.handleSubmit}
-          id="demand-form"
-          style={{ paddingBottom: '0px' }}
+        <div
+          style={{
+            float: "right",
+            marginTop: 10,
+            position: "absolute",
+            top: 0,
+            right: 60,
+            zIndex: 9,
+          }}
         >
-          <ReactToPrint
+          {/* <ReactToPrint
             trigger={() => (
               <Button
                 type="primary"
-                style={{
-                  float: "right",
-                  marginTop: 10,
-                  position: "absolute",
-                  top: 0,
-                  right: 60,
-                  zIndex: 9,
-                }}
+                style={{ marginRight: 20 }}
               >
                 打印
               </Button>
             )}
             content={() => this.refs.all}
-          />
-          <Spin spinning={this.state.loading}>
-            <div className="clearfix"
-              style={{ padding: "30px 80px" }}
-              ref={(e) => {
-                this.refs.all = e;
+          /> */}
+          <Button
+            disabled={change}
+            type="primary"
+            style={{ marginLeft: 0 }}
+            onClick={this.wordDownload.bind(this)}
+          >
+            <Icon type="download" />
+            WORD下载
+          </Button>
+          <Button
+            disabled={change}
+            type="primary"
+            style={{ marginLeft: 20 }}
+            onClick={this.pdfDownload.bind(this)}
+          >
+            <Icon type="download" />
+            PDF下载
+          </Button>
+          <div style={{ color: "#58A3FF" }}>已下载次数:{data.downloadCount}</div>
+        </div>
+        <Spin spinning={this.state.loading}>
+          <div
+            className="pdfcount"
+            id="pdf"
+            ref={(e) => {
+              this.refs.all = e;
+            }}
+          >
+            <h1 style={{ textAlign: "center", marginBottom: 30 }}>{data.rdName}</h1>
+            <div className="formitem">项目起止时间:
+              {
+                change ?
+                  <RangePicker
+                    allowClear={false}
+                    style={{ width: 200 }}
+                    value={[
+                      data.rdStartStr ? moment(data.rdStartStr) : null,
+                      data.rdEndStr ? moment(data.rdEndStr) : null,
+                    ]}
+                    onChange={(datas, dataString) => {
+                      this.setState({
+                        data: Object.assign(data, {
+                          rdStartStr: dataString[0],
+                          rdEndStr: dataString[1],
+                        }),
+                      });
+                    }}
+                  />
+                  :
+                  <span>{!data.rdStartStr ? "" : (data.rdStartStr + "~" + data.rdEndStr)}</span>
+              }
+            </div>
+            <div className="formitems">公司名称:
+              {
+                change ?
+                  <Input
+                    placeholder=""
+                    value={data.userName}
+                    onChange={(e) => {
+                      data.userName = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <span>{data.userName}</span>
+              }
+            </div>
+            <div className="formitems">项目负责人:
+              {
+                change ?
+                  <Input
+                    placeholder=""
+                    value={data.consultantName}
+                    onChange={(e) => {
+                      data.consultantName = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <span>{data.consultantName}</span>
+              }
+            </div>
+            <div className="formitems">技术领域:
+              {
+                change ?
+                  <Input
+                    placeholder=""
+                    value={data.technicalField}
+                    onChange={(e) => {
+                      data.technicalField = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <span>{data.technicalField}</span>
+              }
+            </div>
+            <div className="formitems">技术来源:
+              {
+                change ?
+                  <Input
+                    placeholder=""
+                    value={data.technologySource}
+                    onChange={(e) => {
+                      data.technologySource = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <span>{data.technologySource}</span>
+              }
+            </div>
+            <div className="formitem">研发费用总预计:
+              {
+                change ?
+                  <Input
+                    type='number'
+                    placeholder=""
+                    value={data.totalAmount}
+                    style={{ width: 80 }}
+                    onChange={(e) => {
+                      data.totalAmount = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <span>{data.totalAmount}</span>
+              }
+              &nbsp;&nbsp;{"万元"}
+            </div>
+            <div className="formitem">研发目的/立项目的/实施方式
+              {
+                change ?
+                  <Input
+                    type="textarea"
+                    placeholder=""
+                    autosize={{ minRows: 4 }}
+                    value={data.rdObjective}
+                    onChange={(e) => {
+                      data.rdObjective = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <p>{data.rdObjective}</p>
+              }
+            </div>
+            <div className="formitem">核心技术/创新点
+              {
+                change ?
+                  <Input
+                    type="textarea"
+                    placeholder=""
+                    autosize={{ minRows: 4 }}
+                    value={data.coreTechnology}
+                    onChange={(e) => {
+                      data.coreTechnology = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <p>{data.coreTechnology}</p>
+              }
+            </div>
+            <div className="formitem">成果
+              {
+                change ?
+                  <Input
+                    type="textarea"
+                    placeholder=""
+                    autosize={{ minRows: 4 }}
+                    value={data.achieveResults}
+                    onChange={(e) => {
+                      data.achieveResults = e.target.value
+                      this.setState({ data });
+                    }}
+                  />
+                  : <p>{data.achieveResults}</p>
+              }
+            </div>
+          </div>
+        </Spin>
+        {
+          change
+            ? <div
+              style={{
+                position: "absolute",
+                bottom: 10,
+                right: 60,
+                zIndex: 9,
               }}
             >
-              <h1 style={{ textAlign: "center", marginBottom: 30 }}>{data.rdName}</h1>
-              <div className="formitems">项目起止时间:{data.rdStartS + " - " + data.rdEndS}</div>
-              <div className="formitems">公司名称:{data.userName}</div>
-              <div className="formitems">项目负责人:{data.consultantName}</div>
-              <div className="formitems">技术领域:{data.technicalField}</div>
-              <div className="formitems">技术来源:{data.technologySource}</div>
-              <div className="formitems">研发费用总预计:{data.totalAmount}{" 万元"}</div>
-              <div className="formitems">研发目的/立项目的/实施方式
-                <p>
-                  为维持良好的锅炉运行和性能,需要正确的对火焰侧操作和控制。
-                  我公司锅炉炉瞠出口设有两套传统式的烟温探针,测温元件为热电偶,
-                  测量范围0~570%C,在实际运行过程中由于执行机构等部件在高温环
-                  境中容易出现故障,测温元件磨损、高温变形,当炉内温度超过580C时
-                  为保护烟温探针要将其退出检测,导致炉瞠出口烟温不能连续在线检测
-                  目前,锅炉烟温探针只能在锅炉启动初期对炉瞠出口烟温进行检测,以
-                  防止再热器干烧超温。锅炉正常运行过程中烟温探针不能连续有效的提
-                  供炉瞠出口烟气温度数据,对锅炉运行人员的操作参考性大大降低,在
-                  火电机组发展的当今不利于锅炉和机组的安全性和经济性。为解决烟温
-                  探针在运行中遇到的以上问题,加强对炉瞠出口烟温的连续测量,提高
-                  锅炉的运行和性能,提高机组运行安全性,提出锅炉炉瞠红外测温设备
-                  的研究与应用。
-                </p>
-              </div>
-              <div className="formitems">核心技术/创新点
-                <p>
-                  提高测量精度及测量范围是解决该问题的前提条件,本项目的核心技术为
-                  利用远红外探测器对锅炉燃烧过程中的产物-热CO2气体的温度进行探测。
-                  该远红外探测器采用特殊设计的红外滤色镜的薄膜热电堆,使其光谱响应
-                  只接受CO2特殊红外光谱段的能量,其他波长的红外能量都被滤除,它能
-                  直接用来测量“视场”CO2气体的温度,真实反映锅炉炉瞠出口温度,利用
-                  这一先进的测量方法来测量锅炉炉瞠出口温度,使其温度测量可以保持连
-                  续性及准确性。
-                </p>
-              </div>
-              <div className="formitems">成果
-                <p>
-                  本项目应用目前市场先进科技技术,实现了改动量小,改造费用低,工期
-                  短的特性达到理想效果,该工程配置充足的研发资金,由伤害成套院进行
-                  可行性研究报告,通过集团招标平台进行脱硝、脱硫除尘一体化 EPC工
-                  程招标,小组成员参与的方式,推动研发活动顺利进
-                </p>
-              </div>
+              <Button
+                type="primary"
+                style={{ marginLeft: 20 }}
+                onClick={() => { this.setState({ change: false }) }}
+              >
+                取消
+              </Button>
+              <Button
+                type="primary"
+                style={{ marginLeft: 20 }}
+                onClick={this.update.bind(this)}
+              >
+                保存
+              </Button>
             </div>
-          </Spin>
-        </Form>
+            : <Button
+              type="primary"
+              style={{
+                position: "absolute",
+                bottom: 10,
+                right: 60,
+                zIndex: 9,
+              }}
+              onClick={() => { this.setState({ change: true }) }}
+            >
+              编辑
+            </Button>
+        }
       </Modal>
     );
   },

+ 33 - 0
js/component/manageCenter/index/contacts/detail.less

@@ -0,0 +1,33 @@
+#pdf {
+  padding: 30px 60px;
+  background-color: white;
+
+  .formitems,
+  .formitem {
+    font-size: 12px;
+    margin: 10px 0;
+    color: rgba(0, 0, 0, 0.85);
+    vertical-align: top;
+
+    >p {
+      margin-left: 24px;
+      margin-top: 2px;
+
+    }
+
+  }
+
+  .formitems {
+    display: flex;
+    flex-direction: row;
+    align-items: center;
+    flex-wrap: nowrap;
+
+    Input{
+      flex: 1;
+      
+    }
+
+  }
+
+}

+ 88 - 92
js/component/manageCenter/index/contacts/index.jsx

@@ -9,12 +9,15 @@ import {
   Select,
   Icon,
   Upload,
+  Tooltip,
+  Modal,
 } from 'antd';
 import $ from "jquery/src/ajax";
 import ajax from 'jquery/src/ajax/xhr.js'
 import moment from "moment";
 import '../../public.less';
-import logo from '../../../../../image/logo.png';
+import logo from '../../../../../image/kede.png';
+import { getLoginStatus } from '../../../../utils/tools';
 import Detail from "./detail"; // 详情
 
 const Option = Select.Option;
@@ -47,23 +50,26 @@ class Content extends Component {
           dataIndex: "id",
           key: "id",
           fixed: "left",
+          width: 50,
         },
         {
           title: "单位名称",
           dataIndex: "userName",
           key: "userName",
           fixed: "left",
-          width: "160",
+          width: 180,
         },
         {
           title: "研发活动编号",
           dataIndex: "rdNo",
           key: "rdNo",
+          width: 110,
         },
         {
           title: "知识产权编号",
           dataIndex: "ipNo",
           key: "ipNo",
+          width: 110,
         },
         {
           title: "研发活动名称",
@@ -72,14 +78,12 @@ class Content extends Component {
         },
         {
           title: "起止时间",
-          dataIndex: "rdStart",
-          key: "rdStart",
-          width: "130",
+          dataIndex: "rdStartStr",
+          key: "rdStartStr",
+          width: 160,
           render: (text, record) => (
             <div>
-              <div>{text}</div>
-              <div style={{ paddingLeft: '50px' }}>至</div>
-              <div>{record.rdEnd}</div>
+              {!text ? "" : (text + "~" + record.rdEndStr)}
             </div>
           )
         },
@@ -97,26 +101,64 @@ class Content extends Component {
           title: "研发经费总预算(万元)",
           dataIndex: "totalAmount",
           key: "totalAmount",
+          width: 80
         },
         {
           title: "研发经费近三年总支出(万元)",
           dataIndex: "recentThreeAmount",
           key: "recentThreeAmount",
+          width: 80
         },
         {
           title: "研发目的及组织实施方式",
           dataIndex: "rdObjective",
           key: "rdObjective",
+          render: (text) => {
+            return (
+              <Tooltip title={text}>
+                <div style={{
+                  maxWidth: '300px',
+                  overflow: 'hidden',
+                  textOverflow: "ellipsis",
+                  whiteSpace: 'nowrap',
+                }}>{text}</div>
+              </Tooltip>
+            )
+          }
         },
         {
           title: "核心技术及创新点",
           dataIndex: "coreTechnology",
           key: "coreTechnology",
+          render: (text) => {
+            return (
+              <Tooltip title={text}>
+                <div style={{
+                  maxWidth: '300px',
+                  overflow: 'hidden',
+                  textOverflow: "ellipsis",
+                  whiteSpace: 'nowrap',
+                }}>{text}</div>
+              </Tooltip>
+            )
+          }
         },
         {
           title: "取得的创段性成果",
           dataIndex: "achieveResults",
           key: "achieveResults",
+          render: (text) => {
+            return (
+              <Tooltip title={text}>
+                <div style={{
+                  maxWidth: '300px',
+                  overflow: 'hidden',
+                  textOverflow: "ellipsis",
+                  whiteSpace: 'nowrap',
+                }}>{text}</div>
+              </Tooltip>
+            )
+          }
         },
         {
           title: "咨询师名称",
@@ -154,12 +196,15 @@ class Content extends Component {
               this.setState({
                 upLoadFileLoading: false,
               })
-              if (data.data.OK == 1) {
-                message.success("导入成功!");
+              if (data.data.OK == 0) {
+                if (data.data.ERROR.length == 0) {
+                  message.error("导入未成功,请使用正确模板导入");
+                } else {
+                  this.onTips(data)
+                }
                 this.loadData();
               } else {
-                message.warning('表格中有重复数据');
-                // message.warning(data.error[0].message);
+                message.success(`${data.data.OK}条数据导入成功!`);
                 this.loadData();
               }
             }.bind(this)
@@ -168,7 +213,6 @@ class Content extends Component {
               if (err.status === 404) {
                 message.warning('数据错误');
               }
-              this.loadData();
               this.setState({
                 upLoadFileLoading: false,
               });
@@ -180,7 +224,27 @@ class Content extends Component {
       },
     };
   }
-
+  // 导入提示
+  onTips(data) {
+    if (data.data.ERROR.length > 0) {
+      Modal.info({
+        title: <span>部分导入失败,您有以下
+          <span style={{ color: "red" }}>&nbsp;{data.data.ERROR.length}&nbsp;</span>条数据重复!
+        </span>,
+        content: (
+          <div>
+            {
+              data.data.ERROR.map((item, index) =>
+                <p key={index}>研发活动编号为[<span style={{ color: "red" }}>&nbsp;{item}&nbsp;</span>]</p>
+              )
+            }
+            <div style={{ color: "red", marginTop: 20 }}>以上数据因研发活动编号重复无法导入</div>
+          </div>
+        ),
+        okText: '确定',
+      });
+    }
+  }
   // 列表查询
   loadData(pageNo) {
     const { searchInfor, pagination } = this.state;
@@ -221,7 +285,7 @@ class Content extends Component {
             });
           }
         } else {
-          message.warning(data.error[0].message);
+          getLoginStatus(data)
         }
       }.bind(this),
     }).always(
@@ -304,7 +368,6 @@ class Content extends Component {
     })
   }
 
-
   componentWillMount() {
     this.loadData();
   }
@@ -313,25 +376,21 @@ class Content extends Component {
     const { columns, searchInfor } = this.state;
     return (
       <div className="user-content">
-        <div className="content-title">
-          <img className="content-logo" src={logo} alt="" />
-          <span style={{ fontWeight: 900, fontSize: 16 }}>行业研发活动科研中心RD库</span>
-        </div>
+        {/* <div className="content-title">
+        </div> */}
         <div className="patent-table">
           <div className="user-search">
             <RangePicker
               style={{ width: 200 }}
               value={[
-                searchInfor.startDate
-                  ? moment(searchInfor.startDate)
-                  : null,
-                searchInfor.endDate ? moment(searchInfor.endDate) : null,
+                searchInfor.rdStart ? moment(searchInfor.rdStart) : null,
+                searchInfor.rdEnd ? moment(searchInfor.rdEnd) : null,
               ]}
               onChange={(data, dataString) => {
                 this.setState({
                   searchInfor: Object.assign(searchInfor, {
-                    startDate: dataString[0],
-                    endDate: dataString[1],
+                    rdStart: dataString[0],
+                    rdEnd: dataString[1],
                   }),
                 });
               }}
@@ -339,78 +398,15 @@ class Content extends Component {
             <Input
               placeholder={"请输入研发活动名称"}
               style={{ width: 180 }}
-              value={searchInfor.name}
+              value={searchInfor.rdName}
               onChange={(e) => {
                 this.setState({
                   searchInfor: Object.assign(searchInfor, {
-                    name: e.target.value,
+                    rdName: e.target.value,
                   }),
                 });
               }}
             />
-            <Select
-              placeholder={"选择省份"}
-              style={{ width: 100 }}
-            >
-            </Select>
-            <Select
-              placeholder={"选择城市"}
-              style={{ width: 100 }}
-            >
-            </Select>
-            <Select
-              placeholder={"选择地区"}
-              style={{ width: 100 }}
-            >
-            </Select>
-            <Select
-              placeholder={"行业领域"}
-              style={{ width: 130 }}
-              value={searchInfor.type || undefined}
-              onChange={(e) => {
-                this.setState({
-                  searchInfor: Object.assign(searchInfor, {
-                    type: e,
-                  }),
-                });
-              }}
-            >
-              {/* {channeOb.map((it, ins) => (
-                                    <Option key={it.val}>{it.name}</Option>
-                                ))} */}
-            </Select>
-            <Select
-              placeholder={"人员规模"}
-              style={{ width: 130 }}
-              value={searchInfor.type || undefined}
-              onChange={(e) => {
-                this.setState({
-                  searchInfor: Object.assign(searchInfor, {
-                    type: e,
-                  }),
-                });
-              }}
-            >
-              {/* {channeOb.map((it, ins) => (
-                                    <Option key={it.val}>{it.name}</Option>
-                                ))} */}
-            </Select>
-            <Select
-              placeholder={"经济规模"}
-              style={{ width: 130 }}
-              value={searchInfor.type || undefined}
-              onChange={(e) => {
-                this.setState({
-                  searchInfor: Object.assign(searchInfor, {
-                    type: e,
-                  }),
-                });
-              }}
-            >
-              {/* {channeOb.map((it, ins) => (
-                                    <Option key={it.val}>{it.name}</Option>
-                                ))} */}
-            </Select>
             <Button
               type="primary"
               onClick={() => {
@@ -459,7 +455,7 @@ class Content extends Component {
               size="middle"
               bordered
               columns={columns}
-              scroll={{ x: 1300 }}
+              scroll={{ x: '130%' }}
               dataSource={this.state.dataSource}
               pagination={this.state.pagination}
               onRowDoubleClick={this.onRowDoubleClick.bind(this)}

+ 6 - 9
js/component/manageCenter/index/content.jsx

@@ -1,6 +1,5 @@
 import React from 'react';
 import { Spin, Button, Tabs, Table, message, Modal, Tooltip } from 'antd';
-
 import '../content.less';
 import './content.less';
 
@@ -22,17 +21,15 @@ const Content = React.createClass({
       });
     });
   },
-  
+
   render() {
     return (
       <div className="manage-content">
-        <div className="content-right">
-          <Spin spinning={this.state.loading} className='spin-box'>
-            <div className="index-content">
-              {this.state.component}
-            </div>
-          </Spin>
-        </div>
+        <Spin spinning={this.state.loading} className='spin-box'>
+          <div className="index-content">
+            {this.state.component}
+          </div>
+        </Spin>
       </div>
     )
   }

+ 17 - 17
js/component/manageCenter/index/content.less

@@ -1,20 +1,20 @@
-.set-content {
-  background: rgb(32, 33, 36);
-  padding: 20px;
+// .set-content {
+//   background: rgb(32, 33, 36);
+//   padding: 20px;
 
-  .set-title {
-    >span {
-      font-size: 16px;
-      color: #333;
-    }
+//   .set-title {
+//     >span {
+//       font-size: 16px;
+//       color: #333;
+//     }
 
-    >button {
-      float: right;
-      margin-right: 20px;
-    }
-  }
+//     >button {
+//       float: right;
+//       margin-right: 20px;
+//     }
+//   }
 
-  .member-table {
-    margin-top: 20px;
-  }
-}
+//   .member-table {
+//     margin-top: 20px;
+//   }
+// }

+ 23 - 40
js/component/manageCenter/public.less

@@ -1,35 +1,29 @@
 .user-content {
   width: 100%;
   height: 100%;
-  // background: #f0f0f0;
-  background: #D2D2D2;
-  padding-bottom: 20px;
+  padding: 140px 0 80px;
 
   .content-title {
-    font-size: 16px;
-    display: flex;
-    flex-direction: row;
-    align-items: center;
-    padding: 15px 80px;
-    background: rgb(32, 33, 36);
-    color: #fff;
-
-    .content-logo {
-      width: 80px;
-      margin-right: 10px;
-      border-radius: 50%;
-      background: #fff;
-    }
 
   }
 
   .user-search {
+    // padding: 0 20px;
+    // margin-bottom: 20px;
+    // border-radius: 10px;
+    // border: 1px solid rgba(0, 0, 0, .2);
+    // box-shadow: 0 0 8px rgba(0, 0, 0, .5) inset;
+
     .button {
       height: 40px;
       margin-top: 10px;
       display: flex;
       flex-direction: row-reverse;
 
+      .ant-upload-list {
+        display: none;
+      }
+
     }
 
     >input {
@@ -62,12 +56,15 @@
 
   .patent-table {
     width: 96%;
-    flex: 1;
     height: 100%;
-    margin: 20px auto 0;
+    margin: 0 auto;
     padding: 20px 30px;
-    background: #fff;
     border-radius: 10px;
+    border: 1px solid rgba(0, 0, 0, .2);
+    -moz-box-shadow: 0 0 15px 3px rgba(0, 0, 0, .5);
+    -webkit-box-shadow: 0 0 15px 3px rgba(0, 0, 0, .5);
+    box-shadow: 0 0 15px 3px rgba(0, 0, 0, .5);
+    background: #fff;
 
   }
 
@@ -95,10 +92,10 @@ button:active {
 
 table tr span,
 table tr td {
-  overflow: hidden;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
+  // overflow: hidden;
+  // white-space: nowrap;
+  // text-overflow: ellipsis;
+  // -o-text-overflow: ellipsis;
 }
 
 .patent-addNew {
@@ -179,23 +176,9 @@ table tr td {
 }
 
 thead>tr>.title-table {
-  background-color: #F5F5F5 !important;
+  background-color: #fff !important;
 }
 
 .ant-table-selection-column {
-  background-color: #f5f5f5 !important;
-}
-
-
-.formitems {
-  font-size: 12px;
-  margin: 10px 0;
-  color: rgba(0, 0, 0, 0.85);
-  vertical-align: top;
-
-  >p{
-    margin-left: 24px;
-    margin-top: 2px;
-  }
-
+  background-color: #fff !important;
 }

+ 17 - 0
js/component/manageCenter/top.jsx

@@ -0,0 +1,17 @@
+import React from 'react';
+import './top.less';
+import logo from '../../../image/kede.png';
+
+const Bottom = React.createClass({
+  render() {
+    return (
+      <div className="top">
+        <img className="top-logo" src={logo} alt="" />
+        科研中心RD库
+        <a href={globalConfig.context + "/admin/login"}>前往科德系统</a>
+      </div>
+    );
+  }
+});
+
+export default Bottom;

+ 29 - 0
js/component/manageCenter/top.less

@@ -0,0 +1,29 @@
+.top {
+  font-size: 16px;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  padding: 15px 40px;
+  background: rgba(4, 5, 7, 0.9);
+  color: #fff;
+  font-weight: 900;
+  font-size: 30px;
+  position: fixed;
+  top: 0;
+  left: 0;
+  right: 0;
+  z-index: 1;
+
+  .top-logo {
+    height: 80px;
+    margin-right: 20px;
+
+  }
+
+  a {
+    font-size: 16px;
+    position: absolute;
+    right: 40px;
+  }
+
+}

+ 82 - 0
js/utils/tools.js

@@ -0,0 +1,82 @@
+import React from 'react';
+import html2Canvas from "html2canvas";
+import JsPDF from "jspdf";
+import { Modal, message } from 'antd';
+
+const obj = {
+  // pdf导出
+  getPdf: function (title, id) {
+    const element = document.getElementById(id);
+    // let width = 592.28, height = 841.89;
+    let width = 595, height = 842;
+    const scale = 2;
+    let w = element.scrollWidth;
+    let h = element.scrollHeight;
+    let offsetTop = 100;
+    let offsetLeft = (window.innerWidth - 874) / 2;
+    const canvas = document.createElement('canvas');
+    let abs = 7;
+    // let win_i = 1900;
+    // let win_o = window.innerWidth;
+    // if (win_o > win_i) {
+    //   abs = (win_o - win_i) / 2
+    // }
+    canvas.width = w * scale;
+    canvas.height = h * scale;
+    let context = canvas.getContext("2d");
+    context.scale(scale, scale)
+    context.translate(-offsetLeft - abs, -offsetTop);
+    html2Canvas(element, {
+      allowTaint: true,
+      taintTest: true,
+      canvas,
+      dpi: 192,
+      background: '#fff',
+    }).then(function (canvas) {
+      let contentWidth = canvas.width,
+        contentHeight = canvas.height,
+        pageHeight = contentWidth / width * height,
+        leftHeight = contentHeight,
+        position = 0,
+        imgWidth = width,
+        imgHeight = width / contentWidth * contentHeight,
+        pageData = canvas.toDataURL('image/jpeg', 1.0),
+        pdf = new JsPDF('', 'pt', 'a4');
+      if (leftHeight < pageHeight) {
+        pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight) // 让导出的文件两边产生边距,边距是0
+      } else {
+        while (leftHeight > 0) {
+          pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
+          leftHeight -= pageHeight;
+          position -= height;
+          if (leftHeight > 0) {
+            pdf.addPage();
+          }
+        }
+      }
+      pdf.save(title + ".pdf");
+    });
+  },
+  // 登录状态
+  getLoginStatus: function (data) {
+    if (data.error[0].field == "403") {
+      Modal.error({
+        title: '提示',
+        content: (
+          <div>
+            <p>登录超时已失效,请重新登录!</p>
+          </div>
+        ),
+        okText: '重新登录',
+        onOk() {
+          window.location.href = globalConfig.context + "/RD/admin/login";
+        },
+      });
+    } else {
+      message.warning(data.error[0].message);
+    }
+  },
+
+}
+
+module.exports = obj