yee 7 éve%!(EXTRA string=óta)
szülő
commit
8bbc646cbf

+ 339 - 0
js/component/account/index/collection.jsx

@@ -0,0 +1,339 @@
+import React from 'react';
+import { Spin, Button, Tabs } from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+import DemandDesc from '../../portal/search/demandDesc';
+import AchievementDesc from '../../portal/search/achievementDesc';
+
+import './content.less';
+
+const TabPane = Tabs.TabPane;
+
+const Content = React.createClass({
+    achievementLoadData(pageNo) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/user/portal/achievementInterestList",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize
+            },
+            success: function (data) {
+                let theArr = [];
+                if (!data.data && !data.data.list) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                } else {
+                    for (let i = 0; i < data.data.list.length; i++) {
+                        let thisdata = data.data.list[i];
+                        theArr.push({
+                            key: i,
+                            id: thisdata.id,
+                            achievementId: thisdata.achievementId,
+                            createTime: thisdata.createTime,
+                            name: thisdata.name,
+                            serialNumber: thisdata.serialNumber,
+                            deletedSign: thisdata.deletedSign,
+                            auditStatus: thisdata.auditStatus,
+                            createTimeFormattedDate: thisdata.createTimeFormattedDate
+                        });
+                    };
+                }
+                this.state.achievementPagination.current = data.data.pageNo;
+                this.state.achievementPagination.total = data.data.totalCount;
+                this.setState({
+                    achievementDataSource: theArr,
+                    achievementPagination: this.state.achievementPagination
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    demandLoadData(pageNo) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/user/demand/list",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+                serialNumber: this.state.serialNumber,
+                name: this.state.name,
+                keyword: this.state.keyword,
+                demandType: this.state.demandType ? Number(this.state.demandType) : undefined,
+                status: this.state.status ? Number(this.state.status) : undefined,
+                releaseStatus: this.state.releaseStatus ? Number(this.state.releaseStatus) : undefined,
+                validityPeriodStartDate: this.state.validityPeriodDate[0],
+                validityPeriodEndDate: this.state.validityPeriodDate[1],
+                releaseDateStartDate: this.state.releaseDate[0],
+                releaseDateEndDate: this.state.releaseDate[1],
+                auditStatus: this.state.auditStatus
+            },
+            success: function (data) {
+                let theArr = [];
+                if (!data.data && !data.data.list) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                } else {
+                    for (let i = 0; i < data.data.list.length; i++) {
+                        let thisdata = data.data.list[i];
+                        theArr.push({
+                            key: i,
+                            id: thisdata.id,
+                            serialNumber: thisdata.serialNumber,
+                            dataCategory: thisdata.dataCategory,
+                            name: thisdata.name,
+                            keyword: thisdata.keyword,
+                            releaseDate: thisdata.releaseDate,
+                            demandType: thisdata.demandType,
+                            validityPeriod: thisdata.validityPeriod,
+                            status: thisdata.status,
+                            releaseStatus: thisdata.releaseStatus,
+                            employerId: thisdata.employerId,
+                            releaseDateFormattedDate: thisdata.releaseDateFormattedDate,
+                            validityPeriodFormattedDate: thisdata.validityPeriodFormattedDate,
+                            auditStatus: thisdata.auditStatus
+                        });
+                    };
+                }
+                this.state.pagination.current = data.data.pageNo;
+                this.state.pagination.total = data.data.totalCount;
+                this.setState({
+                    dataSource: theArr,
+                    pagination: this.state.pagination
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getInitialState() {
+        return {
+            loading: false,
+            demandShowDesc: false,
+            achievementShowDesc: false,
+            achievementPagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function (page) {
+                    this.achievementLoadData(page);
+                }.bind(this),
+                showTotal: function (total) {
+                    return '共' + total + '条数据';
+                }
+            },
+            achievementColumns: [
+                {
+                    title: '编号',
+                    dataIndex: 'serialNumber',
+                    key: 'serialNumber',
+                }, {
+                    title: '需求名称',
+                    dataIndex: 'name',
+                    key: 'name',
+                }, {
+                    title: '关键字',
+                    dataIndex: 'keyword',
+                    key: 'keyword',
+                }, {
+                    title: '需求类型',
+                    dataIndex: 'demandType',
+                    key: 'demandType',
+                    render: text => { return getDemandType(text); }
+                }, {
+                    title: '审核状态',
+                    dataIndex: 'auditStatus',
+                    key: 'auditStatus',
+                    render: text => {
+                        switch (text) {
+                            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>;
+                        }
+                    }
+                }, {
+                    title: '需求状态',
+                    dataIndex: 'status',
+                    key: 'status',
+                    render: text => {
+                        switch (text) {
+                            case "0":
+                                return <span>进行中</span>;
+                            case "1":
+                                return <span>未解决</span>;
+                            case "2":
+                                return <span>已解决</span>;
+                        }
+                    }
+                }, {
+                    title: '有效期限',
+                    dataIndex: 'validityPeriodFormattedDate',
+                    key: 'validityPeriodFormattedDate',
+                }, {
+                    title: '发布时间',
+                    dataIndex: 'releaseDateFormattedDate',
+                    key: 'releaseDateFormattedDate',
+                }
+            ],
+            achievementDataSource: [],
+            demandPagination: {
+                defaultCurrent: 1,
+                defaultPageSize: 10,
+                showQuickJumper: true,
+                pageSize: 10,
+                onChange: function (page) {
+                    this.demandLoadData(page);
+                }.bind(this),
+                showTotal: function (total) {
+                    return '共' + total + '条数据';
+                }
+            },
+            demandColumns: [
+                {
+                    title: '编号',
+                    dataIndex: 'serialNumber',
+                    key: 'serialNumber',
+                }, {
+                    title: '需求名称',
+                    dataIndex: 'name',
+                    key: 'name',
+                }, {
+                    title: '关键字',
+                    dataIndex: 'keyword',
+                    key: 'keyword',
+                }, {
+                    title: '需求类型',
+                    dataIndex: 'demandType',
+                    key: 'demandType',
+                    render: text => { return getDemandType(text); }
+                }, {
+                    title: '审核状态',
+                    dataIndex: 'auditStatus',
+                    key: 'auditStatus',
+                    render: text => {
+                        switch (text) {
+                            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>;
+                        }
+                    }
+                }, {
+                    title: '需求状态',
+                    dataIndex: 'status',
+                    key: 'status',
+                    render: text => {
+                        switch (text) {
+                            case "0":
+                                return <span>进行中</span>;
+                            case "1":
+                                return <span>未解决</span>;
+                            case "2":
+                                return <span>已解决</span>;
+                        }
+                    }
+                }, {
+                    title: '有效期限',
+                    dataIndex: 'validityPeriodFormattedDate',
+                    key: 'validityPeriodFormattedDate',
+                }, {
+                    title: '发布时间',
+                    dataIndex: 'releaseDateFormattedDate',
+                    key: 'releaseDateFormattedDate',
+                }
+            ],
+            demandDataSource: [],
+        };
+    },
+    componentDidMount() {
+        this.achievementLoadData();
+    },
+    tabChange(key) {
+
+    },
+    demandRowClick(record, index) {
+        this.state.demandRowData = record;
+        this.setState({
+            demandShowDesc: true
+        });
+    },
+    achievementRowClick(record, index) {
+        this.state.achievementRowData = record;
+        this.setState({
+            achievementShowDesc: true
+        });
+    },
+    demandCloseDesc(e) {
+        this.setState({
+            demandShowDesc: e
+        });
+    },
+    achievementCloseDesc(e) {
+        this.setState({
+            achievementShowDesc: e
+        });
+    },
+    render() {
+        return (
+            <div className="collection">
+                <Spin spinning={this.state.loading} >
+                    <Tabs defaultActiveKey="1" onChange={this.tabChange}>
+                        <TabPane tab="我感兴趣的成果" key="1">
+                            <Table columns={this.state.achievementColumns}
+                                dataSource={this.state.achievementDataSource}
+                                pagination={this.state.achievementPagination}
+                                onRowClick={this.achievementRowClick} />
+                        </TabPane>
+                        <TabPane tab="我感兴趣的需求" key="2">
+                            <Table columns={this.state.demandColumns}
+                                dataSource={this.state.demandDataSource}
+                                pagination={this.state.demandPagination}
+                                onRowClick={this.demandRowClick} />
+                        </TabPane>
+                    </Tabs>
+                </Spin>
+                <DemandDesc data={this.state.demandRowData}
+                    showDesc={this.state.demandShowDesc}
+                    closeDesc={this.demandShowDesc} />
+                <AchievementDesc data={this.state.achievementRowData}
+                    showDesc={this.state.achievementShowDesc}
+                    closeDesc={this.achievementShowDesc} />
+            </div>
+        )
+    }
+});
+
+export default Content;

+ 39 - 130
js/component/account/index/content.jsx

@@ -1,144 +1,53 @@
-import React from 'react';
-import { Spin, Button, Tabs } from 'antd';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-
+import React, { Component } from 'react';
 import '../content.less';
-import './content.less';
-import LeftTab from './leftTab.jsx';
-
-import weixin from '../../../../image/weixin-w.png';
-import qq from '../../../../image/qq-w.png';
-import weibo from '../../../../image/weibo-w.png';
-
-const TabPane = Tabs.TabPane;
+import LeftTab from './leftTab';
 
-const Content = React.createClass({
-    getInitialState() {
-        return {
-            per: '24',
+class Content extends Component {
+    constructor() {
+        super();
+        this.state = {
             loading: false,
-            userlvl: '0',
-            userid: '1234567',
-            follow: '0',
-            chengguo: '0',
-            kaifa: '0',
-            fuwu: '0',
-            xuqiu: '0',
-            activityArr: [{ type: '成果对接会', title: '龙岗区在线科技成果对接会——智能制造业专场', time: '2017-01-10', link: '' },
-            { type: '成果对接会', title: '钛白粉行业技术在线对接会', time: '2017-01-11', link: '' }]
+            component: 'div'
+        };
+    }
+    componentWillMount() {
+        if (window.location.hash) {
+            this.getKey(window.location.hash.substr(1));
+        } else {
+            this.getKey("normal");
         };
-    },
-    getData() {
-        this.setState({
-            loading: false
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            url: globalConfig.context + "/api/user/homePage",
-            success: function (data) {
-                if (data.data && data.data.personPortraitUrl && data.data.nickname) {
+    }
+    getKey(key) {
+        switch (key) {
+            case 'normal':
+                require.ensure([], () => {
+                    const Normal = require('./normal').default;
                     this.setState({
-                        personPortraitUrl: data.data.personPortraitUrl,
-                        logoUrl: data.data.logoUrl,
-                        type: data.data.type,
-                        nickname: data.data.nickname,
-                        lvl: data.data.lvl,
-                        number: data.data.number
-                    })
-                };
-            }.bind(this),
-        }).done(function (data) {
-            if (data.error && data.error.length) {
-                message.warning(data.error[0].message);
-            }
-        }.bind(this)).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    componentDidMount() {
-        this.getData();
-    },
-    handlekey(key) {
-        this.setState({
-            leftKey: key,
-        });
-    },
-    tabChange(key) {
-
-    },
+                        component: Normal
+                    });
+                });
+                break;
+            case 'collection':
+                require.ensure([], () => {
+                    const Collection = require('./collection').default;
+                    this.setState({
+                        component: Collection
+                    });
+                });
+                break;
+        };
+        window.location.hash = key;
+    }
     render() {
         return (
             <div className="acc-content">
-                <LeftTab handlekey={this.handlekey} />
+                <LeftTab handlekey={this.getKey.bind(this)} />
                 <div className="content-right">
-                    <Spin spinning={this.state.loading} className='spin-box'>
-                        <div className="index-content">
-                            <div className="index-userdata clearfix">
-                                <p className="acc-title">{this.state.number}</p>
-                                <div className="userdata-img">
-                                    {this.state.type == 0 ?
-                                        <img src={globalConfig.avatarHost + "/upload" + this.state.personPortraitUrl} alt="" /> :
-                                        <img src={globalConfig.avatarHost + "/upload" + this.state.logoUrl} alt="" />}
-                                </div>
-                                <div className="userdata-content">
-                                    {(() => {
-                                        switch (userData.lvl || this.state.userlvl) {
-                                            case '0':
-                                                return <p className="userdata-lvl">等级:<span>LV1</span> 普通用户</p>;
-                                            case '1':
-                                                return <p className="userdata-lvl">等级:<span>LV2</span> 已认证用户</p>;
-                                        };
-                                    })()}
-                                    <p>完善资料 {this.state.per}% ,<a href={globalConfig.avatarHost + "/user/account/set.html"}>继续完善</a>,有助于提高您的资信</p>
-                                    <a href={globalConfig.context + "/portal/search/achievement.html"}>成果搜索</a>
-                                    <a href={globalConfig.context + "/portal/search/demand.html"}>需求搜索</a>
-                                    <p className="userdata-relate" style={{ 'display': 'none' }}>
-                                        <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
-                                        <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
-                                        <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
-                                    </p>
-                                    <div className="userdata-follow">已有<a href="">{this.state.follow}</a>人关注你</div>
-                                </div>
-                            </div>
-                            <div className="index-record">
-                                <p className="acc-title">我的轨迹</p>
-                                <ul className="record-list clearfix">
-                                    <li>技术成果:<a href="">{this.state.chengguo}</a>项</li>
-                                    <li>技术开发:<a href="">{this.state.kaifa}</a>项</li>
-                                    <li>科技服务:<a href="">{this.state.fuwu}</a>项</li>
-                                    <li>发布需求:<a href="">{this.state.xuqiu}</a>项</li>
-                                </ul>
-                            </div>
-                            <div className="index-activity">
-                                <Tabs defaultActiveKey="1" onChange={this.tabChange}>
-                                    <TabPane tab="活动" key="1">
-                                        <p className="acc-title">即将举办的活动</p>
-                                        <ul className="activity-list">
-                                            {
-                                                this.state.activityArr.map(function (item, i) {
-                                                    return <li key={i}>
-                                                        <span className="list-type">[{item.type}]</span>
-                                                        <span className="list-title">{item.title}</span>
-                                                        <a href={item.link}>报名</a>
-                                                        <span className="list-time">{item.time}</span>
-                                                    </li>;
-                                                })
-                                            }
-                                        </ul>
-                                    </TabPane>
-                                    <TabPane tab="其他" key="2">Content of Tab Pane 2</TabPane>
-                                </Tabs>
-                            </div>
-                        </div>
-                    </Spin>
+                    <this.state.component />
                 </div>
             </div>
         )
     }
-});
+}
 
-export default Content;
+export default Content;

+ 6 - 1
js/component/account/index/content.less

@@ -101,7 +101,7 @@
             .activity-list {
                 li {
                     border-bottom: 1px dashed #eee;
-                    padding:10px 0;
+                    padding: 10px 0;
                     .list-type {
                         color: #666
                     }
@@ -124,4 +124,9 @@
                 }
             }
         }
