123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- import React from 'react';
- import { Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, Cascader, Transfer, InputNumber } from 'antd';
- import { technicalSourceList } from '../../dataDic.js';
- import { techFieldList, getTechField } from '../../DicTechFieldList.js';
- import { getTechnicalSource, beforeUploadFile, newDownloadFile } from '../../tools.js';
- import './techProduct.less';
- import moment from 'moment';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- if (!Array.prototype.includes) {
- Object.defineProperty(Array.prototype, 'includes', {
- value: function (searchElement, fromIndex) {
- // 1. Let O be ? ToObject(this value).
- if (this == null) {
- throw new TypeError('"this" is null or not defined');
- }
- var o = Object(this);
- // 2. Let len be ? ToLength(? Get(O, "length")).
- var len = o.length >>> 0;
- // 3. If len is 0, return false.
- if (len === 0) {
- return false;
- }
- // 4. Let n be ? ToInteger(fromIndex).
- // (If fromIndex is undefined, this step produces the value 0.)
- var n = fromIndex | 0;
- // 5. If n ≥ 0, then
- // a. Let k be n.
- // 6. Else n < 0,
- // a. Let k be len + n.
- // b. If k < 0, let k be 0.
- var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
- // 7. Repeat, while k < len
- while (k < len) {
- // a. Let elementK be the result of ? Get(O, ! ToString(k)).
- // b. If SameValueZero(searchElement, elementK) is true, return true.
- // c. Increase k by 1.
- // NOTE: === provides the correct "SameValueZero" comparison needed here.
- if (o[k] === searchElement) {
- return true;
- }
- k++;
- }
- // 8. Return false
- return false;
- }
- });
- }
- const TechProductDescFrom = Form.create()(React.createClass({
- getInitialState() {
- return {
- loading: false,
- targetKeys: [],
- selectedKeys: [],
- technicalSourceOption: [],
- };
- },
- 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>
- )
- });
- this.state.targetKeys = this.props.data.intellectualPropertyNumber || [];
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible && nextProps.data) {
- this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
- this.props.form.resetFields();
- this.state.accountUrl = [];
- this.state.fileList = [];
- };
- },
- handleSubmit(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- if (!err) {
- this.props.spinState(true);
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/cognizance/techProduct",
- 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
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('保存成功!');
- this.props.clickOk();
- this.props.form.resetFields();
- this.state.targetKeys = [];
- this.state.selectedKeys = [];
- this.props.spinState(false);
- } else {
- message.warning(data.error[0].message);
- this.props.spinState(false);
- }
- }.bind(this));
- }
- });
- },
- intellectualChange(nextTargetKeys, direction, moveKeys) {
- this.setState({ targetKeys: nextTargetKeys });
- },
- intellectualSelectChange(sourceSelectedKeys, targetSelectedKeys) {
- this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
- },
- render() {
- const FormItem = Form.Item;
- const { getFieldDecorator } = this.props.form;
- const theData = this.props.data;
- const formItemLayout = {
- labelCol: { span: 10 },
- wrapperCol: { span: 12 },
- };
- const _me = this;
- return (
- <Form onSubmit={this.handleSubmit} id="techProduct-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"
- {...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="上年度销售收入(万元)"
- >
- {getFieldDecorator('lastYearRevenue', {
- rules: [{ type: "number", required: true, message: '此项为必填项!' }],
- initialValue: theData.lastYearRevenue ? Number(theData.lastYearRevenue) : 0
- })(
- <InputNumber min={0} max={999999} step={0.01} />
- )}
- </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 }); }}
- placeholder="请选择"
- showSearch
- />
- )}
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="是否主要产品(服务)"
- >
- {getFieldDecorator('mainProduct', {
- rules: [{ type: "number", required: true, message: '此项为必填项!' }],
- initialValue: theData.mainProduct
- })(
- <Radio.Group>
- <Radio value={1}>是</Radio>
- <Radio value={0}>否</Radio>
- </Radio.Group>
- )}
- </FormItem>
- </div>
- <p>知识产权编号:</p>
- <Transfer
- dataSource={this.props.mockData}
- listStyle={{
- width: 300,
- height: 300,
- }}
- titles={['未选择', '已选择']}
- targetKeys={this.state.targetKeys}
- selectedKeys={this.state.selectedKeys}
- onChange={this.intellectualChange}
- onSelectChange={this.intellectualSelectChange}
- render={item => `${item.name}-${item.number}`}
- />
- <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; } }} />
- )}
- </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>
- <FormItem className="half-item"
- labelCol={{ span: 0 }}
- wrapperCol={{ span: 22 }}
- >
- <p style={{ lineHeight: "27px" }}>知识产权获得情况及其对产品(服务)在技术上发挥的支持作用(限400字)*</p>
- {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 + "/api/user/cognizance/uploadTecProduct"}
- data={{ 'sign': 'tech_product' }}
- beforeUpload={beforeUploadFile}
- fileList={this.state.fileList}
- onChange={(info) => {
- if (info.file.status !== 'uploading') {
- // console.log(info.file, info.fileList);
- }
- if (info.file.status === 'done') {
- if (!info.file.response.error.length) {
- message.success(`${info.file.name} 文件上传成功!`);
- } else {
- message.warning(info.file.response.error[0].message);
- return;
- };
- this.state.accountUrl = info.file.response.data;
- } else if (info.file.status === 'error') {
- message.error(`${info.file.name} 文件上传失败。`);
- };
- this.setState({ fileList: info.fileList.slice(-1) });
- }}
- >
- <Button><Icon type="upload" /> 上传高新技术产品台帐 </Button>
- </Upload>
- <p style={{ marginTop: '10px' }}>{theData.accountUrl ? <a onClick={newDownloadFile.bind(null, theData.id, 'tech_product', '/api/user/cognizance/downloadTecProduct')}>{theData.accountDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
- </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 >
- );
- },
- }));
- const TechProductDesc = React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false
- };
- },
- componentWillReceiveProps(nextProps) {
- this.state.visible = nextProps.showDesc
- },
- showModal() {
- this.setState({
- visible: true,
- });
- },
- handleOk() {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false, true);
- },
- handleCancel(e) {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false);
- },
- spinChange(e) {
- this.setState({
- loading: e
- });
- },
- render() {
- return (
- <div className="patent-addNew">
- <Modal maskClosable={false} title="上年度高新技术产品(服务)情况表" visible={this.state.visible}
- onOk={this.handleOk} onCancel={this.handleCancel}
- width='1200px'
- footer='' >
- <Spin spinning={this.state.loading} className='spin-box'>
- <TechProductDescFrom
- data={this.props.data}
- mockData={this.props.mockData}
- spinState={this.spinChange}
- closeModal={this.handleCancel}
- visible={this.state.visible}
- clickOk={this.handleOk} />
- </Spin>
- </Modal>
- </div>
- );
- },
- });
- const TechProduct = React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- loading: true
- });
- $.when($.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/cognizance/techProductList",
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize
- }
- }), $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/cognizance/intellectualList",
- data: {
- pageNo: pageNo || 1,
- pageSize: 99,
- }
- })).done((data1, data2) => {
- let data = data1[0];
- let intellectualList = data2[0];
- if (!data.data || !data.data.list) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- this.state.ButtonDisabled = true;
- };
- return;
- };
- if (!intellectualList.data || !intellectualList.data.list) {
- if (intellectualList.error && intellectualList.error.length) {
- message.warning(intellectualList.error[0].message);
- this.state.ButtonDisabled = true;
- };
- return;
- };
- let theArr = [], theObj = {};
- for (let i = 0; i < intellectualList.data.list.length; i++) {
- theArr.push({
- key: intellectualList.data.list[i].id,
- number: intellectualList.data.list[i].intellectualPropertyNumber,
- name: intellectualList.data.list[i].intellectualPropertyName
- });
- theObj[intellectualList.data.list[i].id] = intellectualList.data.list[i].intellectualPropertyNumber;
- };
- this.state.mockData = theArr;
- this.state.mockDataObj = theObj;
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- this.state.data.push({
- key: i,
- id: thisdata.id,
- uid: thisdata.uid,
- mockData: this.state.mockData,
- mockDataObj: theObj,
- serialNumber: thisdata.serialNumber,
- productName: thisdata.productName,
- techField: [thisdata.technicalField1, thisdata.technicalField2, 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,
- year: thisdata.year,
- createTime: thisdata.createTime,
- accountDownloadFileName: thisdata.accountDownloadFileName,
- accountUrl: thisdata.accountUrl
- });
- };
- this.state.pagination.current = data.data.pageNo;
- this.state.pagination.total = data.data.totalCount;
- this.setState({
- dataSource: this.state.data,
- pagination: this.state.pagination
- });
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- getInitialState() {
- return {
- selectedRowKeys: [],
- selectedRows: [],
- loading: false,
- mockData:[],
- mockDataObj:{},
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function (page) {
- this.loadData(page);
- }.bind(this),
- showTotal: function (total) {
- return '共' + total + '条数据';
- }
- },
- columns: [
- {
- title: '产品编号',
- dataIndex: 'serialNumber',
- key: 'serialNumber'
- }, {
- title: '产品(服务)名称',
- dataIndex: 'productName',
- key: 'productName'
- }, {
- title: '技术领域',
- dataIndex: 'technicalField',
- key: 'technicalField'
- }, {
- title: '技术来源',
- dataIndex: 'technicalSource',
- key: 'technicalSource',
- render: (text) => { return getTechnicalSource(text) }
- }, {
- title: '上年度销售收入(万元)',
- dataIndex: 'lastYearRevenue',
- key: 'lastYearRevenue'
- }, {
- title: '是否主要产品(服务)',
- dataIndex: 'mainProduct',
- key: 'mainProduct',
- render: (text) => { if (text == "1") { return '是' } else { return '否' } }
- }, {
- title: '知识产权编号',
- dataIndex: 'PropertyNumber',
- key: 'PropertyNumber',
- render: (text) => {
- let arr = [], _me = this;
- if (text && text.split(',').length) {
- text.split(',').map((item) => {
- arr.push(_me.state.mockDataObj[item]);
- });
- };
- return arr.join(',');
- }
- }
- ],
- dataSource: []
- };
- },
- componentWillMount() {
- this.loadData();
- },
- tableRowClick(record, index) {
- this.state.RowData = record;
- this.setState({
- 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)
- }
- }
- this.setState({
- selectedRowKeys: [],
- loading: deletedIds.length > 0
- });
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/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, s) {
- this.state.showDesc = e;
- if (s) {
- this.loadData();
- };
- },
- search() {
- this.loadData();
- },
- reset() {
- this.loadData();
- },
- render() {
- const rowSelection = {
- selectedRowKeys: this.state.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.setState({
- selectedRows: selectedRows,
- selectedRowKeys: selectedRowKeys
- });
- }
- };
- const hasSelected = this.state.selectedRowKeys.length > 0;
- return (
- <div className="user-content" >
- <div className="content-title">
- <span>高新技术产品(服务)情况表</span>
- </div>
- <div className="user-search">
- <p>
- <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
- disabled={this.state.ButtonDisabled}
- onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
- <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
- disabled={!hasSelected}
- onClick={this.delectRow}>删除<Icon type="minus" /></Button>
- </p>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table columns={this.state.columns}
- dataSource={this.state.dataSource}
- pagination={this.state.pagination}
- rowSelection={rowSelection}
- style={{
- cursor: 'pointer',
- }}
- onRowClick={this.tableRowClick} />
- </Spin>
- </div>
- <TechProductDesc data={this.state.RowData}
- mockData={this.state.mockData}
- showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
- </div >
- );
- }
- });
- export default TechProduct;
|