123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149 |
- import React from 'react';
- import { Icon, Tabs, Table, Tooltip, Modal, Popover, message, Spin, Upload, Input, InputNumber, Select, DatePicker, Button, Radio, Form, Cascader, Tag } from 'antd';
- import moment from 'moment';
- import './techDemand.less';
- import ajax from 'jquery/src/ajax/xhr.js';
- import $ from 'jquery/src/ajax';
- import { getTechField } from '../../DicTechFieldList.js';
- import { IndustryObject, getIndustryCategory } from '../../DicIndustryList.js';
- import { beforeUploadFile, splitUrl, companySearch, getDemandType, getAchievementCategory } from '../../tools.js';
- import ImgList from "../../common/imgList";
- const KeyWordTagGroup = React.createClass({
- getInitialState() {
- return {
- tags: [],
- inputVisible: false,
- inputValue: ''
- };
- },
- handleClose(removedTag) {
- const tags = this.state.tags.filter(tag => tag !== removedTag);
- this.props.tagsArr(tags);
- this.setState({ tags });
- },
- showInput() {
- this.setState({ inputVisible: true }, () => this.input.focus());
- },
- handleInputChange(e) {
- this.setState({ inputValue: e.target.value });
- },
- handleInputConfirm() {
- const state = this.state;
- const inputValue = state.inputValue;
- let tags = state.tags;
- if (inputValue && tags.indexOf(inputValue) === -1 && inputValue.replace(/(^\s*)|(\s*$)/g, "").length != 0) {
- tags = [...tags, inputValue.replace(/(^\s*)|(\s*$)/g, "")];
- }
- this.props.tagsArr(tags);
- this.setState({
- tags,
- inputVisible: false,
- inputValue: '',
- });
- },
- componentWillMount() {
- this.state.tags = this.props.keyWordArr;
- },
- componentWillReceiveProps(nextProps) {
- if (this.props.keyWordArr != nextProps.keyWordArr) {
- this.state.tags = nextProps.keyWordArr;
- };
- },
- render() {
- const { tags, inputVisible, inputValue } = this.state;
- return (
- <div className="keyWord-tips">
- {tags.map((tag, index) => {
- const isLongTag = tag.length > 10;
- const tagElem = (
- <Tag key={tag} closable={index !== -1} afterClose={() => this.handleClose(tag)}>
- {isLongTag ? `${tag.slice(0, 10)}...` : tag}
- </Tag>
- );
- return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
- })}
- {inputVisible && (
- <Input
- ref={input => this.input = input}
- type="text"
- style={{ width: 78 }}
- value={inputValue}
- onChange={this.handleInputChange}
- onBlur={this.handleInputConfirm}
- onPressEnter={this.handleInputConfirm}
- />
- )}
- {!inputVisible && <Button className="addtips" type="dashed" disabled={tags.length > 9 ? true : false} onClick={this.showInput}>+ 新关键词</Button>}
- </div>
- );
- }
- });
- const PicturesWall = React.createClass({
- getInitialState() {
- return {
- previewVisible: false,
- previewImage: '',
- fileList: [],
- }
- },
- handleCancel() {
- this.setState({ previewVisible: false })
- },
- handlePreview(file) {
- this.setState({
- previewImage: file.url || file.thumbUrl,
- previewVisible: true,
- });
- },
- handleChange(info) {
- let fileList = info.fileList;
- this.setState({ fileList });
- this.props.fileList(fileList);
- },
- componentWillReceiveProps(nextProps) {
- this.state.fileList = nextProps.pictureUrl;
- },
- render() {
- const { previewVisible, previewImage, fileList } = this.state;
- const uploadButton = (
- <div>
- <Icon type="plus" />
- <div className="ant-upload-text">点击上传</div>
- </div>
- );
- return (
- <div className="clearfix">
- <ImgList
- domId={this.props.domId}
- uploadConfig={{
- action:globalConfig.context + "/api/user/demand/uploadPicture",
- data:{ 'sign': 'demand_picture', 'uid': this.props.uid },
- multiple:true,
- listType:"picture-card",
- }}
- onChange={(infor)=>{
- this.handleChange(infor)
- }}
- fileList={fileList}
- />
- </div>
- );
- }
- });
- const DemandDetailShow = Form.create()(React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false,
- contactsObj: {},
- salesmanObj: {},
- pictureUrl: [],
- tags: []
- };
- },
- loadData(id) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + (window.userData.type == '1' ? '/api/user/demand/orgDemandDetail' : '/api/user/demand/userDemandDetail'),
- data: {
- id: id
- },
- success: function (data) {
- let thisData = data.data;
- if (!thisData) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- thisData = {};
- };
- this.setState({
- data: thisData,
- tags: thisData.keyword ? thisData.keyword.split(",") : [],
- pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : []
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- offShelf() {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/demand/offShelf",
- data: { "id": this.props.data.id }
- }).done(function (data) {
- this.setState({
- loading: false
- });
- if (!data.error.length) {
- message.success('撤销成功!');
- this.setState({
- visible: false,
- releaseSubmitVisible: false
- });
- this.props.handleOk();
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this));
- },
- componentWillMount() {
- if (this.props.data.id) {
- this.loadData(this.props.data.id);
- } else {
- this.state.data = {};
- };
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible) {
- if (nextProps.data.id) {
- this.loadData(nextProps.data.id);
- } else {
- this.state.data = {};
- };
- this.props.form.resetFields();
- };
- },
- render() {
- const theData = this.state.data || {};
- const { getFieldDecorator } = this.props.form;
- const FormItem = Form.Item
- const formItemLayout = {
- labelCol: { span: 6 },
- wrapperCol: { span: 12 },
- };
- return (
- <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
- <Spin spinning={this.state.loading}>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="编号" >
- <span>{theData.serialNumber}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="需求名称" >
- <span>{theData.name}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="雇主名称" >
- <span>{theData.username}</span>
- </FormItem>
- {window.userData.type == '1' ? <FormItem className="half-item"
- {...formItemLayout}
- label="联系人" >
- <span>{this.props.contactsObj[theData.contacts]}</span>
- </FormItem> : <div></div>}
- {window.userData.type == '0' ? <FormItem className="half-item"
- {...formItemLayout}
- label="联系方式" >
- <span>{theData.mobile}</span>
- </FormItem> : <div></div>}
- </div>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="是否发布" >
- {(() => {
- switch (theData.releaseStatus) {
- case "0":
- return <span>未发布</span>;
- case "1":
- return <div>
- <span>已发布</span>
- <Button style={{ marginLeft: '10px' }} onClick={() => { this.setState({ releaseSubmitVisible: true }); }}>撤消发布</Button>
- <Modal maskClosable={false} title="确认"
- visible={this.state.releaseSubmitVisible}
- width='300px'
- footer={null}
- onCancel={() => { this.setState({ releaseSubmitVisible: false }) }} >
- <span>确认要撤销发布吗?</span>
- <Button className="modal-submit" type="primary" loading={this.state.loading} onClick={this.offShelf} >确认</Button>
- <Button className="modal-submit" type="ghost" onClick={() => { this.setState({ releaseSubmitVisible: false }) }}>取消</Button>
- </Modal>
- </div>;
- }
- })()}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="发布时间" >
- <span>{theData.releaseDateFormattedDate}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="需求状态" >
- {(() => {
- switch (theData.status) {
- case "0":
- return <span>未解决</span>;
- case "1":
- return <span>已解决</span>;
- }
- })()}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="审核状态" >
- {(() => {
- switch (theData.auditStatus) {
- case "0":
- return <span>未提交审核(草稿)</span>;
- case "1":
- return <span>提交审核</span>;
- case "2":
- return <span>审核中</span>;
- case "3":
- return <span>审核通过</span>;
- case "4":
- return <span>审核未通过</span>;
- }
- })()}
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="信息来源" >
- {(() => {
- switch (theData.infoSources) {
- case "0":
- return <span>平台采集</span>;
- case "1":
- return <span>客户发布</span>;
- case "2":
- return <span>批量导入</span>;
- case "3":
- return <span>三方对接</span>;
- }
- })()}
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 20 }}
- label="关键词" >
- {this.state.tags.map((tag) => {
- return <Tooltip key={tag} title={tag}>
- <Tag key={tag}>{tag}</Tag>
- </Tooltip>;
- })}
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="行业类别" >
- <span>{getIndustryCategory(theData.industryCategoryA, theData.industryCategoryB)}</span>
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="需求类型" >
- <span>{getDemandType(theData.demandType)}</span>
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="问题说明" >
- <span>{theData.problemDes}</span>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="技术指标要求" >
- <span>{theData.technicalRequirements}</span>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="需求文件(图片)" >
- <div className="clearfix">
- <Upload className="demandDetailShow-upload"
- listType="picture-card"
- fileList={this.state.pictureUrl}
- onPreview={(file) => {
- this.setState({
- previewImage: file.url || file.thumbUrl,
- previewVisible: true,
- });
- }} />
- {/*<div style={{paddingTop:'10px',paddingBottom:'10px'}}>*/}
- {/* <ImgList fileList={this.state.pictureUrl} ItemWidth={'96px'}/>*/}
- {/*</div>*/}
- <Modal maskClosable={false} footer={null}
- visible={this.state.previewVisible}
- onCancel={() => { this.setState({ previewVisible: false }) }}>
- <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
- </Modal>
- </div>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 6 }}
- label="需求文件(文本)" >
- <div>{theData.textFileUrl ?
- <span className="download-file">
- <a onClick={() => { window.open(globalConfig.context + '/api/user/demand/download?id=' + this.props.data.id) }}>需求文件(文本文件)</a>
- </span>
- : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</div>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="需求文件(视频地址)" >
- <span>{theData.videoUrl}</span>
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="固定周期" >
- <span>{theData.fixedCycle}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="固定人数" >
- <span>{theData.peopleNumber || 0} 人</span>
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="固定方案" >
- <span>{theData.fixedScheme}</span>
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="预算费用" >
- <span>{theData.budgetCost || 0} 万元</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="费用托管" >
- {(() => {
- switch (theData.costEscrow) {
- case 0:
- return <span>否</span>;
- case 1:
- return <span>是</span>;
- }
- })()}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="有效期限" >
- <span>{theData.validityPeriodFormattedDate}</span>
- </FormItem>
- </div>
- <FormItem wrapperCol={{ span: 12, offset: 3 }}>
- <Button className="set-submit" type="primary" onClick={this.props.closeDesc}>取消</Button>
- </FormItem>
- </Spin>
- </Form >
- )
- }
- }));
- const DemandDetailForm = Form.create()(React.createClass({
- getInitialState() {
- return {
- visible: false,
- loading: false,
- auditStatus: 0,
- textFileList: [],
- videoFileList: [],
- pictureUrl: [],
- tags: []
- };
- },
- loadData(id) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + (window.userData.type == '1' ? '/api/user/demand/orgDemandDetail' : '/api/user/demand/userDemandDetail'),
- data: {
- id: id
- },
- success: function (data) {
- let thisData = data.data;
- if (!thisData) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- thisData = {};
- };
- this.setState({
- data: thisData,
- tags: thisData.keyword ? thisData.keyword.split(",") : [],
- pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : []
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- getTagsArr(e) {
- this.setState({ tags: e });
- },
- getPictureUrl(e) {
- this.setState({ pictureUrl: e });
- },
- handleSubmit(e) {
- e.preventDefault();
- this.props.form.validateFields((err, values) => {
- //keyword长度判断
- if (this.state.tags.length < 3) {
- message.warning('关键词数量不能小于3个!');
- return;
- };
- //url转化
- let thePictureUrl = [];
- if (this.state.pictureUrl.length) {
- let picArr = [];
- this.state.pictureUrl.map(function (item) {
- if ( item.response && item.response.data && item.response.data.length ){
- picArr.push(item.response.data);
- }
- });
- thePictureUrl = picArr.join(",");
- };
- if (!err) {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: this.props.data.id ? globalConfig.context + '/api/user/demand/update' : globalConfig.context + '/api/user/demand/apply',
- data: {
- id: this.props.data.id,
- dataCategory: Number(window.userData.type),
- serialNumber: this.props.data.serialNumber,
- name: values.name,
- keyword: this.state.tags ? this.state.tags.join(",") : [],
- keywords: this.state.tags,
- infoSources: 1,
- industryCategoryA: values.industryCategory ? values.industryCategory[0] : undefined,
- industryCategoryB: values.industryCategory ? values.industryCategory[1] : undefined,
- demandType: values.demandType,
- problemDes: values.problemDes,
- technicalRequirements: values.technicalRequirements,
- pictureUrl: thePictureUrl,
- textFileUrl: this.state.textFileUrl,
- videoUrl: values.videoUrl,
- fixedBudget: values.fixedBudget,
- fixedCycle: values.fixedCycle,
- peopleNumber: values.peopleNumber,
- fixedScheme: values.fixedScheme,
- costEscrow: values.costEscrow,
- budgetCost: values.budgetCost,
- employerId: values.employerId || this.state.data.employerId,
- releaseStatus: values.releaseStatus,
- principalId: values.principalId,
- validityPeriodFormattedDate: values.validityPeriod ? values.validityPeriod.format('YYYY-MM-DD') : undefined,
- //
- contacts: values.contacts,
- status: this.state.status,
- auditStatus: this.state.auditStatus
- }
- }).done(function (data) {
- this.state.auditStatus = 0;
- this.setState({
- loading: false
- });
- if (!data.error.length) {
- message.success('保存成功!');
- this.setState({
- visible: false
- });
- this.props.handleOk();
- } else {
- message.warning(data.error[0].message);
- }
- }.bind(this));
- }
- });
- },
- componentWillMount() {
- if (this.props.data.id) {
- this.loadData(this.props.data.id);
- } else {
- this.state.data = {};
- };
- },
- componentWillReceiveProps(nextProps) {
- if (!this.props.visible && nextProps.visible) {
- this.state.textFileList = [];
- this.state.videoFileList = [];
- if (nextProps.data.id) {
- this.loadData(nextProps.data.id);
- } else {
- this.state.data = {};
- this.state.tags = [];
- this.state.pictureUrl = [];
- };
- this.props.form.resetFields();
- };
- },
- render() {
- const theData = this.state.data || {};
- const { getFieldDecorator } = this.props.form;
- const FormItem = Form.Item
- const formItemLayout = {
- labelCol: { span: 6 },
- wrapperCol: { span: 12 },
- };
- return (
- <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
- <Spin spinning={this.state.loading}>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="编号" >
- <span>{theData.serialNumber}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="需求名称" >
- {getFieldDecorator('name', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: theData.name
- })(
- <Input />
- )}
- </FormItem>
- {theData.username ? <FormItem className="half-item"
- {...formItemLayout}
- label="雇主名称" >
- <span>{theData.username}</span>
- </FormItem> : <div></div>}
- {window.userData.type == "1" ? <FormItem className="half-item"
- {...formItemLayout}
- label="联系人" >
- {getFieldDecorator('contacts', {
- initialValue: theData.contacts
- })(
- <Select style={{ width: 260 }}
- placeholder="请选择联系人"
- notFoundContent="未获取到联系人列表"
- showSearch
- filterOption={companySearch}>
- {this.props.contactsOption}
- </Select>
- )}
- </FormItem> : <div></div>}
- {window.userData.type == "0" ? <FormItem className="half-item"
- {...formItemLayout}
- label="联系方式" >
- <span>{theData.mobile}</span>
- </FormItem> : <div></div>}
- </div>
- {theData.releaseStatus ? <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="是否发布" >
- {(() => {
- switch (theData.releaseStatus) {
- case "0":
- return <span>未发布</span>;
- case "1":
- return <span>已发布</span>;
- }
- })()}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="发布时间" >
- <span>{theData.releaseDateFormattedDate}</span>
- </FormItem>
- </div> : <div></div>}
- <div className="clearfix">
- {theData.releaseStatus == "1" ? <FormItem className="half-item"
- {...formItemLayout}
- label="需求状态" >
- {getFieldDecorator('status', {
- initialValue: theData.status
- })(
- <Radio.Group>
- <Radio value="0">未解决</Radio>
- <Radio value="1">已解决</Radio>
- </Radio.Group>
- )}
- </FormItem> : <div></div>}
- <FormItem className="half-item"
- {...formItemLayout}
- label="审核状态" >
- {(() => {
- switch (theData.auditStatus) {
- case "0":
- return <span>未提交审核(草稿)</span>;
- case "1":
- return <span>提交审核</span>;
- case "2":
- return <span>审核中</span>;
- case "3":
- return <span>审核通过</span>;
- case "4":
- return <span>审核未通过</span>;
- }
- })()}
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 20 }}
- label="关键词" >
- <KeyWordTagGroup
- keyWordArr={this.state.tags}
- tagsArr={this.getTagsArr}
- visible={this.props.visible} />
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="行业类别" >
- {getFieldDecorator('industryCategory', {
- rules: [{ type: 'array', required: true, message: '此项为必填项!' }],
- initialValue: [theData.industryCategoryA, theData.industryCategoryB]
- })(
- <Cascader style={{ width: 300 }} options={IndustryObject} placeholder="请选择一个行业" />
- )}
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="需求类型" >
- {getFieldDecorator('demandType', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: theData.demandType
- })(
- <Select style={{ width: 160 }} placeholder="请选择需求类型">
- {this.props.demandTypeOption}
- </Select>
- )}
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="问题说明" >
- {getFieldDecorator('problemDes', {
- rules: [{ required: true, message: '此项为必填项!' }],
- initialValue: theData.problemDes
- })(
- <Input type="textarea" rows={4} />
- )}
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="技术指标要求" >
- {getFieldDecorator('technicalRequirements', {
- initialValue: theData.technicalRequirements
- })(
- <Input type="textarea" rows={2} />
- )}
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="需求文件(图片)" >
- <PicturesWall
- domId={'techDemandDesc1'}
- uid={theData.employerId}
- fileList={this.getPictureUrl}
- pictureUrl={this.state.pictureUrl}
- visible={this.props.visible} />
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 6 }}
- label="需求文件(文本)" >
- <Upload
- name="ratepay"
- action={globalConfig.context + "/api/user/demand/uploadTextFile"}
- data={{ 'sign': 'demand_text_file', 'uid': theData.employerId }}
- beforeUpload={beforeUploadFile}
- fileList={this.state.textFileList}
- 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.textFileUrl = info.file.response.data;
- } else if (info.file.status === 'error') {
- message.error(`${info.file.name} 文件上传失败。`);
- };
- this.setState({ textFileList: info.fileList.slice(-1) });
- }} >
- <Button><Icon type="upload" /> 上传需求文本文件 </Button>
- </Upload>
- <p style={{ marginTop: '10px' }}>{theData.textFileUrl ?
- <span className="download-file">
- <a onClick={() => { window.open(globalConfig.context + '/api/user/demand/download?id=' + this.props.data.id) }}>需求文件(文本文件)</a>
- </span>
- : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
- </FormItem>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="需求文件(视频地址)" >
- {getFieldDecorator('videoUrl', {
- initialValue: theData.videoUrl
- })(
- <Input />
- )}
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="固定周期" >
- {getFieldDecorator('fixedCycle', {
- initialValue: theData.fixedCycle
- })(
- <Input />
- )}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="固定人数" >
- {getFieldDecorator('peopleNumber', {
- initialValue: theData.peopleNumber
- })(
- <InputNumber min={0} max={999999} step={1} />
- )}
- <span style={{ marginLeft: '20px' }}>人</span>
- </FormItem>
- </div>
- <FormItem
- labelCol={{ span: 3 }}
- wrapperCol={{ span: 18 }}
- label="固定方案" >
- {getFieldDecorator('fixedScheme', {
- initialValue: theData.fixedScheme
- })(
- <Input type="textarea" rows={2} />
- )}
- </FormItem>
- <div className="clearfix">
- <FormItem className="half-item"
- {...formItemLayout}
- label="预算费用" >
- {getFieldDecorator('budgetCost', {
- initialValue: theData.budgetCost
- })(
- <InputNumber min={0} max={999999} step={0.01} />
- )}
- <span style={{ marginLeft: '20px' }}>万元</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="费用托管" >
- {getFieldDecorator('costEscrow', {
- initialValue: theData.costEscrow
- })(
- <Radio.Group>
- <Radio value={0}>否</Radio>
- <Radio value={1}>是</Radio>
- </Radio.Group>
- )}
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="有效期限" >
- {getFieldDecorator('validityPeriod', {
- initialValue: theData.validityPeriod ? moment(theData.validityPeriod) : null
- })(
- <DatePicker />
- )}
- </FormItem>
- </div>
- <div className="clearfix" style={{ display: 'none' }}>
- <FormItem className="half-item"
- {...formItemLayout}
- label="雇主地址" >
- <span>{theData.employerAddress}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="雇主联系人名称" >
- <span>{theData.employerContacts}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="雇主联系人电话" >
- <span>{theData.employerContactsMobile}</span>
- </FormItem>
- <FormItem className="half-item"
- {...formItemLayout}
- label="雇主联系人邮箱" >
- <span>{theData.employerContactsMailbox}</span>
- </FormItem>
- </div>
- <FormItem wrapperCol={{ span: 12, offset: 3 }}>
- <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
- <Button className="set-submit" type="ghost" onClick={(e) => { this.state.auditStatus = 1; }} htmlType="submit">发布</Button>
- <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
- </FormItem>
- </Spin>
- </Form >
- )
- }
- }));
- const DemandDetail = React.createClass({
- getInitialState() {
- return {
- visible: false,
- contactsObj: {},
- tabsKey: "1",
- columns: [
- {
- title: '编号',
- dataIndex: 'serialNumber',
- key: 'serialNumber',
- }, {
- title: '数据类型',
- dataIndex: 'dataCategory',
- key: 'dataCategory',
- render: text => {
- switch (text) {
- case "0":
- return <span>成果</span>;
- case "1":
- return <span>技术</span>;
- case "2":
- return <span>项目</span>;
- }
- }
- }, {
- title: '名称',
- dataIndex: 'name',
- key: 'name',
- }, {
- title: '关键字',
- dataIndex: 'keyword',
- key: 'keyword',
- }, {
- title: '类型',
- dataIndex: 'category',
- key: 'category',
- render: text => { return getAchievementCategory(text); }
- }, {
- title: '所有人名称',
- dataIndex: 'theName',
- key: 'theName',
- }, {
- title: '所有人类型',
- dataIndex: 'ownerType',
- key: 'ownerType',
- render: text => {
- switch (text) {
- case "0":
- return <span>个人</span>;
- case "1":
- return <span>组织</span>
- }
- }
- }, {
- title: '发布时间',
- dataIndex: 'releaseDateFormattedDate',
- key: 'releaseDateFormattedDate',
- }
- ],
- dataSource: [],
- };
- },
- getContactsList() {
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/cognizance/getContacts",
- success: function (data) {
- let theOption = [];
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- } else {
- for (let item in data.data) {
- let theData = data.data[item];
- theOption.push(
- <Select.Option value={item} key={theData}>{theData}</Select.Option>
- );
- };
- };
- this.setState({
- contactsOption: theOption,
- contactsObj: data.data || {}
- });
- }.bind(this),
- });
- },
- getTableList() {
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/demand/achievementDemand",
- data: { id: this.props.data.id },
- success: function (data) {
- let theArr = [];
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- } else if (data.data.length) {
- for (let i = 0; i < data.data.length; i++) {
- let thisdata = data.data[i];
- theArr.push({
- key: i,
- id: thisdata.id,
- serialNumber: thisdata.serialNumber,
- dataCategory: thisdata.dataCategory,
- name: thisdata.name,
- keyword: thisdata.keyword,
- category: thisdata.category,
- ownerType: thisdata.ownerType,
- theName: thisdata.username || thisdata.unitName,
- releaseDate: thisdata.releaseDate,
- releaseDateFormattedDate: thisdata.releaseDateFormattedDate
- });
- };
- };
- this.setState({
- dataSource: theArr,
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- tableRowClick(record, index) {
- window.open(globalConfig.context + '/portal/detail/achievementDetail.html?id=' + record.id + '&type=' + record.ownerType);
- },
- showModal() {
- this.setState({
- visible: true,
- });
- },
- handleCancel(e) {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false);
- },
- handleOk(e) {
- this.setState({
- visible: false,
- });
- this.props.closeDesc(false, true);
- },
- componentWillMount() {
- this.getContactsList();
- },
- componentWillReceiveProps(nextProps) {
- if (nextProps.showDesc) {
- this.state.tabsKey = "1";
- this.state.tabBool = true;
- };
- this.state.visible = nextProps.showDesc;
- },
- render() {
- if (this.props.data) {
- return (
- <div className="patent-desc">
- <Modal maskClosable={false} visible={this.state.visible}
- onOk={this.checkPatentProcess} onCancel={this.handleCancel}
- width='1200px'
- footer=''
- className="admin-desc-content">
- <Tabs activeKey={this.state.tabsKey}
- onChange={(e) => {
- this.setState({ tabsKey: e });
- if (e == "2" && this.state.tabBool) {
- this.getTableList();
- this.state.tabBool = false;
- };
- }} >
- <Tabs.TabPane tab="需求详情" key="1">
- {(() => {
- if (this.props.data.id && this.props.data.auditStatus != "0" && this.props.data.auditStatus != "4") {
- return <DemandDetailShow
- data={this.props.data}
- demandTypeOption={this.props.demandTypeOption}
- contactsObj={this.state.contactsObj}
- closeDesc={this.handleCancel}
- visible={this.state.visible}
- handleOk={this.handleOk} />
- } else {
- return <DemandDetailForm
- data={this.props.data}
- contactsOption={this.state.contactsOption}
- demandTypeOption={this.props.demandTypeOption}
- closeDesc={this.handleCancel}
- visible={this.state.visible}
- handleOk={this.handleOk} />
- }
- })()}
- </Tabs.TabPane>
- <Tabs.TabPane tab="匹配列表" key="2">
- <Table size="middle" columns={this.state.columns}
- dataSource={this.state.dataSource}
- pagination={false}
- style={{
- cursor: 'pointer',
- }}
- onRowClick={this.tableRowClick} />
- </Tabs.TabPane>
- </Tabs>
- </Modal>
- </div>
- );
- } else {
- return <div></div>
- }
- },
- });
- export default DemandDetail;
|