+    }
+
+    .collection {
+        background: #fff;
+        padding: 20px;
     }

+ 11 - 6
js/component/account/index/leftTab.jsx

@@ -8,7 +8,7 @@ const MenuItemGroup = Menu.ItemGroup;
 const LeftTab = React.createClass({
     getInitialState() {
         return {
-            current: 'tongchang',
+            current: 'normal'
         };
     },
     handleClick(e) {
@@ -17,6 +17,11 @@ const LeftTab = React.createClass({
             current: e.key,
         });
     },
+    componentWillMount() {
+        if (window.location.hash) {
+            this.state.current = window.location.hash.substr(1);
+        };
+    },
     render() {
         return (
             <Menu onClick={this.handleClick}
@@ -24,16 +29,16 @@ const LeftTab = React.createClass({
                 mode="vertical"
                 className="account-left"
                 >
-                <Menu.Item key="tongchang">
+                <Menu.Item key="normal">
                     常用功能
                 </Menu.Item>
-                <Menu.Item key="in">
-                    供应发布
+                <Menu.Item key="achievement">
+                    成果发布
                 </Menu.Item>
-                <Menu.Item key="want">
+                <Menu.Item key="demand">
                     需求发布
                 </Menu.Item>
-                <Menu.Item key="my">
+                <Menu.Item key="collection">
                     我的收藏
                 </Menu.Item>
             </Menu>

+ 134 - 0
js/component/account/index/normal.jsx

@@ -0,0 +1,134 @@
+import React from 'react';
+import { Spin, Button, Tabs } from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+
+import '../content.less';
+import './content.less';
+import LeftTab from './leftTab.jsx';
+
+import weixin from '../../../../image/weixin-w.png';
+import qq from '../../../../image/qq-w.png';
+import weibo from '../../../../image/weibo-w.png';
+
+const TabPane = Tabs.TabPane;
+
+const Content = React.createClass({
+    getInitialState() {
+        return {
+            per: '24',
+            loading: false,
+            userlvl: '0',
+            userid: '1234567',
+            follow: '0',
+            chengguo: '0',
+            kaifa: '0',
+            fuwu: '0',
+            xuqiu: '0',
+            activityArr: [{ type: '成果对接会', title: '龙岗区在线科技成果对接会——智能制造业专场', time: '2017-01-10', link: '' },
+            { type: '成果对接会', title: '钛白粉行业技术在线对接会', time: '2017-01-11', link: '' }]
+        };
+    },
+    getData() {
+        this.setState({
+            loading: false
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            url: globalConfig.context + "/api/user/homePage",
+            success: function (data) {
+                if (data.data && data.data.personPortraitUrl && data.data.nickname) {
+                    this.setState({
+                        personPortraitUrl: data.data.personPortraitUrl,
+                        logoUrl: data.data.logoUrl,
+                        type: data.data.type,
+                        nickname: data.data.nickname,
+                        lvl: data.data.lvl,
+                        number: data.data.number
+                    })
+                };
+            }.bind(this),
+        }).done(function (data) {
+            if (data.error && data.error.length) {
+                message.warning(data.error[0].message);
+            }
+        }.bind(this)).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    componentDidMount() {
+        this.getData();
+    },
+    tabChange(key) {
+
+    },
+    render() {
+        return (
+            <Spin spinning={this.state.loading} className='spin-box'>
+                <div className="index-content">
+                    <div className="index-userdata clearfix">
+                        <p className="acc-title">{this.state.number}</p>
+                        <div className="userdata-img">
+                            {this.state.type == 0 ?
+                                <img src={globalConfig.avatarHost + "/upload" + this.state.personPortraitUrl} alt="" /> :
+                                <img src={globalConfig.avatarHost + "/upload" + this.state.logoUrl} alt="" />}
+                        </div>
+                        <div className="userdata-content">
+                            {(() => {
+                                switch (userData.lvl || this.state.userlvl) {
+                                    case '0':
+                                        return <p className="userdata-lvl">等级:<span>LV1</span> 普通用户</p>;
+                                    case '1':
+                                        return <p className="userdata-lvl">等级:<span>LV2</span> 已认证用户</p>;
+                                };
+                            })()}
+                            <p>完善资料 {this.state.per}% ,<a href={globalConfig.avatarHost + "/user/account/set.html"}>继续完善</a>,有助于提高您的资信</p>
+                            <a href={globalConfig.context + "/portal/search/achievement.html"}>成果搜索</a>
+                            <a href={globalConfig.context + "/portal/search/demand.html"}>需求搜索</a>
+                            <p className="userdata-relate" style={{ 'display': 'none' }}>
+                                <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
+                                <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
+                                <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
+                            </p>
+                            <div className="userdata-follow">已有<a href="">{this.state.follow}</a>人关注你</div>
+                        </div>
+                    </div>
+                    <div className="index-record">
+                        <p className="acc-title">我的轨迹</p>
+                        <ul className="record-list clearfix">
+                            <li>技术成果:<a href="">{this.state.chengguo}</a>项</li>
+                            <li>技术开发:<a href="">{this.state.kaifa}</a>项</li>
+                            <li>科技服务:<a href="">{this.state.fuwu}</a>项</li>
+                            <li>发布需求:<a href="">{this.state.xuqiu}</a>项</li>
+                        </ul>
+                    </div>
+                    <div className="index-activity">
+                        <Tabs defaultActiveKey="1" onChange={this.tabChange}>
+                            <TabPane tab="活动" key="1">
+                                <p className="acc-title">即将举办的活动</p>
+                                <ul className="activity-list">
+                                    {
+                                        this.state.activityArr.map(function (item, i) {
+                                            return <li key={i}>
+                                                <span className="list-type">[{item.type}]</span>
+                                                <span className="list-title">{item.title}</span>
+                                                <a href={item.link}>报名</a>
+                                                <span className="list-time">{item.time}</span>
+                                            </li>;
+                                        })
+                                    }
+                                </ul>
+                            </TabPane>
+                            <TabPane tab="其他" key="2">Content of Tab Pane 2</TabPane>
+                        </Tabs>
+                    </div>
+                </div>
+            </Spin>
+        )
+    }
+});
+
+export default Content;

+ 22 - 0
js/component/dataDic.js

@@ -715,5 +715,27 @@ module.exports = {
             value: "3",
             key: "5年独占许可转让"
         }
+    ],
+    //创新度列表
+    innovationList:[
+        {
+            value: "0",
+            key: "行业先进"
+        }, {
+            value: "1",
+            key: "行业领先"
+        }, {
+            value: "2",
+            key: "国内先进"
+        }, {
+            value: "3",
+            key: "国内领先"
+        }, {
+            value: "4",
+            key: "国际先进"
+        }, {
+            value: "5",
+            key: "国际领先"
+        }
     ]
 };

+ 14 - 0
js/component/portal/portal.less

@@ -94,4 +94,18 @@
             text-align: center;
         }
     }
+}
+
+.portal-desc-content {
+    .ant-row {
+        margin-bottom: 16px;
+    }
+    .interest {
+        a,button {
+            float: right;
+            i {
+                vertical-align: middle;
+            }
+        }
+    }
 }

+ 30 - 5
js/component/portal/search/content.jsx

@@ -6,6 +6,7 @@ import { achievementCategoryList, transferModeList, maturityList } from '../../d
 import { getAchievementCategory } from '../../tools';
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
+import AchievementDesc from './achievementDesc';
 
 const Content = React.createClass({
     loadData(pageNo) {
@@ -33,6 +34,9 @@ const Content = React.createClass({
                 this.state.transferPriceLower = 500;
                 this.state.transferPriceUpper = 1000;
                 break;
+            case 6:
+                this.state.bargainingMode = 1;
+                break;
             case 999:
                 this.state.transferPriceLower = null;
                 this.state.transferPriceUpper = null;
@@ -50,6 +54,7 @@ const Content = React.createClass({
                 maturity: this.state.maturity == 999 ? null : this.state.maturity, //成熟度
                 transferPriceLower: this.state.transferPriceLower, //交易金额下限
                 transferPriceUpper: this.state.transferPriceUpper, //交易金额上限
+                bargainingMode: this.state.bargainingMode,
                 transferMode: this.state.transferMode == 999 ? null : this.state.transferMode, //交易方式
                 fieldA: this.state.fieldA, //技术领域(行业类别A)
                 fieldB: this.state.fieldB == 999 ? null : this.state.fieldB, //技术领域(行业类别B)
@@ -98,11 +103,13 @@ const Content = React.createClass({
             this.setState({
                 loading: false
             });
+            this.state.bargainingMode = 0;
         }.bind(this));
     },
     getInitialState() {
         return {
             loading: false,
+            showDesc:false,
             industryRadioB: [],
             transferPrice: 999,
             pagination: {
@@ -251,6 +258,11 @@ const Content = React.createClass({
             showDesc: true
         });
     },
+    closeDesc(e) {
+        this.setState({
+            showDesc: e
+        });
+    },
     render() {
         return (
             <div className="portal-content">
@@ -278,12 +290,13 @@ const Content = React.createClass({
                     <Col className="search-title" span={2}>
                         <span>交易价格</span>
                     </Col>
-                    <Col className="search-select" span={12}>
+                    <Col className="search-select" span={13}>
                         <Radio.Group value={this.state.transferPrice}
                             onChange={(e) => {
                                 this.setState({
                                     transferPrice: e.target.value
                                 });
+                                this.state.transferPrice = e.target.value;
                                 this.loadData();
                             }}>
                             <Radio.Button value={999}>不限</Radio.Button>
@@ -292,15 +305,20 @@ const Content = React.createClass({
                             <Radio.Button value={3}>50-100万元</Radio.Button>
                             <Radio.Button value={4}>100-500万元</Radio.Button>
                             <Radio.Button value={5}>500-1000万元</Radio.Button>
+                            <Radio.Button value={6}>面议</Radio.Button>
                         </Radio.Group>
                     </Col>
-                    <Col span={10}>
+                    <Col span={9}>
                         <Checkbox checked={!this.state.transferPrice} onChange={(e) => { if (e.target.checked) { this.setState({ transferPrice: null }) } }}>自定义金额</Checkbox>
-                        <InputNumber style={{ width: 80 }} disabled={Boolean(this.state.transferPrice)} onChange={(e) => { this.state.transferPriceLower = e.target.value; }} />
+                        <InputNumber style={{ width: 80 }}
+                            disabled={Boolean(this.state.transferPrice)}
+                            onChange={(e) => { this.state.transferPriceLower = e; }} />
                         <span> 到 </span>
-                        <InputNumber style={{ width: 80 }} disabled={Boolean(this.state.transferPrice)} onChange={(e) => { this.state.transferPriceUpper = e.target.value; }} />
+                        <InputNumber style={{ width: 80 }}
+                            disabled={Boolean(this.state.transferPrice)}
+                            onChange={(e) => { this.state.transferPriceUpper = e; }} />
                         <span> 万元</span>
-                        <Button style={{ marginLeft: '20px' }} disabled={Boolean(this.state.transferPrice)} onClick={this.loadData}>确定</Button>
+                        <Button style={{ marginLeft: '20px' }} disabled={Boolean(this.state.transferPrice)} onClick={() => { this.loadData() }}>确定</Button>
                     </Col>
                 </Row>
                 <Row className="search-criteria">
@@ -312,6 +330,7 @@ const Content = React.createClass({
                             this.setState({
                                 category: e.target.value
                             });
+                            this.state.category = e.target.value;
                             this.loadData();
                         }}>
                             {this.state.categoryRadio}
@@ -327,6 +346,7 @@ const Content = React.createClass({
                             this.setState({
                                 transferMode: e.target.value
                             });
+                            this.state.transferMode = e.target.value
                             this.loadData();
                         }}>
                             {this.state.transferModeRadio}
@@ -342,6 +362,7 @@ const Content = React.createClass({
                             this.setState({
                                 maturity: e.target.value
                             });
+                            this.state.maturity = e.target.value
                             this.loadData();
                         }}>
                             {this.state.maturityRadio}
@@ -363,6 +384,10 @@ const Content = React.createClass({
                         pagination={this.state.pagination}
                         onRowClick={this.tableRowClick} />
                 </Spin>
+                <AchievementDesc
+                    data={this.state.RowData}
+                    showDesc={this.state.showDesc}
+                    closeDesc={this.closeDesc} />
             </div >
         )
     }

+ 332 - 0
js/component/portal/search/achievementDesc.jsx

@@ -0,0 +1,332 @@
+import React from 'react';
+import { Icon, Modal, message, Spin, Button, Row, Col, Upload, Tooltip, Tag } from 'antd';
+import '../portal.less';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import { getIndustryCategory } from '../../DicIndustryList.js';
+import { getAchievementCategory, getMaturity, getInnovation } from '../../tools.js';
+
+
+const AchievementDetail = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            tags: [],
+            technicalPictureUrl: [],
+            maturityPictureUrl: [],
+        };
+    },
+    handleCancel(e) {
+        this.props.closeDesc(false);
+    },
+    loadData(id) {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/achievementDetail',
+            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(",") : [],
+                    technicalPictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : [],
+                    maturityPictureUrl: thisData.maturityPictureUrl ? splitUrl(thisData.maturityPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    interestClick() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/achievementInterest',
+            data: {
+                id: this.props.data.id
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                } else {
+                    this.loadData(this.props.data.id);
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));;
+    },
+    cancelInterestClick() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/achievementCancelInterest',
+            data: {
+                id: this.state.data.achievementInterestId
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                } else {
+                    this.loadData(this.props.data.id);
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));;
+    },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.showDesc && nextProps.showDesc) {
+            if (nextProps.data.id) {
+                this.loadData(nextProps.data.id);
+            } else {
+                this.state.data = {};
+                this.state.tags = [];
+                this.state.maturityPictureUrl = [];
+                this.state.technicalPictureUrl = [];
+            };
+        };
+    },
+    render() {
+        const theData = this.state.data || {};
+        if (this.props.data) {
+            return (
+                <Spin spinning={this.state.loading} className="portal-desc">
+                    <Modal maskClosable={false}
+                        visible={this.props.showDesc}
+                        onCancel={this.handleCancel}
+                        title={"成果详情"}
+                        width='1000px'
+                        footer=''
+                        className="portal-desc-content">
+                        <Row>
+                            <Col span={4}>编号</Col>
+                            <Col span={8}>{theData.serialNumber}</Col>
+                            <Col span={4}>名称</Col>
+                            <Col span={8}>{theData.name}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>数据类别</Col>
+                            <Col span={8}>
+                                {(() => {
+                                    switch (theData.dataCategory) {
+                                        case "0":
+                                            return <span>成果</span>;
+                                        case "1":
+                                            return <span>技术</span>;
+                                        case "2":
+                                            return <span>项目</span>;
+                                    }
+                                })()}
+                            </Col>
+                            <Col span={4}>类型</Col>
+                            <Col span={8}>{getAchievementCategory(theData.category)}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>应用领域</Col>
+                            <Col span={8}>{getIndustryCategory(theData.fieldA, theData.fieldB)}</Col>
+                            <Col span={4}>发布时间</Col>
+                            <Col span={8}>{theData.releaseDateFormattedDate}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>关键词</Col>
+                            <Col span={20}>
+                                {this.state.tags.map((tag) => {
+                                    return <Tooltip key={tag} title={tag}>
+                                        <Tag key={tag}>{tag}</Tag>
+                                    </Tooltip>;
+                                })}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>摘要</Col>
+                            <Col span={20}>{theData.summary}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成果简介</Col>
+                            <Col span={20}>{theData.introduction}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术图片</Col>
+                            <Col span={20}>
+                                <div className="clearfix">
+                                    <Upload
+                                        listType="picture-card"
+                                        fileList={this.state.technicalPictureUrl}
+                                        onPreview={(file) => {
+                                            this.setState({
+                                                previewImage: file.url || file.thumbUrl,
+                                                previewVisible: true,
+                                            });
+                                        }} >
+                                    </Upload>
+                                    <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>
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成熟度</Col>
+                            <Col span={8}>{getMaturity(theData.maturity)}</Col>
+                            <Col span={4}>创新度</Col>
+                            <Col span={8}>{getInnovation(theData.innovation)}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成熟度证明材料(图片)</Col>
+                            <Col span={20}>
+                                <Upload className="demandDetailShow-upload"
+                                    listType="picture-card"
+                                    fileList={this.state.maturityPictureUrl}
+                                    onPreview={(file) => {
+                                        this.setState({
+                                            previewImage: file.url || file.thumbUrl,
+                                            previewVisible: true,
+                                        });
+                                    }} >
+                                </Upload>
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成熟度证明材料(文本)</Col>
+                            <Col span={20}>
+                                {theData.maturityTextFileUrl ?
+                                    <span className="download-file">
+                                        <a onClick={() => { window.open(globalConfig.context + '/api/admin/achievement/download?id=' + this.props.data.id + '&sign=achievement_maturity_text_file') }}>成熟度证明材料(文本文件)</a>
+                                    </span>
+                                    : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成熟度证明材料(视频地址)</Col>
+                            <Col span={20}>{theData.maturityVideoUrl}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>成果所有人名称</Col>
+                            <Col span={8}>{theData.username || theData.unitName}</Col>
+                            <Col span={4}>合作方式</Col>
+                            <Col span={8}>
+                                {(() => {
+                                    switch (theData.cooperationMode) {
+                                        case "0":
+                                            return <span>技术转让</span>;
+                                        case "1":
+                                            return <span>授权生产</span>;
+                                    }
+                                })()}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>转让方式</Col>
+                            <Col span={8}>
+                                {(() => {
+                                    switch (theData.transferMode) {
+                                        case "0":
+                                            return <span>完全转让</span>;
+                                        case "1":
+                                            return <span>许可转让</span>;
+                                        case "2":
+                                            return <span>技术入股</span>;
+                                    }
+                                })()}
+                            </Col>
+                            <Col span={4}>转让价格</Col>
+                            <Col span={8}>
+                                {(() => {
+                                    switch (theData.bargainingMode) {
+                                        case "0":
+                                            return <span>面议</span>;
+                                        case "1":
+                                            return <span>{theData.transferPrice} 万元</span>;
+                                    }
+                                })()}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术场景</Col>
+                            <Col span={20}>{theData.technicalScene}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术突破</Col>
+                            <Col span={20}>{theData.breakthrough}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>专利情况</Col>
+                            <Col span={20}>{theData.patentCase}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>获奖情况</Col>
+                            <Col span={20}>{theData.awards}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术团队情况</Col>
+                            <Col span={20}>{theData.teamDes}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术参数</Col>
+                            <Col span={20}>{theData.parameter}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术方案</Col>
+                            <Col span={20}>
+                                {theData.techPlanUrl ?
+                                    <span className="download-file">
+                                        <a onClick={() => { window.open(globalConfig.context + '/api/admin/achievement/download?id=' + this.props.data.id + '&sign=achievement_tech_plan') }}>技术方案</a>
+                                    </span>
+                                    : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>商业计划书</Col>
+                            <Col span={20}>
+                                {theData.businessPlanUrl ?
+                                    <span className="download-file">
+                                        <a onClick={() => { window.open(globalConfig.context + '/api/admin/achievement/download?id=' + this.props.data.id + '&sign=achievement_business_plan') }}>商业计划书</a>
+                                    </span>
+                                    : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}
+                            </Col>
+                        </Row>
+                        <div className="interest clearfix">
+                            {theData.achievementInterestId ? <a onClick={this.cancelInterestClick}><Icon type="heart" /> 不感兴趣</a>
+                                : <a onClick={this.interestClick}><Icon type="heart-o" /> 感兴趣</a>}
+                        </div>
+                    </Modal>
+                </Spin>
+            );
+        } else {
+            return <div></div>
+        }
+    },
+});
+
+export default AchievementDetail;

+ 325 - 0
js/component/portal/search/demand.jsx

@@ -0,0 +1,325 @@
+import React from 'react';
+import { Icon, message, Row, Col, Radio, Checkbox, Input, InputNumber, Button, Table, Spin } from 'antd';
+import '../portal.less';
+import { IndustryObject, getIndustryCategory } from '../../DicIndustryList';
+import { demandTypeList } from '../../dataDic';
+import { getDemandType } from '../../tools';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+import DemandDesc from './demandDesc';
+
+const Content = React.createClass({
+    loadData(pageNo) {
+        this.setState({
+            loading: true
+        });
+        switch (this.state.budgetCost) {
+            case 1:
+                this.state.budgetCostLower = 1;
+                this.state.budgetCostUpper = 10;
+                break;
+            case 2:
+                this.state.budgetCostLower = 10;
+                this.state.budgetCostUpper = 50;
+                break;
+            case 3:
+                this.state.budgetCostLower = 50;
+                this.state.budgetCostUpper = 100;
+                break;
+            case 4:
+                this.state.budgetCostLower = 100;
+                this.state.budgetCostUpper = 500;
+                break;
+            case 5:
+                this.state.budgetCostLower = 500;
+                this.state.budgetCostUpper = 1000;
+                break;
+            case 999:
+                this.state.budgetCostLower = null;
+                this.state.budgetCostUpper = null;
+                break;
+        }
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            url: globalConfig.context + "/portal/search/demandList",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+                keyword: this.state.keyword,
+                demandType: this.state.demandType == 999 ? null : this.state.demandType,
+                budgetCostLower: this.state.budgetCostLower, //交易金额下限
+                budgetCostUpper: this.state.budgetCostUpper, //交易金额上限
+                industryCategoryA: this.state.fieldA, //技术领域(行业类别A)
+                industryCategoryB: this.state.fieldB == 999 ? null : this.state.fieldB, //技术领域(行业类别B)
+            },
+            success: function (data) {
+                let theArr = [];
+                if (!data.data && !data.data.list) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                } else {
+                    for (let i = 0; i < data.data.list.length; i++) {
+                        let thisdata = data.data.list[i];
+                        theArr.push({
+                            key: i,
+                            id: thisdata.id,
+                            serialNumber: thisdata.serialNumber,
+                            keyword: thisdata.keyword,
+                            dataCategory: thisdata.dataCategory,
+                            name: thisdata.name,
+                            industryCategory: [thisdata.industryCategoryA, thisdata.industryCategoryB],
+                            industryCategoryA: thisdata.industryCategoryA,
+                            industryCategoryB: thisdata.industryCategoryB,
+                            demandType: thisdata.demandType,
+                            budgetCost: thisdata.budgetCost,
+                            problemDes: thisdata.problemDes,
+                            releaseDate: thisdata.releaseDate,
+                            employerName: thisdata.username || thisdata.unitName,
+                            releaseDateFormattedDate: thisdata.releaseDateFormattedDate
+                        });
+                    };
+                };
+                this.state.pagination.defaultCurrent = data.data.pageNo;
+                this.state.pagination.total = data.data.totalCount;
+                this.setState({
+                    dataSource: theArr,
+                    pagination: this.state.pagination
+                });
+            }.bind(this),
+        }).done(function (data) {
+            if (data.error && data.error.length) {
+                message.warning(data.error[0].message);
+            };
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getInitialState() {
+        return {
+            loading: false,
+            showDesc:false,
+            industryRadioB: [],
+            budgetCost: 999,
+            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: 'name',
+                    key: 'name',
+                }, {
+                    title: '关键字',
+                    dataIndex: 'keyword',
+                    key: 'keyword',
+                }, {
+                    title: '数据类别',
+                    dataIndex: 'dataCategory',
+                    key: 'dataCategory',
+                    render: text => {
+                        switch (text) {
+                            case "0":
+                                return <span>个人需求</span>;
+                            case "1":
+                                return <span>单位需求</span>;
+                        }
+                    }
+                }, {
+                    title: '需求类型',
+                    dataIndex: 'demandType',
+                    key: 'demandType',
+                    render: text => { return getDemandType(text); }
+                }, {
+                    title: '行业分类',
+                    dataIndex: 'industryCategory',
+                    key: 'industryCategory',
+                    render: text => { return getIndustryCategory(text[0], text[1]); }
+                }, {
+                    title: '雇主名称',
+                    dataIndex: 'employerName',
+                    key: 'employerName',
+                }, {
+                    title: '预算价格',
+                    dataIndex: 'budgetCost',
+                    key: 'budgetCost',
+                }, {
+                    title: '问题说明',
+                    dataIndex: 'problemDes',
+                    key: 'problemDes',
+                    width: 400
+                }, {
+                    title: '发布时间',
+                    dataIndex: 'releaseDateFormattedDate',
+                    key: 'releaseDateFormattedDate',
+                }
+            ],
+            dataSource: []
+        };
+    },
+    componentWillMount() {
+        let theArr = [];
+        let demandArr = [];
+        //行业分类单选项
+        theArr.push(
+            <Radio.Button key={999} value={999}>不限</Radio.Button>
+        );
+        IndustryObject.map(function (item) {
+            theArr.push(
+                <Radio.Button key={item.value} value={item.value}>{item.label}</Radio.Button>
+            );
+        });
+        //技术类型单选项目
+        demandArr.push(
+            <Radio.Button key={999} value={999}>不限</Radio.Button>
+        );
+        demandTypeList.map(function (item) {
+            demandArr.push(
+                <Radio.Button key={item.value} value={item.value}>{item.key}</Radio.Button>
+            );
+        });
+        this.state.industryRadioA = theArr;
+        this.state.demandTypeRadio = demandArr;
+    },
+    industryChange(e) {
+        let theArr = [];
+        if (e.target.value !== 999) {
+            theArr.push(
+                <Radio.Button key={999} value={999}>不限</Radio.Button>
+            );
+            IndustryObject.map(function (item1) {
+                if (item1.value == e.target.value) {
+                    item1.children.map(function (item2) {
+                        theArr.push(
+                            <Radio.Button key={item2.value} value={item2.value}>{item2.label}</Radio.Button>
+                        );
+                    });
+                }
+            });
+            this.state.fieldA = e.target.value;
+        } else {
+            this.state.fieldA = null;
+        };
+        this.loadData();
+        this.setState({ industryRadioB: theArr });
+    },
+    tableRowClick(record, index) {
+        this.state.RowData = record;
+        this.setState({
+            showDesc: true
+        });
+    },
+    closeDesc(e) {
+        this.setState({
+            showDesc: e
+        });
+    },
+    render() {
+        return (
+            <div className="portal-content">
+                <Row className="search-criteria">
+                    <Col className="search-title" span={2}>
+                        <span>行业分类</span>
+                    </Col>
+                    <Col className="search-select" span={22}>
+                        <Radio.Group defaultValue={999} onChange={this.industryChange}>
+                            {this.state.industryRadioA}
+                        </Radio.Group>
+                    </Col>
+                </Row>
+                {this.state.industryRadioB.length > 1 ? <Row className="search-criteria">
+                    <Col className="search-title" span={2}>
+                        <span>行业子分类</span>
+                    </Col>
+                    <Col className="search-select" span={22}>
+                        <Radio.Group defaultValue={999} onChange={(e) => { this.state.fieldB = e.target.value; this.loadData() }}>
+                            {this.state.industryRadioB}
+                        </Radio.Group>
+                    </Col>
+                </Row> : <div></div>}
+                <Row className="search-criteria">
+                    <Col className="search-title" span={2}>
+                        <span>预算价格</span>
+                    </Col>
+                    <Col className="search-select" span={12}>
+                        <Radio.Group value={this.state.budgetCost}
+                            onChange={(e) => {
+                                this.setState({
+                                    budgetCost: e.target.value
+                                });
+                                this.state.budgetCost = e.target.value;
+                                this.loadData();
+                            }}>
+                            <Radio.Button value={999}>不限</Radio.Button>
+                            <Radio.Button value={1}>1-10万元</Radio.Button>
+                            <Radio.Button value={2}>10-50万元</Radio.Button>
+                            <Radio.Button value={3}>50-100万元</Radio.Button>
+                            <Radio.Button value={4}>100-500万元</Radio.Button>
+                            <Radio.Button value={5}>500-1000万元</Radio.Button>
+                        </Radio.Group>
+                    </Col>
+                    <Col span={10}>
+                        <Checkbox checked={!this.state.budgetCost} onChange={(e) => { if (e.target.checked) { this.setState({ budgetCost: null }) } }}>自定义金额</Checkbox>
+                        <InputNumber style={{ width: 80 }} disabled={Boolean(this.state.budgetCost)} onChange={(e) => { this.state.budgetCostLower = e.target.value; }} />
+                        <span> 到 </span>
+                        <InputNumber style={{ width: 80 }} disabled={Boolean(this.state.budgetCost)} onChange={(e) => { this.state.budgetCostUpper = e.target.value; }} />
+                        <span> 万元</span>
+                        <Button style={{ marginLeft: '20px' }} disabled={Boolean(this.state.budgetCost)} onClick={this.loadData}>确定</Button>
+                    </Col>
+                </Row>
+                <Row className="search-criteria">
+                    <Col className="search-title" span={2}>
+                        <span>技术类型</span>
+                    </Col>
+                    <Col className="search-select" span={22}>
+                        <Radio.Group defaultValue={999} onChange={(e) => {
+                            this.setState({
+                                demandType: e.target.value
+                            });
+                            this.state.demandType = e.target.value;
+                            this.loadData();
+                        }}>
+                            {this.state.demandTypeRadio}
+                        </Radio.Group>
+                    </Col>
+                </Row>
+                <Row className="search-criteria" style={{ paddingBottom: '10px' }}>
+                    <Col className="search-title" span={2}>
+                        <span>关键字</span>
+                    </Col>
+                    <Col className="search-select" span={22}>
+                        <Input style={{ width: 120 }} onChange={(e) => { this.state.keyword = e.target.value; }} />
+                        <Button style={{ marginLeft: '20px' }} onClick={() => { this.loadData() }}>确定</Button>
+                    </Col>
+                </Row>
+                <Spin spinning={this.state.loading}>
+                    <Table columns={this.state.columns}
+                        dataSource={this.state.dataSource}
+                        pagination={this.state.pagination}
+                        onRowClick={this.tableRowClick} />
+                </Spin>
+                <DemandDesc
+                    data={this.state.RowData}
+                    showDesc={this.state.showDesc}
+                    closeDesc={this.closeDesc} />
+            </div >
+        )
+    }
+});
+
+export default Content;

+ 237 - 0
js/component/portal/search/demandDesc.jsx

@@ -0,0 +1,237 @@
+import React from 'react';
+import { Icon, Modal, message, Spin, Button, Row, Col, Upload, Tooltip, Tag } from 'antd';
+import '../portal.less';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import { getIndustryCategory } from '../../DicIndustryList.js';
+import { getDemandType } from '../../tools.js';
+
+
+const DemandDetail = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            tags: [],
+            pictureUrl: [],
+        };
+    },
+    handleCancel(e) {
+        this.props.closeDesc(false);
+    },
+    loadData(id) {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/demandDetail',
+            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));
+    },
+    interestClick() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/demandInterest',
+            data: {
+                id: this.props.data.id
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                } else {
+                    this.loadData(this.props.data.id);
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));;
+    },
+    cancelInterestClick() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/user/portal/demandCancelInterest',
+            data: {
+                id: this.state.data.demandInterestId
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                } else {
+                    this.loadData(this.props.data.id);
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));;
+    },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.showDesc && nextProps.showDesc) {
+            if (nextProps.data.id) {
+                this.loadData(nextProps.data.id);
+            } else {
+                this.state.data = {};
+                this.state.tags = [];
+                this.state.pictureUrl = [];
+            };
+        };
+    },
+    render() {
+        const theData = this.state.data || {};
+        if (this.props.data) {
+            return (
+                <Spin spinning={this.state.loading} className="portal-desc">
+                    <Modal maskClosable={false}
+                        visible={this.props.showDesc}
+                        onCancel={this.handleCancel}
+                        title="需求详情"
+                        width='1000px'
+                        footer=''
+                        className="portal-desc-content">
+                        <Row>
+                            <Col span={4}>编号</Col>
+                            <Col span={8}>{theData.serialNumber}</Col>
+                            <Col span={4}>名称</Col>
+                            <Col span={8}>{theData.name}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>数据类别</Col>
+                            <Col span={8}>
+                                {(() => {
+                                    switch (theData.dataCategory) {
+                                        case "0":
+                                            return <span>个人需求</span>;
+                                        case "1":
+                                            return <span>单位需求</span>;
+                                    }
+                                })()}
+                            </Col>
+                            <Col span={4}>需求类型</Col>
+                            <Col span={8}>{getDemandType(theData.demandType)}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>应用领域</Col>
+                            <Col span={8}>{getIndustryCategory(theData.industryCategoryA, theData.industryCategoryB)}</Col>
+                            <Col span={4}>有效期限</Col>
+                            <Col span={8}>{theData.releaseDateFormattedDate}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>关键词</Col>
+                            <Col span={20}>
+                                {this.state.tags.map((tag) => {
+                                    return <Tooltip key={tag} title={tag}>
+                                        <Tag key={tag}>{tag}</Tag>
+                                    </Tooltip>;
+                                })}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>问题说明</Col>
+                            <Col span={20}>{theData.problemDes}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>技术指标要求</Col>
+                            <Col span={20}>{theData.technicalRequirements}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>需求相关文件(图片)</Col>
+                            <Col span={20}>
+                                <div className="clearfix">
+                                    <Upload
+                                        listType="picture-card"
+                                        fileList={this.state.pictureUrl}
+                                        onPreview={(file) => {
+                                            this.setState({
+                                                previewImage: file.url || file.thumbUrl,
+                                                previewVisible: true,
+                                            });
+                                        }} >
+                                    </Upload>
+                                    <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>
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>需求相关文件(文本)</Col>
+                            <Col span={20}>
+                                {theData.textFileUrl ?
+                                    <span className="download-file">
+                                        <a onClick={() => { window.open(globalConfig.context + '/api/admin/achievement/download?id=' + this.props.data.id + '&sign=achievement_maturity_text_file') }}>需求文件(文本文件)</a>
+                                    </span>
+                                    : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}
+                            </Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>需求文件(视频地址)</Col>
+                            <Col span={20}>{theData.videoUrl}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>雇佣方名称</Col>
+                            <Col span={8}>{theData.username || theData.unitName}</Col>
+                            <Col span={4}>固定周期</Col>
+                            <Col span={8}>{theData.fixedCycle}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>固定人数</Col>
+                            <Col span={8}>{theData.peopleNumber}</Col>
+                            <Col span={4}>预算价格</Col>
+                            <Col span={8}>{theData.budgetCost}</Col>
+                        </Row>
+                        <Row>
+                            <Col span={4}>固定方案</Col>
+                            <Col span={20}>{theData.fixedScheme}</Col>
+                        </Row>
+                        <div className="interest clearfix">
+                            {theData.achievementInterestId ? <a onClick={this.cancelInterestClick}><Icon type="heart" /> 不感兴趣</a>
+                                : <a onClick={this.interestClick}><Icon type="heart-o" /> 感兴趣</a>}
+                        </div>
+                    </Modal>
+                </Spin>
+            );
+        } else {
+            return <div></div>
+        }
+    },
+});
+
+export default DemandDetail;

