liting2017 6 years ago
parent
commit
401a2ced19

BIN
image/achievmentDetail_7.png


+ 88 - 404
js/component/account/index/collection.jsx

@@ -1,411 +1,95 @@
-import React from 'react';
-import { Spin, Button, Tabs, Table } 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 { getProvince } from '@/NewDicProvinceList';
+import React, { Component } from 'react';
+import { Button,Radio ,message,Row,Col, Spin,Pagination} from 'antd';
+import axios from 'axios';
+import './collection.less';
 
-import avatarImg from 'img/avatarImg.png';
-
-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.achievementPagination.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,
-                            interestId: thisdata.id,
-                            id: thisdata.achievementId,
-                            createTime: thisdata.createTime,
-                            name: thisdata.name,
-                            serialNumber: thisdata.serialNumber,
-                            keyword: thisdata.keyword,
-                            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/portal/demandInterestList",
-            data: {
-                pageNo: pageNo || 1,
-                pageSize: this.state.demandPagination.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,
-                            interestId: thisdata.id,
-                            id: thisdata.demandId,
-                            createTime: thisdata.createTime,
-                            keyword: thisdata.keyword,
-                            name: thisdata.name,
-                            status: thisdata.status,
-                            serialNumber: thisdata.serialNumber,
-                            deletedSign: thisdata.deletedSign,
-                            auditStatus: thisdata.auditStatus,
-                            createTimeFormattedDate: thisdata.createTimeFormattedDate
-                        });
-                    };
-                }
-                this.state.demandPagination.current = data.data.pageNo;
-                this.state.demandPagination.total = data.data.totalCount;
-                this.setState({
-                    demandDataSource: theArr,
-                    demandPagination: this.state.demandPagination
-                });
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    subscriberLoadData(pageNo) {
-        this.state.data = [];
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/user/interest/interestUserList",
-            data: {
-                pageNo: pageNo || 1,
-                pageSize: this.state.subscriberPagination.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,
-                            interestId: thisdata.interestId,  //关注ID  /api/user/interest/interestUser接口 interestId
-                            uid: thisdata.uid,  //被关注人ID
-                            username: thisdata.username,  //个人用户名称
-                            unitName: thisdata.unitName, //组织用户名称
-                            name: thisdata.type == 0 ? thisdata.username : thisdata.unitName,
-                            userProvince: thisdata.userProvince, //个人用户省份
-                            orgProvince: thisdata.orgProvince, 		//组织用户省份
-                            province: thisdata.type == 0 ? thisdata.userProvince : thisdata.orgProvince,
-                            createTime: thisdata.createTime,
-                            type: thisdata.type, 	//被关注人类型 (0--个人用户,1--组织用户)
-                            demandNum: thisdata.demandNum, 	//科技需求数量
-                            achievementNum: thisdata.achievementNum, 	//科技成果数量
-                            personPortraitUrl: thisdata.personPortraitUrl,// 个人用户头像URL
-                            logoUrl: thisdata.logoUrl, //公司LOGO URL
-                            avaterUrl: thisdata.type == 0 ? thisdata.personPortraitUrl : thisdata.logoUrl,
-                            createTimeFormattedDate: thisdata.createTimeFormattedDate, //关注时间
-                        });
-                    };
-                }
-                this.state.subscriberPagination.current = data.data.pageNo;
-                this.state.subscriberPagination.total = data.data.totalCount;
-                this.setState({
-                    subscriberDataSource: theArr,
-                    subscriberPagination: this.state.subscriberPagination
-                });
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            loading: 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: 'auditStatus',
-                    key: 'auditStatus',
-                    render: (text, record) => {
-                        if (record.deletedSign == 1) {
-                            return "已删除"
-                        } else if (record.auditStatus != 3) {
-                            return "已下架"
-                        } else {
-                            return "正常"
-                        }
-                    }
-                }, {
-                    title: '关注时间',
-                    dataIndex: 'createTimeFormattedDate',
-                    key: 'createTimeFormattedDate',
-                }
-            ],
-            achievementDataSource: [],
-            demandShowDesc: false,
-            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: 'auditStatus',
-                    key: 'auditStatus',
-                    render: (text, record) => {
-                        if (record.deletedSign == 1) {
-                            return "已删除"
-                        } else if (record.auditStatus != 3) {
-                            return "已下架"
-                        } else if (record.status == 0) {
-                            return "未解决"
-                        } else if (record.status == 1) {
-                            return "已解决"
-                        }
-                    }
-                }, {
-                    title: '关注时间',
-                    dataIndex: 'createTimeFormattedDate',
-                    key: 'createTimeFormattedDate',
-                }
-            ],
-            demandDataSource: [],
-            subscriberShowDesc: false,
-            subscriberPagination: {
-                defaultCurrent: 1,
-                defaultPageSize: 10,
-                showQuickJumper: true,
-                pageSize: 10,
-                onChange: function (page) {
-                    this.subscriberLoadData(page);
-                }.bind(this),
-                showTotal: function (total) {
-                    return '共' + total + '条数据';
-                }
-            },
-            subscriberColumns: [
-                {
-                    title: null,
-                    dataIndex: 'avaterUrl',
-                    key: 'avaterUrl',
-                    width: 120,
-                    render: text => {
-                        return <div className="avatar-box">
-                            <img src={text ? (globalConfig.avatarHost + '/upload' + text) : avatarImg} alt="" />
-                        </div>
-                    }
-                }, {
-                    title: '名称',
-                    dataIndex: 'name',
-                    key: 'name',
-                }, {
-                    title: '地区',
-                    dataIndex: 'province',
-                    key: 'province',
-                    render: (text) => { return getProvince(text); }
-                }, {
-                    title: '类型',
-                    dataIndex: 'type',
-                    key: 'type',
-                    render: (text) => {
-                        if (text == 0) {
-                            return "个人用户"
-                        } else if (text == 1) {
-                            return "组织用户"
-                        }
-                    }
-                }, {
-                    title: '科技成果数量',
-                    dataIndex: 'achievementNum',
-                    key: 'achievementNum',
-                }, {
-                    title: '科技需求数量',
-                    dataIndex: 'demandNum',
-                    key: 'demandNum',
-                }, {
-                    title: '关注时间',
-                    dataIndex: 'createTimeFormattedDate',
-                    key: 'createTimeFormattedDate',
-                }
-            ],
-            subscriberDataSource: [],
+class Collection extends Component {
+	constructor(props) {
+		super(props);
+		this.state = {
+            loading:false,
+            current:1,
+            nub:'3'
         };
-    },
-    componentWillMount() {
-        this.achievementLoadData();
-    },
-    tabChange(key) {
-        if (key == 1) {
-            this.achievementLoadData();
-        } else if (key == 2) {
-            this.demandLoadData();
-        } else if (key == 3) {
-            this.subscriberLoadData();
-        }
-    },
-    demandRowClick(record, index) {
-        this.state.demandRowData = record;
-        if (record.deletedSign !== 1 && record.auditStatus == 3) {
-            this.setState({
-                demandShowDesc: true
-            });
-        };
-    },
-    achievementRowClick(record, index) {
-        this.state.achievementRowData = record;
-        if (record.deletedSign !== 1 && record.auditStatus == 3) {
-            this.setState({
-                achievementShowDesc: true
-            });
-        };
-    },
-    subscriberRowClick(record, index) {
-        window.open(globalConfig.context + '/user/subscriberDetail.html?rid=' + record.uid + '&type=' + record.type);
-    },
-    demandCloseDesc(e) {
+    }
+    loadData(page,nub){
         this.setState({
-            demandShowDesc: e
-        });
-        this.demandLoadData();
-    },
-    achievementCloseDesc(e) {
+            loading:true,
+        })
+        axios.get('https://www.apiopen.top/satinApi',{
+            params:{
+                type:1,
+                page:page
+            }
+        })
+        .then(data=>{
+            let thisdata=data.data.data;
+            this.setState({
+                loading:false,
+                thisdata:thisdata,
+                total:100
+            })
+        })
+        .catch(error=>{
+            message(error.error)
+        })
+    }
+    componentWillMount(){
+        this.loadData()
+    }
+    tabFun(e){
+       this.setState({ nub: e.target.value })
+       this.loadData(1,e.target.value)
+    }
+    //分页
+    onShowSizeChange(current, pageSize){
         this.setState({
-            achievementShowDesc: e
-        });
-        this.achievementLoadData();
-    },
-    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>
-                        <TabPane tab="我感兴趣的用户" key="3">
-                            <Table columns={this.state.subscriberColumns}
-                                dataSource={this.state.subscriberDataSource}
-                                pagination={this.state.subscriberPagination}
-                                onRowClick={this.subscriberRowClick} />
-                        </TabPane>
-                    </Tabs>
+            current:current,
+            pageSize:pageSize
+        })
+        this.loadData(current);
+    }
+    jump(item){
+        console.log(item);
+    }
+	render() {
+        const thisdata =this.state.thisdata || [];
+        thisdata.length=8;
+		return <div className="user-content">
+            <div className="title" >
+                我的收藏
+            </div>
+            <div>
+                <Radio.Group className="btnGroup" value={this.state.nub} onChange={this.tabFun.bind(this)}>
+                    <Radio.Button value="1">需求中心</Radio.Button>
+                    <Radio.Button value="2">技术市场</Radio.Button>
+                    <Radio.Button value="3">科技服务</Radio.Button>
+                    <Radio.Button value="4">模块名称</Radio.Button>
+                </Radio.Group>
+            </div>
+            <div className="imgList">
+                <Spin spinning={this.state.loading}>
+                    <Row>
+                        {thisdata.map((item,index)=>{
+                            return<Col span={6} key={index} onClick={(e)=>{this.jump(item)}}>
+                                    <div className="img">
+                                        <div className="imgHeader">
+                                            <img src={item.cdn_img}  alt=""/>
+                                            <span className="new"></span>
+                                            <div><p>{item.text}</p></div>
+                                        </div>  
+                                        <p className="txt">{item.name}</p>
+                                    </div>
+                                </Col>
+                        })
+                        }   
+                    </Row>
                 </Spin>
-                <DemandDesc data={this.state.demandRowData}
-                    showDesc={this.state.demandShowDesc}
-                    closeDesc={this.demandCloseDesc} />
-                <AchievementDesc data={this.state.achievementRowData}
-                    showDesc={this.state.achievementShowDesc}
-                    closeDesc={this.achievementCloseDesc} />
+                {this.state.total&&<Pagination className="page" current={this.state.current} total={this.state.total} onChange={this.onShowSizeChange.bind(this)}/>}
             </div>
-        )
-    }
-});
+           
+        </div>
+	}
+}
 
