|
@@ -1,34 +1,148 @@
|
|
|
import React from 'react';
|
|
|
-import { Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber } from 'antd';
|
|
|
-import { techFieldList, technicalSourceList } from '../../dataDic.js';
|
|
|
-import { getTechField, getTechnicalSource, beforeUploadFile } from '../../tools.js';
|
|
|
-import './techProduct.less';
|
|
|
-import moment from 'moment';
|
|
|
+import { Icon, InputNumber, Form, Button, Input, Radio, Select, Spin, Table, message, Cascader, Modal } from 'antd';
|
|
|
+import { techFieldList, provinceArr, cognizanceStateList } from '../../dataDic.js';
|
|
|
+import { getTime, getCognizanceState } from '../../tools.js';
|
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
|
import $ from 'jquery/src/ajax';
|
|
|
+import moment from 'moment';
|
|
|
+import './cognizance.less';
|
|
|
|
|
|
-const TechProductDescFrom = Form.create()(React.createClass({
|
|
|
+const CognizanceDescFrom = Form.create()(React.createClass({
|
|
|
+ loadData() {
|
|
|
+ this.setState({
|
|
|
+ loading: true
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ method: "post",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/cognizanceDetail",
|
|
|
+ data: {
|
|
|
+ cid: this.props.data.cid,
|
|
|
+ year: this.props.data.year
|
|
|
+ },
|
|
|
+ success: function (data) {
|
|
|
+ if (data.error.length || !data.data) {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ this.state.data = data.data;
|
|
|
+ this.state.cid = this.props.data.cid;
|
|
|
+ this.state.moneyTable = [{
|
|
|
+ key: 1,
|
|
|
+ year: '第一年',
|
|
|
+ netAsset: data.data.netAsset1,
|
|
|
+ salesRevenue: data.data.salesRevenue1,
|
|
|
+ grossProfit: data.data.grossProfit1
|
|
|
+ }, {
|
|
|
+ key: 2,
|
|
|
+ year: '第二年',
|
|
|
+ netAsset: data.data.netAsset2,
|
|
|
+ salesRevenue: data.data.salesRevenue2,
|
|
|
+ grossProfit: data.data.grossProfit2
|
|
|
+ }, {
|
|
|
+ key: 3,
|
|
|
+ year: '第三年',
|
|
|
+ netAsset: data.data.netAsset3,
|
|
|
+ salesRevenue: data.data.salesRevenue3,
|
|
|
+ grossProfit: data.data.grossProfit3
|
|
|
+ }];
|
|
|
+ }.bind(this),
|
|
|
+ }).always(function () {
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ getStateData() {
|
|
|
+ this.setState({
|
|
|
+ loading: true
|
|
|
+ });
|
|
|
+ $.ajax({
|
|
|
+ method: "post",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/cognizanceLog",
|
|
|
+ data: {
|
|
|
+ cid: this.props.data.cid
|
|
|
+ },
|
|
|
+ success: function (data) {
|
|
|
+ if (data.error.length || !data.data) {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ this.state.stateTable = [];
|
|
|
+ for (let i = 0; i < data.data.length; i++) {
|
|
|
+ this.state.stateTable.push({
|
|
|
+ key: i,
|
|
|
+ recordTimeFormattedDate: data.data[i].recordTimeFormattedDate,
|
|
|
+ state: String(data.data[i].state),
|
|
|
+ principal: data.data[i].principal,
|
|
|
+ operator: data.data[i].operator,
|
|
|
+ comment: data.data[i].comment
|
|
|
+ });
|
|
|
+ };
|
|
|
+ }.bind(this),
|
|
|
+ }).always(function () {
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
loading: false,
|
|
|
- targetKeys: [],
|
|
|
- selectedKeys: [],
|
|
|
- technicalSourceOption: [],
|
|
|
+ stateOption: [],
|
|
|
+ moneyColumns: [{
|
|
|
+ title: '',
|
|
|
+ dataIndex: 'year',
|
|
|
+ key: 'year',
|
|
|
+ }, {
|
|
|
+ title: '净资产',
|
|
|
+ dataIndex: 'netAsset',
|
|
|
+ key: 'netAsset',
|
|
|
+ }, {
|
|
|
+ title: '销售收入',
|
|
|
+ dataIndex: 'salesRevenue',
|
|
|
+ key: 'salesRevenue',
|
|
|
+ }, {
|
|
|
+ title: '利润总和',
|
|
|
+ dataIndex: 'grossProfit',
|
|
|
+ key: 'grossProfit',
|
|
|
+ }],
|
|
|
+ stateColumns: [{
|
|
|
+ title: '专利状态',
|
|
|
+ dataIndex: 'state',
|
|
|
+ key: 'state',
|
|
|
+ render: (text) => { return getCognizanceState(text) }
|
|
|
+ }, {
|
|
|
+ title: '处理时间',
|
|
|
+ dataIndex: 'recordTimeFormattedDate',
|
|
|
+ key: 'recordTimeFormattedDate',
|
|
|
+ }, {
|
|
|
+ title: '负责人',
|
|
|
+ dataIndex: 'principal',
|
|
|
+ key: 'principal',
|
|
|
+ }, {
|
|
|
+ title: '操作人',
|
|
|
+ dataIndex: 'operator',
|
|
|
+ key: 'operator',
|
|
|
+ }, {
|
|
|
+ title: '备注',
|
|
|
+ dataIndex: 'comment',
|
|
|
+ key: 'comment',
|
|
|
+ }]
|
|
|
};
|
|
|
},
|
|
|
componentWillMount() {
|
|
|
let _me = this;
|
|
|
- technicalSourceList.map(function (item) {
|
|
|
- _me.state.technicalSourceOption.push(
|
|
|
- <Select.Option value={item.value} key={10000 + item.value}>{item.key}</Select.Option>
|
|
|
+ cognizanceStateList.map(function (item) {
|
|
|
+ _me.state.stateOption.push(
|
|
|
+ <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
|
|
|
)
|
|
|
});
|
|
|
- this.state.targetKeys = this.props.data.intellectualPropertyNumber;
|
|
|
- },
|
|
|
- componentWillReceiveProps(nextProps) {
|
|
|
- if (nextProps.data) {
|
|
|
- this.state.targetKeys = nextProps.data.intellectualPropertyNumber;
|
|
|
- };
|
|
|
+ this.loadData();
|
|
|
+ this.getStateData();
|
|
|
},
|
|
|
handleSubmit(e) {
|
|
|
e.preventDefault();
|
|
@@ -39,22 +153,14 @@ const TechProductDescFrom = Form.create()(React.createClass({
|
|
|
method: "POST",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/cognizance/techProduct",
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/disposeCognizanceDetail",
|
|
|
data: {
|
|
|
- id: this.props.data.id,
|
|
|
- serialNumber: values.serialNumber,
|
|
|
- productName: values.productName,
|
|
|
- technicalField1: values.techField[0],
|
|
|
- technicalField2: values.techField[1],
|
|
|
- technicalField3: values.techField[2],
|
|
|
- technicalSource: values.technicalSource,
|
|
|
- lastYearRevenue: values.lastYearRevenue,
|
|
|
- mainProduct: values.mainProduct,
|
|
|
- intellectualPropertyNumber: this.state.targetKeys.join(","),
|
|
|
- keyTechnology: values.keyTechnology,
|
|
|
- competitiveEdge: values.competitiveEdge,
|
|
|
- conditionEffect: values.conditionEffect,
|
|
|
- accountUrl:this.state.accountUrl
|
|
|
+ id: this.props.data.cid,
|
|
|
+ technicalField1: values.technicalField[0],
|
|
|
+ technicalField2: values.technicalField[1],
|
|
|
+ technicalField3: values.technicalField[2],
|
|
|
+ basicResearchCost: values.basicResearchCost,
|
|
|
+ accident: values.accident
|
|
|
}
|
|
|
}).done(function (data) {
|
|
|
if (!data.error.length) {
|
|
@@ -72,190 +178,146 @@ const TechProductDescFrom = Form.create()(React.createClass({
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- intellectualChange(nextTargetKeys, direction, moveKeys) {
|
|
|
- this.setState({ targetKeys: nextTargetKeys });
|
|
|
- },
|
|
|
- intellectualSelectChange(sourceSelectedKeys, targetSelectedKeys) {
|
|
|
- this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
|
|
|
+ componentWillReceiveProps(nextProps) {
|
|
|
+ if (!this.props.visible && nextProps.visible) {
|
|
|
+ this.getStateData();
|
|
|
+ this.loadData();
|
|
|
+ };
|
|
|
},
|
|
|
render() {
|
|
|
const FormItem = Form.Item;
|
|
|
const { getFieldDecorator } = this.props.form;
|
|
|
- const theData = this.props.data;
|
|
|
+ const theData = this.state.data;
|
|
|
const formItemLayout = {
|
|
|
- labelCol: { span: 10 },
|
|
|
+ labelCol: { span: 6 },
|
|
|
wrapperCol: { span: 12 },
|
|
|
};
|
|
|
const _me = this;
|
|
|
- return (
|
|
|
- <Form onSubmit={this.handleSubmit} className="activityCost-form">
|
|
|
- <div className="clearfix">
|
|
|
- <FormItem className="half-item"
|
|
|
- {...formItemLayout}
|
|
|
- label="编号:ps"
|
|
|
- >
|
|
|
- {getFieldDecorator('serialNumber', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.serialNumber
|
|
|
- })(
|
|
|
- <Input />
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- <FormItem className="half-item"
|
|
|
- {...formItemLayout}
|
|
|
- label="产品(服务)名称"
|
|
|
- >
|
|
|
- {getFieldDecorator('productName', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.productName
|
|
|
- })(
|
|
|
- <Input />
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- </div>
|
|
|
- <div className="clearfix">
|
|
|
- <FormItem className="half-item"
|
|
|
+ if (this.state.data) {
|
|
|
+ return (
|
|
|
+ <Form onSubmit={this.handleSubmit} id="highTechApply-form">
|
|
|
+ <div className="clearfix">
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">公司名称: </span>
|
|
|
+ <span>{theData.unitName}</span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">公司组织机构代码: </span>
|
|
|
+ <span>{theData.orgCode}</span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">公司地址: </span>
|
|
|
+ <span>{theData.postalAddress}</span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">联系人: </span>
|
|
|
+ <span>{theData.contacts}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <FormItem style={{ width: '50%' }}
|
|
|
{...formItemLayout}
|
|
|
- label="技术来源"
|
|
|
- >
|
|
|
- {getFieldDecorator('technicalSource', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.technicalSource
|
|
|
- })(
|
|
|
- <Select placeholder="选择技术来源"
|
|
|
- onChange={(e) => { this.setState({ technicalSource: e }) }}>
|
|
|
- {this.state.technicalSourceOption}
|
|
|
- </Select>
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- <FormItem className="half-item"
|
|
|
- labelCol={{ span: 10 }}
|
|
|
- label="上年度销售收入(万元)"
|
|
|
+ label="技术领域"
|
|
|
>
|
|
|
- {getFieldDecorator('lastYearRevenue', {
|
|
|
- rules: [{ type: "number", required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.lastYearRevenue ? Number(theData.lastYearRevenue) : 0
|
|
|
+ {getFieldDecorator('technicalField', {
|
|
|
+ rules: [{ type: 'array', required: true, message: '此项为必填项!' }],
|
|
|
+ initialValue: [Number(theData.technicalField1), Number(theData.technicalField2), Number(theData.technicalField3)]
|
|
|
})(
|
|
|
- <InputNumber />
|
|
|
+ <Cascader options={techFieldList} placeholder="请选择技术领域" />
|
|
|
)}
|
|
|
</FormItem>
|
|
|
- </div>
|
|
|
- <FormItem
|
|
|
- labelCol={{ span: 5 }}
|
|
|
- wrapperCol={{ span: 16 }}
|
|
|
- label="技术领域"
|
|
|
- >
|
|
|
- {getFieldDecorator('techField', {
|
|
|
- rules: [{ type: "array", required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.techField
|
|
|
- })(
|
|
|
- <Cascader
|
|
|
- options={techFieldList}
|
|
|
- onChange={(value, selectedOptions) => { this.setState({ techField: value }); console.log(value) }}
|
|
|
- placeholder="请选择"
|
|
|
- showSearch
|
|
|
- />
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- <div className="clearfix">
|
|
|
- <FormItem className="half-item"
|
|
|
- {...formItemLayout}
|
|
|
- label="是否主要产品(服务)"
|
|
|
+ <div className="clearfix">
|
|
|
+ <div>
|
|
|
+ <span className="form-title">获得知识产权数量(件): </span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">一类: </span>
|
|
|
+ <span>{theData.firstCatagory}</span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">二类: </span>
|
|
|
+ <span>{theData.secondCatagory}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className="clearfix">
|
|
|
+ <div>
|
|
|
+ <span className="form-title">人力资源状况(人): </span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">职工总数: </span>
|
|
|
+ <span>{theData.firmTotal}</span>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span className="item-title">科技人员数: </span>
|
|
|
+ <span>{theData.techTotal}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div className="form-title">近三年经营状况(万元): </div>
|
|
|
+ <Table pagination={false} dataSource={this.state.moneyTable} columns={this.state.moneyColumns} />
|
|
|
+ <div className="clearfix">
|
|
|
+ <div><span className="form-title">近三年研究开发费用总额(万元): </span></div>
|
|
|
+ <div className="third-item">
|
|
|
+ <div className="item-title">近三年研究开发费用总额</div>
|
|
|
+ <p>{theData.researchCost}</p>
|
|
|
+ </div>
|
|
|
+ <div className="third-item">
|
|
|
+ <div className="item-title">其中: 在中国境内研发费用总和</div>
|
|
|
+ <p>{theData.territory}</p>
|
|
|
+ </div>
|
|
|
+ <div className="third-item">
|
|
|
+ <div className="item-title">其中: 基础研究投入费用总额</div>
|
|
|
+ <div>
|
|
|
+ <FormItem
|
|
|
+ labelCol={{ span: 0 }}
|
|
|
+ wrapperCol={{ span: 24 }}
|
|
|
+ >
|
|
|
+ {getFieldDecorator('basicResearchCost', {
|
|
|
+ rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
|
|
|
+ initialValue: theData.basicResearchCost
|
|
|
+ })(
|
|
|
+ <InputNumber />
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span className="item-title">近一年企业总收入(万元): </span>
|
|
|
+ <span>{theData.totalRevenue}</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <span className="item-title">近一年高新技术产品收入(万元): </span>
|
|
|
+ <span>{theData.lastYearRevenue}</span>
|
|
|
+ </div>
|
|
|
+ <div className="item-title">申请认定前一年内是否发生过重大安全、重大质量或严重环境违法行为</div>
|
|
|
+ <FormItem
|
|
|
+ labelCol={{ span: 0 }}
|
|
|
+ wrapperCol={{ span: 24 }}
|
|
|
>
|
|
|
- {getFieldDecorator('mainProduct', {
|
|
|
- rules: [{ type: "number", required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.mainProduct
|
|
|
+ {getFieldDecorator('accident', {
|
|
|
+ rules: [{ type: 'number', required: true, message: '此项为必填项!' }],
|
|
|
+ initialValue: theData.accident
|
|
|
})(
|
|
|
<Radio.Group>
|
|
|
- <Radio value={1}>是</Radio>
|
|
|
<Radio value={0}>否</Radio>
|
|
|
+ <Radio value={1}>是</Radio>
|
|
|
</Radio.Group>
|
|
|
)}
|
|
|
</FormItem>
|
|
|
- </div>
|
|
|
- <p>知识产权编号:</p>
|
|
|
- <Transfer
|
|
|
- dataSource={this.props.mockData}
|
|
|
- listStyle={{
|
|
|
- width: 200,
|
|
|
- height: 200,
|
|
|
- }}
|
|
|
- titles={['未选择', '已选择']}
|
|
|
- targetKeys={this.state.targetKeys}
|
|
|
- selectedKeys={this.state.selectedKeys}
|
|
|
- onChange={this.intellectualChange}
|
|
|
- onSelectChange={this.intellectualSelectChange}
|
|
|
- render={item => `${item.name}-${item.key}`}
|
|
|
- />
|
|
|
- <div className="clearfix">
|
|
|
- <FormItem className="half-item"
|
|
|
- labelCol={{ span: 0 }}
|
|
|
- wrapperCol={{ span: 22 }}
|
|
|
- >
|
|
|
- <p>关键技术及主要技术指标(限400字)</p>
|
|
|
- {getFieldDecorator('keyTechnology', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.keyTechnology
|
|
|
- })(
|
|
|
- <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
|
|
|
- )}
|
|
|
+ <div className="form-title">状态流转记录: </div>
|
|
|
+ <Table pagination={false} dataSource={this.state.stateTable} columns={this.state.stateColumns} />
|
|
|
+ <FormItem style={{ marginTop: '20px' }}>
|
|
|
+ <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
|
|
|
+ <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
|
|
|
</FormItem>
|
|
|
- <FormItem className="half-item"
|
|
|
- labelCol={{ span: 0 }}
|
|
|
- wrapperCol={{ span: 22 }}
|
|
|
- >
|
|
|
- <p>与同类产品(服务)的竞争优势(限400字)</p>
|
|
|
- {getFieldDecorator('competitiveEdge', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.competitiveEdge
|
|
|
- })(
|
|
|
- <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- <p style={{ lineHeight: "32px" }}>知识产权获得情况及其对产品(服务)在技术上发挥的支持作用(限400字)*</p>
|
|
|
- <FormItem className="half-item"
|
|
|
- labelCol={{ span: 0 }}
|
|
|
- wrapperCol={{ span: 22 }}
|
|
|
- >
|
|
|
- {getFieldDecorator('conditionEffect', {
|
|
|
- rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
- initialValue: theData.conditionEffect
|
|
|
- })(
|
|
|
- <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
|
|
|
- )}
|
|
|
- </FormItem>
|
|
|
- </div>
|
|
|
- <div style={{ width: '50%' }}>
|
|
|
- <Upload
|
|
|
- name="ratepay"
|
|
|
- action={globalConfig.context + "/techservice/cognizance/upload"}
|
|
|
- data={{ 'sign': this.props.year + 'proof' }}
|
|
|
- beforeUpload={beforeUploadFile}
|
|
|
- onChange={(info) => {
|
|
|
- if (info.file.status !== 'uploading') {
|
|
|
- console.log(info.file, info.fileList);
|
|
|
- }
|
|
|
- if (info.file.status === 'done') {
|
|
|
- message.success(`${info.file.name} 文件上传成功!`);
|
|
|
- this.state.accountUrl = info.file.response.data;
|
|
|
- } else if (info.file.status === 'error') {
|
|
|
- message.error(`${info.file.name} 文件上传失败。`);
|
|
|
- }
|
|
|
- }}
|
|
|
- >
|
|
|
- <Button><Icon type="upload" /> 上传台账 </Button>
|
|
|
- </Upload>
|
|
|
- </div>
|
|
|
- <FormItem style={{ marginTop: '20px' }}>
|
|
|
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
|
|
|
- <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
|
|
|
- </FormItem>
|
|
|
- </Form >
|
|
|
- );
|
|
|
+ </Form >
|
|
|
+ );
|
|
|
+ } else {
|
|
|
+ return (<div></div>)
|
|
|
+ };
|
|
|
},
|
|
|
}));
|
|
|
|
|
|
-const TechProductDesc = React.createClass({
|
|
|
+const CognizanceDesc = React.createClass({
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
visible: false,
|
|
@@ -291,21 +353,148 @@ const TechProductDesc = React.createClass({
|
|
|
return (
|
|
|
<div className="patent-addNew">
|
|
|
<Spin spinning={this.state.loading} className='spin-box'>
|
|
|
- <Modal title="上年度高新技术产品(服务)情况表" visible={this.state.visible}
|
|
|
+ <Modal title="高企管理" visible={this.state.visible}
|
|
|
onOk={this.handleOk} onCancel={this.handleCancel}
|
|
|
- width='800px'
|
|
|
+ width='1000px'
|
|
|
footer=''
|
|
|
>
|
|
|
- <TechProductDescFrom data={this.props.data} mockData={this.props.mockData}
|
|
|
+ <CognizanceDescFrom
|
|
|
+ visible={this.state.visible}
|
|
|
+ data={this.props.data}
|
|
|
spinState={this.spinChange} closeModal={this.handleCancel} />
|
|
|
</Modal>
|
|
|
</Spin>
|
|
|
</div>
|
|
|
);
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+const CognizanceAdd = React.createClass({
|
|
|
+ getInitialState() {
|
|
|
+ return {
|
|
|
+ visible: false,
|
|
|
+ loading: false,
|
|
|
+ yearOption: []
|
|
|
+ };
|
|
|
+ },
|
|
|
+ componentWillReceiveProps(nextProps) {
|
|
|
+ this.state.visible = nextProps.showAdd
|
|
|
+ },
|
|
|
+ componentWillMount() {
|
|
|
+ let d = new Date();
|
|
|
+ let _me = this;
|
|
|
+ d = d.getFullYear() - 1;
|
|
|
+ this.state.thisYear = d;
|
|
|
+ for (let i = d; i < d + 20; i++) {
|
|
|
+ _me.state.yearOption.push(
|
|
|
+ <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
|
|
|
+ )
|
|
|
+ };
|
|
|
+ },
|
|
|
+ showModal() {
|
|
|
+ this.setState({
|
|
|
+ visible: true,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleOk() {
|
|
|
+ this.setState({
|
|
|
+ loading: true
|
|
|
+ });
|
|
|
+ if (!this.state.year) {
|
|
|
+ message.warning('请选择年份!');
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ if (!this.state.contacts) {
|
|
|
+ message.warning('请选择一个联系人!');
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ $.ajax({
|
|
|
+ method: "POST",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/applyCognizance",
|
|
|
+ data: {
|
|
|
+ year: this.state.year,
|
|
|
+ contacts: this.state.contacts,
|
|
|
+ comment: this.state.comment,
|
|
|
+ state: this.state.year == this.state.thisYear ? 0 : 7
|
|
|
+ }
|
|
|
+ }).done(function (data) {
|
|
|
+ if (!data.error.length) {
|
|
|
+ message.success('保存成功!');
|
|
|
+ this.setState({
|
|
|
+ visible: false
|
|
|
+ });
|
|
|
+ this.props.closeAdd(false);
|
|
|
+ } else {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ this.setState({
|
|
|
+ loading: false
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }.bind(this));
|
|
|
+ },
|
|
|
+ handleCancel(e) {
|
|
|
+ this.setState({
|
|
|
+ visible: false,
|
|
|
+ });
|
|
|
+ this.props.closeAdd(false);
|
|
|
+ },
|
|
|
+ spinChange(e) {
|
|
|
+ this.setState({
|
|
|
+ loading: e
|
|
|
+ });
|
|
|
},
|
|
|
+ render() {
|
|
|
+ return (
|
|
|
+ <div className="cognizance-add">
|
|
|
+ <Modal title="高企申请" visible={this.state.visible}
|
|
|
+ onOk={this.handleOk} onCancel={this.handleCancel}
|
|
|
+ width='800px'
|
|
|
+ footer={[
|
|
|
+ <Button key="submit" type="primary" loading={this.state.loading} onClick={this.handleOk}>
|
|
|
+ 提交
|
|
|
+ </Button>,
|
|
|
+ <Button key="back" onClick={this.handleCancel}>
|
|
|
+ 返回
|
|
|
+ </Button>,
|
|
|
+ ]}
|
|
|
+ >
|
|
|
+ <div className="clearfix">
|
|
|
+ <div className="half-item">
|
|
|
+ <span>选择申请年份: </span>
|
|
|
+ <Select placeholder="请选择年份" style={{ width: 200 }}
|
|
|
+ onSelect={(e, n) => { this.state.year = e }}>
|
|
|
+ {this.state.yearOption}
|
|
|
+ </Select>
|
|
|
+ </div>
|
|
|
+ <div className="half-item">
|
|
|
+ <span>选择联系人: </span>
|
|
|
+ <Select placeholder="请选择年份" style={{ width: 200 }}
|
|
|
+ onSelect={(e, n) => { this.state.contacts = e }}>
|
|
|
+ {this.props.contactsOption}
|
|
|
+ </Select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <p>备注: </p>
|
|
|
+ <p>
|
|
|
+ <Input type="textarea" rows={6} onChange={(e) => { this.state.comment = e.target.value; }} />
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </Modal>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
-const TechProduct = React.createClass({
|
|
|
+const Cognizance = React.createClass({
|
|
|
loadData(pageNo) {
|
|
|
this.state.data = [];
|
|
|
this.setState({
|
|
@@ -315,73 +504,60 @@ const TechProduct = React.createClass({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/cognizance/techProductList",
|
|
|
- data: {
|
|
|
- pageNo: pageNo || 1,
|
|
|
- pageSize: this.state.pagination.pageSize
|
|
|
- }
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/getContacts"
|
|
|
}), $.ajax({
|
|
|
- method: "get",
|
|
|
+ method: "post",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/cognizance/intellectualList",
|
|
|
+ url: globalConfig.context + "/techservice/cognizance/listCognizance",
|
|
|
data: {
|
|
|
pageNo: pageNo || 1,
|
|
|
- pageSize: 99,
|
|
|
+ pageSize: this.state.pagination.pageSize
|
|
|
}
|
|
|
})).done((data1, data2) => {
|
|
|
- let data = data1[0];
|
|
|
- let intellectualList = data2[0];
|
|
|
- if (data.error.length || !data.data || !data.data.list) {
|
|
|
- message.warning(data.error[0].message);
|
|
|
- return;
|
|
|
+ this.state.data = [];
|
|
|
+ if (data1[0].error || !data1[0].data) {
|
|
|
+ if (data1[0].error.length) {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ return;
|
|
|
+ };
|
|
|
};
|
|
|
- if (intellectualList.error.length || !intellectualList.data || !intellectualList.data.list) {
|
|
|
- message.warning(intellectualList.error[0].message);
|
|
|
- return;
|
|
|
+ if (data2[0].error || !data2[0].data || !data2[0].data.list) {
|
|
|
+ if (data2[0].error.length) {
|
|
|
+ message.warning(data2[0].error[0].message);
|
|
|
+ return;
|
|
|
+ };
|
|
|
};
|
|
|
- let theArr = [];
|
|
|
- for (let i = 0; i < intellectualList.data.list.length; i++) {
|
|
|
- theArr.push({
|
|
|
- key: intellectualList.data.list[i].intellectualPropertyNumber,
|
|
|
- name: intellectualList.data.list[i].intellectualPropertyName
|
|
|
- });
|
|
|
+ let _me = this;
|
|
|
+ for (let item in data1[0].data) {
|
|
|
+ let theData = item + ' -- ' + data1[0].data[item];
|
|
|
+ _me.state.contactsOption.push(
|
|
|
+ <Select.Option value={theData} key={theData}>{theData}</Select.Option>
|
|
|
+ );
|
|
|
};
|
|
|
- this.state.mockData = theArr;
|
|
|
- for (let i = 0; i < data.data.list.length; i++) {
|
|
|
- let thisdata = data.data.list[i];
|
|
|
+ for (let i = 0; i < data2[0].data.list.length; i++) {
|
|
|
+ let thisdata = data2[0].data.list[i];
|
|
|
this.state.data.push({
|
|
|
key: i,
|
|
|
- id: thisdata.id,
|
|
|
uid: thisdata.uid,
|
|
|
-
|
|
|
- mockData: this.state.mockData,
|
|
|
-
|
|
|
- serialNumber: thisdata.serialNumber,
|
|
|
- productName: thisdata.productName,
|
|
|
-
|
|
|
- techField: [Number(thisdata.technicalField1), Number(thisdata.technicalField2), Number(thisdata.technicalField3)],
|
|
|
- technicalField: getTechField(thisdata.technicalField1, thisdata.technicalField2, thisdata.technicalField3),
|
|
|
- technicalField1: thisdata.technicalField1,
|
|
|
- technicalField2: thisdata.technicalField2,
|
|
|
- technicalField3: thisdata.technicalField3,
|
|
|
-
|
|
|
- technicalSource: String(thisdata.technicalSource),
|
|
|
- lastYearRevenue: thisdata.lastYearRevenue,
|
|
|
- mainProduct: thisdata.mainProduct,
|
|
|
-
|
|
|
- PropertyNumber: thisdata.intellectualPropertyNumber,
|
|
|
- intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [],
|
|
|
-
|
|
|
- keyTechnology: thisdata.keyTechnology,
|
|
|
- competitiveEdge: thisdata.competitiveEdge,
|
|
|
- conditionEffect: thisdata.conditionEffect,
|
|
|
+ cid: thisdata.cid,
|
|
|
year: thisdata.year,
|
|
|
+ serialNumber: thisdata.serialNumber,
|
|
|
+ locationProvince: thisdata.locationProvince,
|
|
|
+ unitName: thisdata.unitName,
|
|
|
+ contacts: thisdata.contacts,
|
|
|
createTime: thisdata.createTime,
|
|
|
+ comment: thisdata.comment,
|
|
|
+ state: thisdata.state,
|
|
|
+ certificateNumber: thisdata.certificateNumber,
|
|
|
+ issuingDate: thisdata.issuingDate,
|
|
|
+ consultant: thisdata.consultant,
|
|
|
+ createTimeFormattedDate: thisdata.createTimeFormattedDate,
|
|
|
+ issuingDateFormattedDate: thisdata.issuingDateFormattedDate
|
|
|
});
|
|
|
};
|
|
|
- this.state.pagination.current = data.data.pageNo;
|
|
|
- this.state.pagination.total = data.data.totalCount;
|
|
|
+ this.state.pagination.current = data2[0].data.pageNo;
|
|
|
+ this.state.pagination.total = data2[0].data.totalCount;
|
|
|
this.setState({
|
|
|
dataSource: this.state.data,
|
|
|
pagination: this.state.pagination
|
|
@@ -394,9 +570,12 @@ const TechProduct = React.createClass({
|
|
|
},
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
+ contactsOption: [],
|
|
|
selectedRowKeys: [],
|
|
|
selectedRows: [],
|
|
|
loading: false,
|
|
|
+ showAdd: false,
|
|
|
+ showDesc: false,
|
|
|
pagination: {
|
|
|
defaultCurrent: 1,
|
|
|
defaultPageSize: 10,
|
|
@@ -411,35 +590,39 @@ const TechProduct = React.createClass({
|
|
|
},
|
|
|
columns: [
|
|
|
{
|
|
|
- title: '产品编号',
|
|
|
+ title: '编号',
|
|
|
dataIndex: 'serialNumber',
|
|
|
key: 'serialNumber'
|
|
|
}, {
|
|
|
- title: '产品(服务)名称',
|
|
|
- dataIndex: 'productName',
|
|
|
- key: 'productName'
|
|
|
+ title: '联系人',
|
|
|
+ dataIndex: 'contacts',
|
|
|
+ key: 'contacts'
|
|
|
+ }, {
|
|
|
+ title: '派单日',
|
|
|
+ dataIndex: 'createTimeFormattedDate',
|
|
|
+ key: 'createTimeFormattedDate'
|
|
|
}, {
|
|
|
- title: '技术领域',
|
|
|
- dataIndex: 'technicalField',
|
|
|
- key: 'technicalField'
|
|
|
+ title: '状态',
|
|
|
+ dataIndex: 'state',
|
|
|
+ key: 'state',
|
|
|
+ render: (text) => { return getCognizanceState(text) }
|
|
|
}, {
|
|
|
- title: '技术来源',
|
|
|
- dataIndex: 'technicalSource',
|
|
|
- key: 'technicalSource',
|
|
|
- render: (text) => { return getTechnicalSource(text) }
|
|
|
+ title: '证书编号',
|
|
|
+ dataIndex: 'certificateNumber',
|
|
|
+ key: 'certificateNumber'
|
|
|
}, {
|
|
|
- title: '上年度销售收入(万元)',
|
|
|
- dataIndex: 'lastYearRevenue',
|
|
|
- key: 'lastYearRevenue'
|
|
|
+ title: '发证日',
|
|
|
+ dataIndex: 'issuingDateFormattedDate',
|
|
|
+ key: 'issuingDateFormattedDate'
|
|
|
}, {
|
|
|
- title: '是否主要产品(服务)',
|
|
|
- dataIndex: 'mainProduct',
|
|
|
- key: 'mainProduct',
|
|
|
- render: (text) => { if (text == "1") { return '是' } else { return '否' } }
|
|
|
+ title: '到期日',
|
|
|
+ dataIndex: 'issuingDate',
|
|
|
+ key: 'issuingDate',
|
|
|
+ render: (text) => { return getTime(text, 36) }
|
|
|
}, {
|
|
|
- title: '知识产权编号',
|
|
|
- dataIndex: 'PropertyNumber',
|
|
|
- key: 'PropertyNumber'
|
|
|
+ title: '咨询师',
|
|
|
+ dataIndex: 'consultant',
|
|
|
+ key: 'consultant'
|
|
|
}
|
|
|
],
|
|
|
dataSource: []
|
|
@@ -454,48 +637,57 @@ const TechProduct = React.createClass({
|
|
|
showDesc: true
|
|
|
});
|
|
|
},
|
|
|
- delectRow() {
|
|
|
- let deletedIds = [];
|
|
|
- for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
|
|
|
- let rowItem = this.state.selectedRows[idx];
|
|
|
- if (rowItem.id) {
|
|
|
- deletedIds.push(rowItem.id)
|
|
|
- }
|
|
|
- }
|
|
|
+ addClick() {
|
|
|
this.setState({
|
|
|
- selectedRowKeys: [],
|
|
|
- loading: deletedIds.length > 0
|
|
|
+ showAdd: true
|
|
|
});
|
|
|
- $.ajax({
|
|
|
- method: "POST",
|
|
|
- dataType: "json",
|
|
|
- crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/cognizance/deleteTechProduct",
|
|
|
- data: {
|
|
|
- ids: deletedIds
|
|
|
- }
|
|
|
- }).done(function (data) {
|
|
|
- if (!data.error.length) {
|
|
|
- message.success('保存成功!');
|
|
|
- this.setState({
|
|
|
- loading: false,
|
|
|
- });
|
|
|
- } else {
|
|
|
- message.warning(data.error[0].message);
|
|
|
- };
|
|
|
- this.loadData();
|
|
|
- }.bind(this));
|
|
|
},
|
|
|
+ // delectRow() {
|
|
|
+ // let deletedIds = [];
|
|
|
+ // for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
|
|
|
+ // let rowItem = this.state.selectedRows[idx];
|
|
|
+ // if (rowItem.id) {
|
|
|
+ // deletedIds.push(rowItem.id)
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // this.setState({
|
|
|
+ // selectedRowKeys: [],
|
|
|
+ // loading: deletedIds.length > 0
|
|
|
+ // });
|
|
|
+ // $.ajax({
|
|
|
+ // method: "POST",
|
|
|
+ // dataType: "json",
|
|
|
+ // crossDomain: false,
|
|
|
+ // url: globalConfig.context + "/techservice/cognizance/deleteTechProduct",
|
|
|
+ // data: {
|
|
|
+ // ids: deletedIds
|
|
|
+ // }
|
|
|
+ // }).done(function (data) {
|
|
|
+ // if (!data.error.length) {
|
|
|
+ // message.success('保存成功!');
|
|
|
+ // this.setState({
|
|
|
+ // loading: false,
|
|
|
+ // });
|
|
|
+ // } else {
|
|
|
+ // message.warning(data.error[0].message);
|
|
|
+ // };
|
|
|
+ // this.loadData();
|
|
|
+ // }.bind(this));
|
|
|
+ // },
|
|
|
closeDesc(e) {
|
|
|
this.state.showDesc = e;
|
|
|
this.loadData();
|
|
|
},
|
|
|
- search() {
|
|
|
- this.loadData();
|
|
|
- },
|
|
|
- reset() {
|
|
|
+ closeAdd(e) {
|
|
|
+ this.state.showAdd = e;
|
|
|
this.loadData();
|
|
|
},
|
|
|
+ // search() {
|
|
|
+ // this.loadData();
|
|
|
+ // },
|
|
|
+ // reset() {
|
|
|
+ // this.loadData();
|
|
|
+ // },
|
|
|
render() {
|
|
|
const rowSelection = {
|
|
|
selectedRowKeys: this.state.selectedRowKeys,
|
|
@@ -510,13 +702,13 @@ const TechProduct = React.createClass({
|
|
|
return (
|
|
|
<div className="user-content" >
|
|
|
<div className="content-title">
|
|
|
- <span>上年度高新技术产品(服务)情况表</span>
|
|
|
+ <span>高企申请管理</span>
|
|
|
</div>
|
|
|
<div className="user-search">
|
|
|
<p>
|
|
|
<Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
|
|
|
- onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
|
|
|
- <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
|
|
|
+ onClick={this.addClick}>添加<Icon type="plus" /></Button>
|
|
|
+ <Button style={{ background: "#3fcf9e", border: "none", color: "#fff",display:'none' }}
|
|
|
disabled={!hasSelected}
|
|
|
onClick={this.delectRow}>删除<Icon type="minus" /></Button>
|
|
|
</p>
|
|
@@ -526,16 +718,21 @@ const TechProduct = React.createClass({
|
|
|
<Table columns={this.state.columns}
|
|
|
dataSource={this.state.dataSource}
|
|
|
pagination={this.state.pagination}
|
|
|
- rowSelection={rowSelection}
|
|
|
+ //rowSelection={rowSelection}
|
|
|
onRowClick={this.tableRowClick} />
|
|
|
</Spin>
|
|
|
</div>
|
|
|
- <TechProductDesc data={this.state.RowData}
|
|
|
- mockData={this.state.mockData}
|
|
|
- showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
|
|
|
+ <CognizanceDesc
|
|
|
+ data={this.state.RowData}
|
|
|
+ showDesc={this.state.showDesc}
|
|
|
+ closeDesc={this.closeDesc} />
|
|
|
+ <CognizanceAdd
|
|
|
+ contactsOption={this.state.contactsOption}
|
|
|
+ showAdd={this.state.showAdd}
|
|
|
+ closeAdd={this.closeAdd} />
|
|
|
</div >
|
|
|
);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
-export default TechProduct;
|
|
|
+export default Cognizance;
|