+ 1 - 1
js/component/portal/top.jsx

@@ -20,7 +20,7 @@ const LoginTop = React.createClass({
                         <img src={logo} alt="" />
                     </div>
                     <div className="portal-text">
-                        <span className="text">科技项目搜索</span>
+                        <span className="text">科技{this.props.searchType}搜索</span>
                         <span className="alink">
                             <a href={globalConfig.context + "/user/account/index.html"}>返回首页</a>
                             {window.userData ?

+ 14 - 1
js/component/tools.js

@@ -25,7 +25,8 @@ import {
     achievementCategoryList,
     techAuditStatusList,
     maturityList,
-    transferModeList
+    transferModeList,
+    innovationList
 } from './dataDic.js';
 import { provinceList } from './DicProvinceList.js';
 import { techFieldList } from './DicTechFieldList.js'
@@ -714,5 +715,17 @@ module.exports = {
             });
             return theType;
         }
+    },
+    //获取创新度状态
+    getInnovation: function (e) {
+        if (e) {
+            let theType = '';
+            innovationList.map(function (item) {
+                if (item.value == e) {
+                    theType = item.key;
+                };
+            });
+            return theType;
+        }
     }
 }

+ 2 - 2
js/portal/search/achievement.js

@@ -4,12 +4,12 @@ import '../../../css/base.less';
 import '../../../css/login.less';
 
 import Top from '../../component/portal/top.jsx';
-import Content from '../../component/portal/search/content.jsx';
+import Content from '../../component/portal/search/achievement.jsx';
 import Footer from '../../component/portal/footer.jsx';
 
 ReactDOM.render(
     <div className="wrap">
-        <Top />
+        <Top searchType={"成果"}/>
         <Content />
         <Footer />
     </div>,

+ 2 - 2
js/portal/search/demand.js

@@ -4,12 +4,12 @@ import '../../../css/base.less';
 import '../../../css/login.less';
 
 import Top from '../../component/portal/top.jsx';
-import Content from '../../component/portal/search/content.jsx';
+import Content from '../../component/portal/search/demand.jsx';
 import Footer from '../../component/portal/footer.jsx';
 
 ReactDOM.render(
     <div className="wrap">
-        <Top />
+        <Top searchType={"需求"}/>
         <Content />
         <Footer />
     </div>,