-export default Content;
+export default Collection;

+ 104 - 0
js/component/account/index/collection.less

@@ -0,0 +1,104 @@
+.user-content {
+	overflow: hidden;
+	.title {
+		font-size: 20px;
+		margin-bottom: 10px;
+	}
+	.btnGroup {
+		margin-bottom: 20px;
+		label {
+			width: 200px;
+			height: 40px;
+			line-height: 40px;
+			font-weight: 500;
+			font-size: 16px;
+			text-align: center;
+		}
+	}
+	.ant-radio-button-wrapper-checked {
+		background: orangered;
+		border-color: transparent;
+		color: #fff;
+		box-shadow: 0 0 0 transparent;
+	}
+	.imgList {
+        width: 90%;
+		.img {
+			width: 300px;
+            margin: 0 auto 15px;
+			.imgHeader {
+                overflow: hidden;
+                transition: all .2s ease-out;
+				box-sizing: border-box;
+				border: 1px solid rgba(180, 182, 182, 0.5);
+				position: relative;
+				height: 220px;
+				width: 100%;
+				img {
+					box-sizing: border-box;
+					position: absolute;
+					border-radius: 5px;
+					left: 3%;
+					top: 3%;
+					width: 94%;
+					height: 94%;
+                }
+                div{
+                    opacity: 0;
+                    width:300px;
+                    height: 0px;
+                    overflow: hidden;
+                    position: absolute;
+                    bottom: 0;
+                    left: 0 ;
+                    color: #ffff;
+                    padding: 15px;
+                    background: rgba(12, 12, 12, 0.5);
+                    transition: all .2s ease-out;
+                    p{
+                        position: absolute;
+                        left: 50%;
+                        top: 50%;
+                        font-size: 14px;
+                        transform: translate(-50%,-50%)
+                    }
+                }
+                
+                .new{
+                    width: 46px;
+                    height: 40px;
+                    display: inline-block;
+                    background: url(../../../../image/achievmentDetail_7.png) no-repeat;
+                    background-size:100% 100%;
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                }
+			}
+			.txt {
+				height: 40px;
+				line-height: 40px;
+				background: rgba(61, 110, 216, 0.7);
+				color: #fff;
+				text-align: center;
+			}
+        }
+        .img:hover{
+            cursor: pointer;
+            img{
+                transform: scale(1.02);
+                transition: all .3s ease-out;
+            }
+            .imgHeader div{
+                opacity: 1;
+                height: 220px;
+                transition: all .3s ease-in
+            }
+        }
+	}
+	.page {
+		text-align: center;
+		margin-top: 20px;
+		margin-bottom: 20px;
+	}
+}

