123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- import React from 'react';
- import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload, Switch } from 'antd';
- import './techProduct.less';
- import { getConversionForm, beforeUploadFile, newDownloadFile, getProportion, saveProportion, getPreview } from '../../../../tools.js';
- import { conversionFormList, technicalSourceList } from '../../../../dataDic.js';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- const AchievementDescFrom = Form.create()(React.createClass({
- getInitialState() {
- return {
- loading: false,
- yearOption: [],
- conversionFormOption: [],
- technicalSourceOption: []
- };
- },
- componentWillMount() {
- let d = new Date();
- let _me = this;
- d = d.getFullYear();
- for (let i = d; i > d - 20; i--) {
- _me.state.yearOption.push(
- <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
- )
- };
- conversionFormList.map(function (item) {
- _me.state.conversionFormOption.push(
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
- )
- });
- technicalSourceList.map(function (item) {
- _me.state.technicalSourceOption.push(
- <Select.Option value={item.key} key={item.key}>{item.key}</Select.Option>
- )
- });
- if (this.props.activityNumberList && this.props.activityNumberList.length) {
- for (let i = 0; i < this.props.activityNumberList.length; i++) {
- _me.state.technicalSourceOption.push(
- <Select.Option value={this.props.activityNumberList[i].activityNumber}
- key={this.props.activityNumberList[i].uid}>
- {this.props.activityNumberList[i].activityName}-{this.props.activityNumberList[i].activityNumber}
- </Select.Option>
- )
- };
- };
- },
- handleSubmit(e) {
- e.preventDefault();
- if (!this.state.year && !this.props.data.year) {
- message.warning("请选择一个年份!");
- return;
- };
- this.props.form.validateFields((err, values) => {
- if (!err) {
- this.props.spinState(true);
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/disposeAchievement",
- data: {
- id: this.props.data.id,
- uid: this.props.uid,
- achievementName: values.achievementName,
- source: values.source,
- conversionForm: values.conversionForm,
- conversionResult: values.conversionResult,
- year: this.state.year || this.props.data.year,
- enclosureUrl: this.state.enclosureUrl
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('保存成功!');
- this.props.clickOk();
- this.props.spinState(false);
- this.props.form.resetFields();
- } else {
- message.warning(data.error[0].message);
- this.props.spinState(false);
- }
- }.bind(this));
- }
- });
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible) {
- this.props.form.resetFields();
- this.state.fileList = [];
- this.state.enclosureUrl = undefined;
- };
- },
- render() {
- const FormItem = Form.Item;
- const { getFieldDecorator } = this.props.form;
- const theData = this.props.data;
- const formItemLayout = {
- labelCol: { span: 4 },
- wrapperCol: { span: 16 },
- };
- const _me = this;
- return (
- <Form onSubmit={this.handleSubmit} className="activityCost-form">
- <div className="activityCost-title"><span>年份: </span>
- {
- theData.year ? <span>{theData.year}</span> :
- <Select placeholder="请选择年份" style={{ width: 200 }}
- onSelect={(e, n) => { this.state.year = e }}>
- {this.state.yearOption}
- </Select>
- }
- </div>
- <div className="clearfix">
- <FormItem
- {...formItemLayout}
- label="成果名称"
- >
- {getFieldDecorator('achievementName', {
- rules: [{ type: 'string', required: true, message: '此项为必填项!' }],
- initialValue: theData.achievementName
- })(
- <Input />
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="成果来源"
- >
- {getFieldDecorator('source', {
- rules: [{ type: 'string', required: true, message: '此项为必填项!' }],
- initialValue: theData.source
- })(
- <Select placeholder="请选择成果来源" style={{ width: 200 }}>
- {this.state.technicalSourceOption}
- </Select>
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="转化形式"
- >
- {getFieldDecorator('conversionForm', {
- rules: [{ type: 'string', required: true, message: '此项为必填项!' }],
- initialValue: theData.conversionForm
- })(
- <Select placeholder="请选择转化形式" style={{ width: 200 }}>
- {this.state.conversionFormOption}
- </Select>
- )}
- </FormItem>
- <FormItem
- {...formItemLayout}
- label="转化结果"
- >
- {getFieldDecorator('conversionResult', {
- rules: [{ type: 'string', required: true, message: '此项为必填项!' }],
- initialValue: theData.conversionResult
- })(
- <Input type="textarea" rows={6} />
- )}
- </FormItem>
- </div>
- <div className="hrSituation-roster">
- <Upload
- name="ratepay"
- action={globalConfig.context + "/api/admin/uploadAchievement"}
- data={{ 'sign': 'achievement', 'uid': this.props.uid }}
- 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.enclosureUrl = 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.enclosureUrl ?
- <span className="download-file">
- <a onClick={newDownloadFile.bind(null, this.props.data.id, 'achievement', '/api/admin/downloadAchievement')}>{theData.enclosureDownloadFileName}</a>
- <a onClick={() => {
- var newTab = window.open('about:blank');
- if (theData.enclosureUrl.split('.')[1] == 'doc' || theData.enclosureUrl.split('.')[1] == 'docx') {
- getPreview(theData.id, 'achievement', 'achievement', function (data) {
- newTab.location.href = data;
- });
- } else {
- newTab.location.href = globalConfig.context + '/open/writeImage?path=' + theData.enclosureUrl
- }
- }}><Icon style={{ fontSize: '16px' }} type="eye-o" /></a>
- </span>
- : <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 AchievementDesc = 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='800px'
- footer='' >
- <Spin spinning={this.state.loading} className='spin-box'>
- <AchievementDescFrom
- uid={this.props.uid}
- data={this.props.data}
- visible={this.state.visible}
- activityNumberList={this.props.activityNumberList}
- spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
- </Spin>
- </Modal>
- </div>
- );
- },
- });
- const Achievement = React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- loading: true
- });
- $.when($.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/achievementList",
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- uid: this.props.data.uid
- }
- }), $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/activityNumber",
- data: {
- uid: this.props.data.uid
- }
- })).done((data1, data2) => {
- let data = data1[0];
- let activityNumber = data2[0];
- if (data.error.length || !data.data || !data.data.list) {
- message.warning(data.error[0].message);
- return;
- };
- if (activityNumber.error.length || !activityNumber.data) {
- message.warning(activityNumber.error[0].message);
- return;
- };
- 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,
- achievementName: thisdata.achievementName,
- source: thisdata.source,
- conversionForm: thisdata.conversionForm,
- conversionResult: thisdata.conversionResult,
- year: thisdata.year,
- enclosureUrl: thisdata.enclosureUrl,
- enclosureDownloadFileName: thisdata.enclosureDownloadFileName,
- enclosure: [thisdata.id, thisdata.enclosureDownloadFileName]
- });
- };
- this.state.activityNumberList = activityNumber.data;
- 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));
- let _me = this;
- getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
- },
- getInitialState() {
- return {
- selectedRowKeys: [],
- selectedRows: [],
- loading: false,
- 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: 'year',
- key: 'year'
- }, {
- title: '成果名称',
- dataIndex: 'achievementName',
- key: 'achievementName'
- }, {
- title: '成果来源',
- dataIndex: 'source',
- key: 'source',
- }, {
- title: '转化形式',
- dataIndex: 'conversionForm',
- key: 'conversionForm',
- render: (text) => { return getConversionForm(text) }
- }, {
- title: '转化结果',
- dataIndex: 'conversionResult',
- key: 'conversionResult',
- }, {
- title: '相关附件',
- dataIndex: 'enclosure',
- key: 'enclosure',
- render: (text) => {
- return <a onClick={newDownloadFile.bind(null, text[0], 'achievement', '/api/admin/downloadAchievement')}>{text[1]}</a>
- }
- }
- ],
- 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/admin/deleteAchievement",
- 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>
- <span className="proportion"> 是否已完成:</span>
- <Switch
- checked={this.state.proportion && this.state.proportion.achievement == 1 ? true : false}
- checkedChildren={'已完成'}
- unCheckedChildren={'未完成'}
- onChange={(e) => {
- e ? this.state.proportion.achievement = 1 : this.state.proportion.achievement = 0;
- saveProportion(this.state.proportion.id, this.props.data.uid, 'achievement', this.state.proportion.achievement);
- this.setState({ proportion: this.state.proportion });
- }} />
- </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" }}
- disabled={!hasSelected}
- onClick={this.delectRow}>删除<Icon type="minus" /></Button>
- </p>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table size="middle" columns={this.state.columns}
- dataSource={this.state.dataSource}
- pagination={this.state.pagination}
- rowSelection={rowSelection}
- style={{
- cursor: 'pointer',
- }}
- onRowClick={this.tableRowClick} />
- </Spin>
- </div>
- <AchievementDesc
- data={this.state.RowData}
- uid={this.props.data.uid}
- activityNumberList={this.state.activityNumberList}
- showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
- </div >
- );
- }
- });
- export default Achievement;
|