+ 2 - 2
js/component/account/menu.jsx

@@ -6,7 +6,7 @@ module.exports = {
         icon: 'home',
         children: [
           { name: '常用功能', url: 'normal' },
-          { name: '我感兴趣', url: 'collection' },
+          { name: '我的收藏', url: 'collection' },
           { name: '科技订单', url: 'techList' },
           { name: '服务订单', url: 'serviceList' },
           { name: '咨询订单', url: 'consultList' },
@@ -22,6 +22,6 @@ module.exports = {
             { name: '个人资料', url: 'personal' },
             { name: '常用联系人', url: 'contacts' },
           ]
-        }
+        },
     ],
 }

+ 0 - 1
js/component/administration/business/businessCategory.jsx

@@ -189,7 +189,6 @@ const BusinessCategory=Form.create()(React.createClass({
     edithandleSubmit(e){
         e.preventDefault();	
         let thePictureUrl = [];
-        console.log(this.state.pictureUrl)
         if (this.state.pictureUrl.length) {
             let picArr = [];
             this.state.pictureUrl.map(function (item) {

+ 29 - 4
package-lock.json

@@ -362,6 +362,15 @@
       "dev": true,
       "optional": true
     },
+    "axios": {
+      "version": "0.18.0",
+      "resolved": "http://registry.npm.taobao.org/axios/download/axios-0.18.0.tgz",
+      "integrity": "sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=",
+      "requires": {
+        "follow-redirects": "1.5.0",
+        "is-buffer": "1.1.5"
+      }
+    },
     "babel-code-frame": {
       "version": "6.22.0",
       "resolved": "http://registry.npm.taobao.org/babel-code-frame/download/babel-code-frame-6.22.0.tgz",
@@ -3158,6 +3167,24 @@
         }
       }
     },
+    "follow-redirects": {
+      "version": "1.5.0",
+      "resolved": "http://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.5.0.tgz",
+      "integrity": "sha1-I09Jz3cLfzW0DnkPY2zroMOgq3c=",
+      "requires": {
+        "debug": "3.1.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "3.1.0",
+          "resolved": "http://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz",
+          "integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=",
+          "requires": {
+            "ms": "2.0.0"
+          }
+        }
+      }
+    },
     "for-in": {
       "version": "1.0.2",
       "resolved": "http://registry.npm.taobao.org/for-in/download/for-in-1.0.2.tgz",
@@ -4033,8 +4060,7 @@
     "is-buffer": {
       "version": "1.1.5",
       "resolved": "http://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.5.tgz",
-      "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=",
-      "dev": true
+      "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw="
     },
     "is-builtin-module": {
       "version": "1.0.0",
@@ -4997,8 +5023,7 @@
     "ms": {
       "version": "2.0.0",
       "resolved": "http://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz",
-      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-      "dev": true
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
     },
     "multicast-dns": {
       "version": "6.2.2",

+ 1 - 0
package.json

@@ -48,6 +48,7 @@
   },
   "dependencies": {
     "antd": "^2.7.4",
+    "axios": "^0.18.0",
     "echarts": "^3.6.2",
     "echarts-for-react": "^1.4.4",
     "html2canvas": "^0.5.0-beta4",