yee лет назад: 7
Родитель
Сommit
041bf9226b

+ 1 - 1
js/component/account/achievement/techAchievement.jsx

@@ -34,7 +34,7 @@ const AchievementList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/account/demand/techDemand.jsx

@@ -36,7 +36,7 @@ const DemandList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 2 - 2
js/component/account/index/collection.jsx

@@ -26,7 +26,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };
@@ -76,7 +76,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 33 - 40
js/component/account/index/normal.jsx

@@ -17,17 +17,7 @@ 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: '' }]
+            loading: false
         };
     },
     getData() {
@@ -37,22 +27,27 @@ const Content = React.createClass({
         $.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),
+            url: globalConfig.context + "/api/user/homePage"
         }).done(function (data) {
             if (data.error && data.error.length) {
                 message.warning(data.error[0].message);
+            } else {
+                this.setState({
+                    achievementNum: data.data.achievementNum,
+                    copyrightNum: data.data.copyrightNum,
+                    demandNum: data.data.demandNum,
+                    email: data.data.email,
+                    intellectualPropertyNum: data.data.intellectualPropertyNum,
+                    logoUrl: data.data.logoUrl,
+                    lvl: data.data.lvl,
+                    nickname: data.data.nickname,
+                    number: data.data.number,
+                    patentNum: data.data.patentNum,
+                    personPortraitUrl: data.data.personPortraitUrl,
+                    techProjectNum: data.data.techProjectNum,
+                    type: data.data.type,
+                    uid: data.data.uid
+                })
             }
         }.bind(this)).always(function () {
             this.setState({
@@ -60,7 +55,7 @@ const Content = React.createClass({
             });
         }.bind(this));
     },
-    componentDidMount() {
+    componentWillMount() {
         this.getData();
     },
     tabChange(key) {
@@ -71,22 +66,19 @@ const Content = React.createClass({
             <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>
+                        <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="" />}
+                            <img src={globalConfig.avatarHost + "/upload/" + (this.state.type == 0 ? this.state.personPortraitUrl : 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>;
+                                if (this.state.level > 0) {
+                                    return <p className="userdata-lvl"><span>Lv.{this.state.level}</span> 用户</p>;
+                                } else {
+                                    return <p className="userdata-lvl"><span>用户未认证</span><a style={{ marginLeft: '20px' }} href={userData.type == 1 ? globalConfig.context + "/user/groupCertify.html" : globalConfig.context + "/user/certify.html"}>进行实名认证</a></p>;
                                 };
                             })()}
-                            <p>完善资料 {this.state.per}% ,<a href={globalConfig.avatarHost + "/user/account/set.html"}>继续完善</a>,有助于提高您的资信</p>
+                            <p><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' }}>
@@ -94,16 +86,17 @@ const Content = React.createClass({
                                 <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>
+                            <li>专利:<a href={globalConfig.context + "/user/account/services.html#patent"}>{this.state.patent || 0}</a> 项</li>
+                            <li>软著:<a href={globalConfig.context + "/user/account/services.html#copyright"}>{this.state.copyright || 0}</a> 项</li>
+                            <li>高企:<a href={globalConfig.context + "/user/account/services.html#cognizance"}>{this.state.cognizance || 0}</a> 项</li>
+                            <li>科技项目:<a href={globalConfig.context + "/user/account/services.html#technology"}>{this.state.technology || 0}</a> 项</li>
+                            <li>技术成果:<a href={globalConfig.context + "/user/account/achievement.html#techAchievement"}>{this.state.ahievement || 0}</a> 项</li>
+                            <li>发布需求:<a href={globalConfig.context + "/user/account/demand.html#techDemand"}>{this.state.demand || 0}</a> 项</li>
                         </ul>
                     </div>
                     <div className="index-activity">

+ 2 - 2
js/component/account/index/orderList.jsx

@@ -27,7 +27,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };
@@ -82,7 +82,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/account/services/contract/contract.jsx

@@ -31,7 +31,7 @@ const Contract = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/account/topTab.jsx

@@ -27,7 +27,7 @@ const TopTab = React.createClass({
             <div className="account-top" >
                 <div className="acc-top-user">
                     <span className="acc-top-user-name">欢迎您, {userData.nickname || userData.number || this.state.username} <a onClick={this.logOut}>[ 退出 ]</a></span>
-                    <span className="acc-top-user-toindex"><a href={userData.type == 1 ? globalConfig.context + "/user/groupCertify.html" : globalConfig.context + "/user/certify.html"}>实名认证</a>&nbsp;&nbsp;&nbsp;<a href={globalConfig.avatarHost + "/portal/index.html"}>返回首页</a></span>
+                    <span className="acc-top-user-toindex"><a href={globalConfig.avatarHost + "/portal/index.html"}>返回首页</a></span>
                 </div>
                 <div className="acc-index">
                     <div className="acc-index-imgbox">

+ 1 - 1
js/component/manageCenter/achievement/achievementOrder.jsx

@@ -287,7 +287,7 @@ const AchievementOrderList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/manageCenter/achievement/techAchievement.jsx

@@ -35,7 +35,7 @@ const AchievementList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/manageCenter/demand/demandOrder.jsx

@@ -296,7 +296,7 @@ const DemandOrderList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/manageCenter/demand/techDemand.jsx

@@ -39,7 +39,7 @@ const DemandList = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 58 - 34
js/component/manageCenter/set/modal.jsx

@@ -17,7 +17,7 @@ const ProvinceAdd = React.createClass({
         let theArr = [];
         this.state.theProvince = [nextProps.locations[nextProps.index].province];
         this.state.citys = nextProps.locations[nextProps.index].city || [];
-        provinceList.map((item) => {
+        this.props.provinceList.map((item) => {
             if (item.id == nextProps.locations[nextProps.index].province) {
                 item.cityList.map((city) => {
                     theArr.push({
@@ -34,7 +34,7 @@ const ProvinceAdd = React.createClass({
             <div style={{ display: 'inline-block', marginRight: '20px', marginBottom: '10px' }}>
                 <Cascader placeholder="选择省份"
                     style={{ width: 80, marginRight: '20px', verticalAlign: 'middle' }}
-                    options={provinceSelect()}
+                    options={this.props.provinceOption}
                     value={this.state.theProvince}
                     showSearch
                     filterOption={companySearch}
@@ -54,7 +54,7 @@ const ProvinceAdd = React.createClass({
                             });
                             return;
                         };
-                        provinceList.map((item) => {
+                        this.props.provinceList.map((item) => {
                             if (item.id == e) {
                                 item.cityList.map((city) => {
                                     theArr.push({
@@ -156,7 +156,6 @@ const TheModal = React.createClass({
             bindroles: [],
             locations: [],
             cityOption: [],
-            provinceList: [],
             locationsObj: {}
         }
     },
@@ -206,6 +205,53 @@ const TheModal = React.createClass({
             });
         })
     },
+    loadAdminOwnLocation() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            url: globalConfig.context + '/api/admin/supervise/adminOwnLocation',
+            cache: false
+        }).done((data) => {
+            if (!data.data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                    return;
+                };
+            };
+            let theArr = [], theList = [];
+            if ((typeof (data.data)).indexOf('string') == -1) {
+                data.data.map((item) => {
+                    theArr.push({
+                        value: item.province,
+                        label: getProvince(item.province)
+                    });
+                    let cityList = [];
+                    if (item.city) {
+                        item.city.split(',').map((c) => {
+                            cityList.push({
+                                id: Number(c),
+                                name: getProvince(c)
+                            });
+                        });
+                    };
+                    theList.push({
+                        id: item.province,
+                        name: getProvince(item.province),
+                        cityList: cityList.length ? cityList : null
+                    });
+                });
+            } else {
+                theArr = provinceSelect();
+                theList = provinceList;
+            }
+            this.setState({
+                provinceOption: theArr,
+                provinceList: theList,
+                loading: false
+            });
+        })
+    },
     loadBindRoles(uid) {
         this.setState({
             loading: true
@@ -253,14 +299,17 @@ const TheModal = React.createClass({
     },
     componentWillMount() {
         this.loadAdminSelectList();
+        this.loadAdminOwnLocation();
     },
     componentWillReceiveProps(nextProps) {
         if (nextProps.show && !this.state.roles.length) {
             this.loadInitialData();
         };
         if (!this.state.visible && nextProps.show) {
-            this.loadBindRoles(nextProps.data.id);
-            this.loadLocations(nextProps.data.id);
+            if (nextProps.data.id) {
+                this.loadBindRoles(nextProps.data.id);
+                this.loadLocations(nextProps.data.id);
+            }
         };
         let nextState = {
             visible: nextProps.show,
@@ -315,33 +364,6 @@ const TheModal = React.createClass({
             return <li><span className='modal-text'>角色</span><span>系统管理员</span></li>
         }
     },
-    getProvinceSelection() {
-        if (window.showPermissionList && window.showRoleList) {
-            return <li>
-                <span className='modal-text'>省份</span>
-                <div style={{ display: 'inline-block' }}>
-                    <Cascader placeholder="选择省份"
-                        style={{ width: 200 }}
-                        value={this.state.province}
-                        options={citySelect()}
-                        showSearch
-                        filterOption={companySearch}
-                        onChange={(e) => { this.setState({ province: e }) }} />
-                </div>
-            </li>
-        } else {
-            return <li>
-                <span className='modal-text'>省份</span>
-                <Cascader placeholder="选择省份"
-                    style={{ width: 200 }}
-                    value={this.state.province}
-                    options={citySelect()}
-                    showSearch
-                    filterOption={companySearch}
-                    onChange={(e) => { this.setState({ province: e }) }} />
-            </li>
-        }
-    },
     bindRoles(val) {
         this.setState({
             bindroles: val
@@ -425,9 +447,11 @@ const TheModal = React.createClass({
                         </ul>
                         <div>
                             <span className='modal-text' style={{ verticalAlign: 'top' }}>地区</span>
-                            {!window.showPermissionList && window.showRoleList ? <div style={{ display: 'inline-block', width: '88%' }}>
+                            {window.showPermissionList && window.showRoleList ? <div style={{ display: 'inline-block', width: '88%' }}>
                                 {this.state.locations.map((item, i) => {
                                     return <ProvinceAdd
+                                        provinceList={this.state.provinceList}
+                                        provinceOption={this.state.provinceOption}
                                         getLocations={this.getLocations}
                                         delLocations={this.delLocations}
                                         locations={this.state.locations}

+ 8 - 0
js/component/manageCenter/userManage/content.jsx

@@ -45,6 +45,14 @@ class Content extends Component {
                     });
                 });
                 break;
+            case 'customerSearch':
+                require.ensure([], () => {
+                    const CustomerSearch = require('./customerSearch').default;
+                    this.setState({
+                        component: <CustomerSearch />,
+                    });
+                });
+                break;
         };
         window.location.hash = key;
     }

+ 99 - 0
js/component/manageCenter/userManage/customerSearch.jsx

@@ -0,0 +1,99 @@
+import React from 'react';
+import { Icon, Button, Input, Select, Spin, message, Col, Row } from 'antd';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import './userList.less';
+import { getSearchUrl } from '../../tools.js';
+
+const CustomerSearch = React.createClass({
+    loadData(pageNo) {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/supervise/findUser",
+            data: {
+                "name": this.state.searchName,
+                "mobile": this.state.searchMobile,
+                "type": Number(this.state.searchType)
+            },
+            success: function (data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                }
+                this.setState({
+                    searchResult: data.data ? <span>名称为 {data.data} 的 {Number(this.state.searchType) ? '团体' : '个人'} 用户存在</span> : <span>未查找到该用户!</span>
+                })
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getInitialState() {
+        return {
+            loading: false,
+            searchType: '0'
+        };
+    },
+    search() {
+        this.loadData();
+    },
+    reset() {
+        this.loadData();
+    },
+    render() {
+        return (
+            <div className="user-content" >
+                <div className="content-title">
+                    <span>客户查询</span>
+                </div>
+                <Row>
+                    <Col span={2}>
+                        <span>用户名称</span>
+                    </Col>
+                    <Col span={5}>
+                        <Input placeholder="请输入用户全称"
+                            value={this.state.searchName}
+                            onChange={(e) => { this.setState({ searchName: e.target.value }) }} />
+                    </Col>
+                    <Col span={1}></Col>
+                    <Col span={2}>
+                        <span>用户登录名</span>
+                    </Col>
+                    <Col span={5}>
+                        <Input placeholder="请输入手机号"
+                            value={this.state.searchMobile}
+                            onChange={(e) => { this.setState({ searchMobile: e.target.value }) }} />
+                    </Col>
+                    <Col span={1}></Col>
+                    <Col span={2}>
+                        <Select style={{ width: 100 }}
+                            value={this.state.searchType}
+                            onChange={(e) => { this.setState({ searchType: e }) }} >
+                            <Select.Option value="0">个人用户</Select.Option>
+                            <Select.Option value="1">组织用户</Select.Option>
+                        </Select>
+                    </Col>
+                    <Col span={2}>
+                        <Button type="primary" onClick={this.search}>搜索</Button>
+                    </Col>
+                </Row>
+                <Row>
+                    <Col span={2}>
+                        <span>查询结果</span>
+                    </Col>
+                    <Col>
+                        {this.state.searchResult}
+                    </Col>
+                </Row>
+            </div >
+        );
+    }
+});
+
+export default CustomerSearch;

+ 4 - 2
js/component/manageCenter/userManage/leftTab.jsx

@@ -27,8 +27,7 @@ const LeftTab = React.createClass({
             <Menu onClick={this.handleClick}
                 selectedKeys={[this.state.current]}
                 mode="vertical"
-                className="account-left"
-            >
+                className="account-left" >
                 <Menu.Item style={{ display: window.showUserList ? 'block' : 'none' }} key="userList">
                     个人用户列表
                 </Menu.Item>
@@ -38,6 +37,9 @@ const LeftTab = React.createClass({
                 <Menu.Item style={{ display: window.showCustomer ? 'block' : 'none' }} key="customerList">
                     我的客户列表
                 </Menu.Item>
+                <Menu.Item style={{ display: window.showCustomer ? 'block' : 'none' }} key="customerSearch">
+                    客户查询
+                </Menu.Item>
             </Menu>
         );
     },

+ 478 - 150
js/component/manageCenter/userManage/orgDesc.jsx

@@ -5,18 +5,16 @@ import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import moment from 'moment';
 import { eduLevelList, auditStatusList, certifyStepList } from '../../dataDic.js'
-import { beforeUploadFile } from '../../tools.js';
-import { areaSelect } from '../../NewDicProvinceList'
+import { beforeUploadFile, getAuditState } from '../../tools.js';
+import { areaSelect, getProvince } from '../../NewDicProvinceList'
 
-const OrgCertify = Form.create()(React.createClass({
+const OrgShow = Form.create()(React.createClass({
     getInitialState() {
         return {
-            visible: false,
             loading: false,
             tabKey: "1",
-            saveSign: "save",
             eduLvlOption: [],
-            auditStatusOption: []
+            eduLvlObj: {}
         };
     },
     loadData(uid) {
@@ -25,10 +23,10 @@ const OrgCertify = Form.create()(React.createClass({
             loading: true
         });
         $.ajax({
-            method: window.showAuditStatus ? "get" : "post",
+            method: "get",
             dataType: "json",
             crossDomain: false,
-            url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/orgDetail" : globalConfig.context + "/api/admin/orgDetail",
+            url: globalConfig.context + "/api/admin/userCertify/orgDetail",
             data: {
                 uid: uid
             },
@@ -42,8 +40,12 @@ const OrgCertify = Form.create()(React.createClass({
                 };
                 this.setState({
                     id: thisData.id,
-                    licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
-                    locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
+                    licenceProvince: thisData.licenceProvince,
+                    licenceCity: thisData.licenceCity,
+                    licenceArea: thisData.licenceArea,
+                    locationProvince: thisData.locationProvince,
+                    locationCity: thisData.locationCity,
+                    locationArea: thisData.locationArea,
                     contacts: thisData.contacts,
                     contactMobile: thisData.contactMobile,
                     fixedTel: thisData.fixedTel,
@@ -159,6 +161,390 @@ const OrgCertify = Form.create()(React.createClass({
         }.bind(this));
     },
     handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.setState({
+                    loading: true
+                });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/api/admin/userCertify/updateOrgDetail",
+                    data: {
+                        uid: this.props.uid,
+                        id: this.state.id,
+                        auditStatus: values.auditStatus,
+                        level: this.state.level,
+                        aid: values.aid, //指派业务员ID
+                        mid: values.mid, //指派客户经理ID
+                    }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        message.success('保存成功!');
+                    } else {
+                        message.warning(data.error[0].message);
+                    }
+                }.bind(this)).always(function () {
+                    this.setState({
+                        loading: false
+                    });
+                    this.props.handleOk();
+                }.bind(this));
+            }
+        });
+    },
+    handleCancel() {
+        this.props.closeDesc(false);
+    },
+    componentWillMount() {
+        let _me = this;
+        eduLevelList.map(function (item, i) {
+            _me.state.eduLvlObj[item.value] = item.key
+        });
+        this.loadData(this.props.uid);
+        this.getAccountManagerList();
+        this.getTechnicianList();
+    },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.visible && nextProps.visible) {
+            this.loadData(nextProps.uid);
+            this.state.tabKey = "1";
+        };
+    },
+    render() {
+        const { getFieldDecorator } = this.props.form;
+        const FormItem = Form.Item
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 12 },
+        };
+        return (
+            <Form horizontal onSubmit={this.handleSubmit} className="person-form">
+                <Tabs defaultActiveKey="1" activeKey={this.state.tabKey} onChange={(e) => { this.setState({ tabKey: e }); }}>
+                    <Tabs.TabPane tab="基本资料" key="1">
+                        <FormItem
+                            {...formItemLayout}
+                            label="公司名称" >
+                            {getFieldDecorator('unitName')(
+                                <span>{this.state.unitName}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="认证名称" >
+                            {getFieldDecorator('aftUsername', {
+                                initialValue: this.state.aftUsername
+                            })(
+                                <span>{this.state.aftUsername}</span>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="身份类型" >
+                            {getFieldDecorator('identityType')(
+                                <span>{this.state.eduLvlObj[this.state.identityType]}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第一联系人" >
+                            {getFieldDecorator('firstContacts')(
+                                <span>{this.state.firstContacts}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第一联系人电话" >
+                            {getFieldDecorator('firstMobile')(
+                                <span>{this.state.firstMobile}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第二联系人" >
+                            {getFieldDecorator('secondContacts')(
+                                <span>{this.state.secondContacts}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第二联系人电话" >
+                            {getFieldDecorator('secondMobile')(
+                                <span>{this.state.secondMobile}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第三联系人" >
+                            {getFieldDecorator('thirdContacts')(
+                                <span>{this.state.thirdContacts}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="第三联系人电话"
+                        >
+                            {getFieldDecorator('thirdMobile')(
+                                <span>{this.state.thirdMobile}</span>
+                            )}
+                        </FormItem>
+                    </Tabs.TabPane>
+                    <Tabs.TabPane tab="认证信息" key="2">
+                        <FormItem
+                            {...formItemLayout}
+                            label="法人" >
+                            {getFieldDecorator('legalPerson')(
+                                <span>{this.state.legalPerson}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="法人身份证号" >
+                            {getFieldDecorator('legalPersonIdCard')(
+                                <span>{this.state.legalPersonIdCard}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="注册资金" >
+                            {getFieldDecorator('registeredCapital')(
+                                <span>{this.state.registeredCapital}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="营业执照编号" >
+                            {getFieldDecorator('licenceNumber')(
+                                <span>{this.state.licenceNumber}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="营业执照所在地" >
+                            {getFieldDecorator('licenceAddress', {
+                                initialValue: this.state.licenceAddress
+                            })(
+                                <span>{getProvince(this.state.licenceProvince, this.state.licenceCity, this.state.licenceArea)}</span>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            labelCol={{ span: 6 }}
+                            wrapperCol={{ span: 18 }}
+                            label="营业执照图片" >
+                            <div className="idcard-img clearfix">
+                                {this.state.licenceScanningUrl ? <div>
+                                    <div className="idcard-imgbox">
+                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
+                                            onClick={(e) => { window.open(e.target.src) }} />
+                                    </div>
+                                </div> : <div>
+                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
+                                    </div>}
+                            </div>
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="组织机构代码" >
+                            {getFieldDecorator('orgCode')(
+                                <span>{this.state.orgCode}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            labelCol={{ span: 6 }}
+                            wrapperCol={{ span: 18 }}
+                            label="组织机构代码证图片" >
+                            <div className="idcard-img clearfix">
+                                {this.state.orgCodeUrl ? <div>
+                                    <div className="idcard-imgbox">
+                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
+                                            onClick={(e) => { window.open(e.target.src) }} />
+                                    </div>
+                                </div> : <div>
+                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
+                                    </div>}
+                            </div>
+                        </FormItem>
+                        <FormItem
+                            labelCol={{ span: 6 }}
+                            wrapperCol={{ span: 18 }}
+                            label="上年度纳税报表" >
+                            <div className="idcard-img clearfix">
+                                {this.state.lastYearTaxReportUrl ? <div>
+                                    <div className="idcard-imgbox">
+                                        <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
+                                            onClick={(e) => { window.open(e.target.src) }} />
+                                    </div>
+                                </div> : <div>
+                                        <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</p>
+                                    </div>}
+                            </div>
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="开户银行" >
+                            {getFieldDecorator('banks')(
+                                <span>{this.state.banks}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="开户银行支行" >
+                            {getFieldDecorator('bankBranch')(
+                                <span>{this.state.bankBranch}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="银行卡号" >
+                            {getFieldDecorator('bankCardNumber')(
+                                <span>{this.state.bankCardNumber}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="开户行所在地" >
+                            {getFieldDecorator('locationAddress', {
+                                initialValue: this.state.locationAddress
+                            })(
+                                <span>{getProvince(this.state.locationProvince, this.state.locationCity, this.state.locationArea)}</span>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="认证状态" >
+                            {getFieldDecorator('auditStatus', {
+                                initialValue: this.state.auditStatus
+                            })(
+                                <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
+                                    onChange={(e) => { this.state.auditStatus = e }}>
+                                    {
+                                        auditStatusList.map(function (item, i) {
+                                            return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
+                                        })
+                                    }
+                                </Select>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="业务员" >
+                            {getFieldDecorator('aid', {
+                                initialValue: this.state.aid
+                            })(
+                                <Select placeholder="选择一个业务员" style={{ width: 200 }}>
+                                    {this.state.technicianOption}
+                                </Select>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="客户经理" >
+                            {getFieldDecorator('mid', {
+                                initialValue: this.state.mid
+                            })(
+                                <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
+                                    {this.state.accountManagerOption}
+                                </Select>
+                                )}
+                        </FormItem>
+                    </Tabs.TabPane>
+                </Tabs>
+                <FormItem wrapperCol={{ span: 12, offset: 4 }}>
+                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
+                    <Button className="set-submit" type="ghost" onClick={() => { this.props.closeDesc }} >取消</Button>
+                </FormItem>
+            </Form >
+        );
+    }
+}));
+
+const OrgCertify = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            loading: false,
+            tabKey: "1",
+            saveSign: "save",
+            eduLvlOption: [],
+            auditStatusOption: []
+        };
+    },
+    loadData(uid) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/orgDetail",
+            data: {
+                uid: uid
+            },
+            success: function (data) {
+                let thisData = data.data;
+                if (!thisData) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                    thisData = {};
+                };
+                this.setState({
+                    id: thisData.id,
+                    licenceAddress: [thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea],
+                    locationAddress: [thisData.locationProvince, thisData.locationCity, thisData.locationArea],
+                    contacts: thisData.contacts,
+                    contactMobile: thisData.contactMobile,
+                    fixedTel: thisData.fixedTel,
+                    qq: thisData.qq,
+                    postalAddress: thisData.postalAddress,
+                    postcode: thisData.postcode,
+                    aftUsername: thisData.aftUsername,
+                    unitName: thisData.unitName,
+                    identityType: thisData.identityType, //组织性质
+                    registeredCapital: thisData.registeredCapital, //注册资金
+
+                    firstContacts: thisData.firstContacts,
+                    firstMobile: thisData.firstMobile,
+                    secondContacts: thisData.secondContacts,
+                    secondMobile: thisData.secondMobile,
+                    thirdContacts: thisData.thirdContacts,
+                    thirdMobile: thisData.thirdMobile,
+
+                    legalPerson: thisData.legalPerson,
+                    legalPersonIdCard: thisData.legalPersonIdCard,
+
+                    licenceNumber: thisData.licenceNumber,
+                    licenceScanningUrl: thisData.licenceScanningUrl,
+                    orgCode: thisData.orgCode,
+                    orgCodeUrl: thisData.orgCodeUrl,
+
+                    bankAccount: thisData.bankAccount,
+                    banks: thisData.banks,
+                    bankBranch: thisData.bankBranch,
+                    bankCardNumber: thisData.bankCardNumber,
+
+                    validationAmount: thisData.validationAmount, //打款金额
+                    paymentDate: thisData.paymentDate,
+                    paymentDateFormattedDate: thisData.paymentDateFormattedDate,
+                    lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
+                    auditStatus: thisData.auditStatus,
+                    level: thisData.level,
+
+                    aid: thisData.aid,   //业务员ID
+                    mid: thisData.mid  //客户经理ID
+                });
+                this.props.form.resetFields();
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    handleSubmit(e) {
         if (e) {
             e.preventDefault();
         };
@@ -167,16 +553,20 @@ const OrgCertify = Form.create()(React.createClass({
                 this.setState({
                     loading: true
                 });
-                //金额判断
-                if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
-                    message.warning('请输入0-100以内的金额');
+                // //金额判断
+                // if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
+                //     message.warning('请输入0-100以内的金额');
+                //     return;
+                // };
+                if ((this.state.auditStatus == "5" && values.level == "0") || (this.state.auditStatus != "5" && values.level != "0")) {
+                    message.warning('认证状态和用户等级不匹配!');
                     return;
                 };
                 $.ajax({
                     method: "POST",
                     dataType: "json",
                     crossDomain: false,
-                    url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateOrgDetail" : globalConfig.context + "/api/admin/updateOrgDetail",
+                    url: globalConfig.context + "/api/admin/updateOrgDetail",
                     data: {
                         uid: this.props.uid,
                         id: this.state.id,
@@ -209,7 +599,6 @@ const OrgCertify = Form.create()(React.createClass({
 
                         validationAmount: values.validationAmount, //打款金额
                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
-                        auditStatus: values.auditStatus,
                         licenceScanningUrl: this.state.licenceScanningUrl,
                         orgCodeUrl: this.state.orgCodeUrl,
                         lastYearTaxReportUrl: this.state.lastYearTaxReportUrl,
@@ -222,6 +611,8 @@ const OrgCertify = Form.create()(React.createClass({
                         locationCity: values.locationAddress[1],
                         locationProvince: values.locationAddress[0],
 
+                        //auditStatus: this.state.auditStatus,
+                        level: values.level,
                         aid: values.aid, //指派业务员ID
                         mid: values.mid, //指派客户经理ID
                         saveSign: this.state.saveSign
@@ -234,7 +625,7 @@ const OrgCertify = Form.create()(React.createClass({
                     }
                 }.bind(this)).always(function () {
                     this.setState({
-                        visible: false,
+                        loading: false,
                         saveSign: "save"
                     });
                     this.props.handleOk();
@@ -252,16 +643,7 @@ const OrgCertify = Form.create()(React.createClass({
                 <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
             );
         });
-        auditStatusList.map(function (item, i) {
-            _me.state.auditStatusOption.push(
-                <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
-            );
-        });
         this.loadData(this.props.uid);
-        if (window.showAuditStatus) {
-            this.getAccountManagerList();
-            this.getTechnicianList();
-        };
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
@@ -282,8 +664,7 @@ const OrgCertify = Form.create()(React.createClass({
                     <Tabs.TabPane tab="基本资料" key="1">
                         <FormItem
                             {...formItemLayout}
-                            label="公司名称"
-                        >
+                            label="公司名称" >
                             {getFieldDecorator('unitName', {
                                 initialValue: this.state.unitName
                             })(
@@ -292,8 +673,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="认证名称"
-                        >
+                            label="认证名称" >
                             {getFieldDecorator('aftUsername', {
                                 initialValue: this.state.aftUsername
                             })(
@@ -302,8 +682,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="身份类型"
-                        >
+                            label="身份类型" >
                             {getFieldDecorator('identityType', {
                                 initialValue: this.state.identityType
                             })(
@@ -315,8 +694,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第一联系人"
-                        >
+                            label="第一联系人" >
                             {getFieldDecorator('firstContacts', {
                                 initialValue: this.state.firstContacts
                             })(
@@ -325,8 +703,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第一联系人电话"
-                        >
+                            label="第一联系人电话" >
                             {getFieldDecorator('firstMobile', {
                                 initialValue: this.state.firstMobile
                             })(
@@ -335,8 +712,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第二联系人"
-                        >
+                            label="第二联系人" >
                             {getFieldDecorator('secondContacts', {
                                 initialValue: this.state.secondContacts
                             })(
@@ -345,8 +721,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第二联系人电话"
-                        >
+                            label="第二联系人电话" >
                             {getFieldDecorator('secondMobile', {
                                 initialValue: this.state.secondMobile
                             })(
@@ -355,8 +730,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第三联系人"
-                        >
+                            label="第三联系人" >
                             {getFieldDecorator('thirdContacts', {
                                 initialValue: this.state.thirdContacts
                             })(
@@ -365,8 +739,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="第三联系人电话"
-                        >
+                            label="第三联系人电话" >
                             {getFieldDecorator('thirdMobile', {
                                 initialValue: this.state.thirdMobile
                             })(
@@ -377,8 +750,7 @@ const OrgCertify = Form.create()(React.createClass({
                     <Tabs.TabPane tab="认证信息" key="2">
                         <FormItem
                             {...formItemLayout}
-                            label="法人"
-                        >
+                            label="法人" >
                             {getFieldDecorator('legalPerson', {
                                 initialValue: this.state.legalPerson
                             })(
@@ -387,8 +759,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="法人身份证号"
-                        >
+                            label="法人身份证号" >
                             {getFieldDecorator('legalPersonIdCard', {
                                 initialValue: this.state.legalPersonIdCard
                             })(
@@ -397,8 +768,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="注册资金"
-                        >
+                            label="注册资金" >
                             {getFieldDecorator('registeredCapital', {
                                 initialValue: this.state.registeredCapital
                             })(
@@ -407,8 +777,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="营业执照编号"
-                        >
+                            label="营业执照编号" >
                             {getFieldDecorator('licenceNumber', {
                                 initialValue: this.state.licenceNumber
                             })(
@@ -417,8 +786,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="营业执照所在地"
-                        >
+                            label="营业执照所在地" >
                             {getFieldDecorator('licenceAddress', {
                                 initialValue: this.state.licenceAddress
                             })(
@@ -428,8 +796,7 @@ const OrgCertify = Form.create()(React.createClass({
                         <FormItem
                             labelCol={{ span: 6 }}
                             wrapperCol={{ span: 18 }}
-                            label="营业执照图片"
-                        >
+                            label="营业执照图片"  >
                             <div className="idcard-img clearfix">
                                 {this.state.licenceScanningUrl ? <div>
                                     <div className="idcard-imgbox">
@@ -463,16 +830,14 @@ const OrgCertify = Form.create()(React.createClass({
                                         } else if (info.file.status === 'error') {
                                             message.error(`${info.file.name} 文件上传失败。`);
                                         }
-                                    }}
-                                >
+                                    }} >
                                     <Button><Icon type="upload" /> 上传营业执照 </Button>
                                 </Upload>
                             </div>
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="组织机构代码"
-                        >
+                            label="组织机构代码" >
                             {getFieldDecorator('orgCode', {
                                 initialValue: this.state.orgCode
                             })(
@@ -482,8 +847,7 @@ const OrgCertify = Form.create()(React.createClass({
                         <FormItem
                             labelCol={{ span: 6 }}
                             wrapperCol={{ span: 18 }}
-                            label="组织机构代码证图片"
-                        >
+                            label="组织机构代码证图片" >
                             <div className="idcard-img clearfix">
                                 {this.state.orgCodeUrl ? <div>
                                     <div className="idcard-imgbox">
@@ -514,8 +878,7 @@ const OrgCertify = Form.create()(React.createClass({
                                         } else if (info.file.status === 'error') {
                                             message.error(`${info.file.name} 文件上传失败。`);
                                         }
-                                    }}
-                                >
+                                    }} >
                                     <Button><Icon type="upload" /> 上传组织机构代码证 </Button>
                                 </Upload>
                             </div>
@@ -523,8 +886,7 @@ const OrgCertify = Form.create()(React.createClass({
                         <FormItem
                             labelCol={{ span: 6 }}
                             wrapperCol={{ span: 18 }}
-                            label="上年度纳税报表"
-                        >
+                            label="上年度纳税报表" >
                             <div className="idcard-img clearfix">
                                 {this.state.lastYearTaxReportUrl ? <div>
                                     <div className="idcard-imgbox">
@@ -555,16 +917,14 @@ const OrgCertify = Form.create()(React.createClass({
                                         } else if (info.file.status === 'error') {
                                             message.error(`${info.file.name} 文件上传失败。`);
                                         }
-                                    }}
-                                >
+                                    }} >
                                     <Button><Icon type="upload" /> 上传上年度纳税表 </Button>
                                 </Upload>
                             </div>
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="开户银行"
-                        >
+                            label="开户银行" >
                             {getFieldDecorator('banks', {
                                 initialValue: this.state.banks
                             })(
@@ -573,8 +933,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="开户银行支行"
-                        >
+                            label="开户银行支行" >
                             {getFieldDecorator('bankBranch', {
                                 initialValue: this.state.bankBranch
                             })(
@@ -583,8 +942,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="银行卡号"
-                        >
+                            label="银行卡号" >
                             {getFieldDecorator('bankCardNumber', {
                                 initialValue: this.state.bankCardNumber
                             })(
@@ -593,87 +951,50 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="开户行所在地"
-                        >
+                            label="开户行所在地"  >
                             {getFieldDecorator('locationAddress', {
                                 initialValue: this.state.locationAddress
                             })(
                                 <Cascader options={areaSelect()} placeholder="请选择地址" />
                                 )}
                         </FormItem>
-                        <div style={{ display: window.showAuditStatus ? 'none' : 'none' }}>
-                            <FormItem
-                                {...formItemLayout}
-                                label="认证状态"
-                            >
-                                <span>
-                                    {(() => {
-                                        let _me = this, theStatus;
-                                        auditStatusList.map(function (item) {
-                                            if (_me.state.auditStatus == item.value) {
-                                                theStatus = item.key;
-                                            };
-                                        });
-                                        return theStatus;
-                                    })()}
-                                </span>
-                            </FormItem>
-                            <FormItem
-                                {...formItemLayout}
-                                label="业务员"
-                            >
-                                <span>{this.state.technicianList ? this.state.technicianList[this.state.aid] : ''}</span>
-                            </FormItem>
-                            <FormItem
-                                {...formItemLayout}
-                                label="客户经理"
-                            >
-                                <span>{this.state.accountManagerList ? this.state.accountManagerList[this.state.mid] : ''}</span>
-                            </FormItem>
-                        </div>
-                        <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
-                            <FormItem
-                                {...formItemLayout}
-                                label="认证状态"
-                            >
-                                {getFieldDecorator('auditStatus', {
-                                    initialValue: this.state.auditStatus
-                                })(
-                                    <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
-                                        onChange={(e) => { this.state.auditStatus = e }}>
-                                        {
-                                            auditStatusList.map(function (item, i) {
-                                                return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
-                                            })
-                                        }
-                                    </Select>
-                                    )}
-                            </FormItem>
-                            <FormItem
-                                {...formItemLayout}
-                                label="业务员"
-                            >
-                                {getFieldDecorator('aid', {
-                                    initialValue: this.state.aid
-                                })(
-                                    <Select placeholder="选择一个业务员" style={{ width: 200 }}>
-                                        {this.state.technicianOption}
-                                    </Select>
-                                    )}
-                            </FormItem>
-                            <FormItem
-                                {...formItemLayout}
-                                label="客户经理"
-                            >
-                                {getFieldDecorator('mid', {
-                                    initialValue: this.state.mid
-                                })(
-                                    <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
-                                        {this.state.accountManagerOption}
-                                    </Select>
-                                    )}
-                            </FormItem>
-                        </div>
+                        <FormItem
+                            {...formItemLayout}
+                            label="用户等级" >
+                            {getFieldDecorator('level', {
+                                initialValue: this.state.level
+                            })(
+                                <Select placeholder="选择要修改的用户等级" style={{ width: 200 }} >
+                                    <Select.Option value="0" >Lv.0</Select.Option>
+                                    <Select.Option value="1" >Lv.1</Select.Option>
+                                    <Select.Option value="2" >Lv.2</Select.Option>
+                                    <Select.Option value="3" >Lv.3</Select.Option>
+                                    <Select.Option value="4" >Lv.4</Select.Option>
+                                    <Select.Option value="5" >Lv.5</Select.Option>
+                                </Select>
+                                )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="认证状态" >
+                            {getFieldDecorator('auditStatus')(
+                                <span>{getAuditState(this.state.auditStatus)}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="业务员" >
+                            {getFieldDecorator('aid')(
+                                <span>{this.props.data.adminName}</span>
+                            )}
+                        </FormItem>
+                        <FormItem
+                            {...formItemLayout}
+                            label="客户经理" >
+                            {getFieldDecorator('mid')(
+                                <span>{this.props.data.managerName}</span>
+                            )}
+                        </FormItem>
                     </Tabs.TabPane>
                 </Tabs>
                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>
@@ -726,11 +1047,18 @@ const OrgDesc = React.createClass({
                             width='600px'
                             footer=''
                             className="admin-desc-content">
-                            <OrgCertify
-                                visible={this.state.visible}
+                            {window.showAuditStatus ? <OrgShow
                                 uid={this.props.data.id}
+                                data={this.props.data}
                                 closeDesc={this.handleCancel}
+                                visible={this.state.visible}
                                 handleOk={this.handleOk} />
+                                : <OrgCertify
+                                    uid={this.props.data.id}
+                                    data={this.props.data}
+                                    closeDesc={this.handleCancel}
+                                    visible={this.state.visible}
+                                    handleOk={this.handleOk} />}
                         </Modal>
                     </Spin>
                 </div>

+ 333 - 121
js/component/manageCenter/userManage/userDesc.jsx

@@ -4,15 +4,15 @@ import moment from 'moment';
 import './userList.less';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
-import { areaSelect } from '../../NewDicProvinceList.js';
+import { areaSelect, getProvince } from '../../NewDicProvinceList.js';
+import { getAuditState } from '../../tools.js';
 import { auditStatusList, certifyStepList } from '../../dataDic.js';
 
-const UserForm = Form.create()(React.createClass({
+const UserShow = Form.create()(React.createClass({
     getInitialState() {
         return {
             visible: false,
-            loading: false,
-            saveSign: "save"
+            loading: false
         };
     },
     loadData(uid) {
@@ -20,10 +20,10 @@ const UserForm = Form.create()(React.createClass({
             loading: true
         });
         $.ajax({
-            method: window.showAuditStatus ? "get" : "post",
+            method: "get",
             dataType: "json",
             crossDomain: false,
-            url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/userDetail" : globalConfig.context + "/api/admin/userDetail",
+            url: globalConfig.context + "/api/admin/userCertify/userDetail",
             data: {
                 uid: uid
             },
@@ -35,18 +35,15 @@ const UserForm = Form.create()(React.createClass({
                     };
                     thisData = {};
                 };
-                let d = new Date()
-                if (thisData && thisData.dateOfBirthMonth && thisData.dateOfBirthYear) {
-                    d.setMonth(thisData.dateOfBirthMonth - 1);
-                    d.setYear(parseInt(thisData.dateOfBirthYear));
-                };
                 this.setState({
                     username: thisData.username,
                     sex: thisData.sex,
                     id: thisData.id,
-                    birth: d,
+                    birth: thisData.dateOfBirthYear + '-' + thisData.dateOfBirthMonth,
                     idNumber: thisData.idNumber,
-                    address: [thisData.province, thisData.city, thisData.area],
+                    province: thisData.province,
+                    city: thisData.city,
+                    area: thisData.area,
                     positiveIdUrl: thisData.positiveIdUrl,
                     oppositeIdUrl: thisData.oppositeIdUrl,
                     aftUsername: thisData.aftUsername,
@@ -60,6 +57,7 @@ const UserForm = Form.create()(React.createClass({
                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
                     paymentDate: thisData.paymentDate,
 
+                    level: thisData.level,
                     aid: thisData.aid,   //业务员ID
                     mid: thisData.mid  //客户经理ID
                 });
@@ -138,13 +136,272 @@ const UserForm = Form.create()(React.createClass({
         }.bind(this));
     },
     handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.setState({
+                    loading: true
+                });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/api/admin/userCertify/updateUserDetail",
+                    data: {
+                        uid: this.props.uid,
+                        id: this.state.id,
+                        auditStatus: values.auditStatus,
+                        level: this.state.level,
+                        aid: values.aid, //指派业务员ID
+                        mid: values.mid, //指派客户经理ID
+                    }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        message.success('保存成功!');
+                    } else {
+                        message.warning(data.error[0].message);
+                    }
+                }.bind(this)).always(function () {
+                    this.setState({
+                        visible: false
+                    });
+                    this.props.handleOk();
+                }.bind(this));
+            }
+        });
+    },
+    componentWillMount() {
+        this.loadData(this.props.uid);
+        this.getAccountManagerList();
+        this.getTechnicianList();
+    },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.visible && nextProps.visible) {
+            this.loadData(nextProps.uid);
+        };
+    },
+    render() {
+        const { getFieldDecorator } = this.props.form;
+        const FormItem = Form.Item
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 12 },
+        };
+        return (
+            <Form horizontal onSubmit={this.handleSubmit} className="person-form">
+                <FormItem
+                    {...formItemLayout}
+                    label="用户名" >
+                    {getFieldDecorator('username')(
+                        <span>{this.state.username}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="性别" >
+                    {getFieldDecorator('sex')(
+                        <span>{this.state.sex}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="出生日期" >
+                    {getFieldDecorator('birth')(
+                        <span>{this.state.birth}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="身份证号" >
+                    {getFieldDecorator('idNumber')(
+                        <span>{this.state.idNumber}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    labelCol={{ span: 6 }}
+                    wrapperCol={{ span: 18 }}
+                    label="身份证图片" >
+                    <div className="idcard-img clearfix">
+                        {this.state.positiveIdUrl ? <div>
+                            <div className="idcard-imgbox">
+                                <img src={globalConfig.context + '/open/writeImage?path=' + this.state.positiveIdUrl} alt="点击查看大图"
+                                    onClick={(e) => { window.open(e.target.src) }} />
+                            </div>
+                        </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
+                        {this.state.oppositeIdUrl ? <div>
+                            <div className="idcard-imgbox">
+                                <img src={globalConfig.context + '/open/writeImage?path=' + this.state.oppositeIdUrl} alt="点击查看大图"
+                                    onClick={(e) => { window.open(e.target.src) }} />
+                            </div>
+                        </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
+                    </div>
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="认证姓名" >
+                    {getFieldDecorator('aftUsername')(
+                        <span>{this.state.aftUsername}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="联系电话" >
+                    {getFieldDecorator('contactMobile')(
+                        <span>{this.state.contactMobile}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="所在地" >
+                    {getFieldDecorator('address')(
+                        <span>{getProvince(this.state.province, this.state.city, this.state.area)}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="开户银行" >
+                    {getFieldDecorator('bankAccount')(
+                        <span>{this.state.bankAccount}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="银行卡号" >
+                    {getFieldDecorator('bankCardNumber')(
+                        <span>{this.state.bankCardNumber}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="用户等级" >
+                    {getFieldDecorator('level')(
+                        <span>{"Lv." + this.state.level}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="认证状态" >
+                    {getFieldDecorator('auditStatus', {
+                        initialValue: this.state.auditStatus
+                    })(
+                        <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
+                            onChange={(e) => { this.state.auditStatus = e }}>
+                            {
+                                auditStatusList.map(function (item, i) {
+                                    return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
+                                })
+                            }
+                        </Select>
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="业务员" >
+                    {getFieldDecorator('aid', {
+                        initialValue: this.state.aid
+                    })(
+                        <Select placeholder="选择一个业务员" style={{ width: 200 }}>
+                            {this.state.technicianOption}
+                        </Select>
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="客户经理" >
+                    {getFieldDecorator('mid', {
+                        initialValue: this.state.mid
+                    })(
+                        <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
+                            {this.state.accountManagerOption}
+                        </Select>
+                        )}
+                </FormItem>
+                <FormItem wrapperCol={{ span: 12, offset: 4 }}>
+                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
+                    <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
+                </FormItem>
+            </Form >
+        )
+    }
+}));
+
+const UserForm = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            saveSign: "save"
+        };
+    },
+    loadData(uid) {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/userDetail",
+            data: {
+                uid: uid
+            },
+            success: function (data) {
+                let thisData = data.data;
+                if (!thisData) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                    thisData = {};
+                };
+                let d = new Date()
+                if (thisData && thisData.dateOfBirthMonth && thisData.dateOfBirthYear) {
+                    d.setMonth(thisData.dateOfBirthMonth - 1);
+                    d.setYear(parseInt(thisData.dateOfBirthYear));
+                };
+                this.setState({
+                    username: thisData.username,
+                    sex: thisData.sex,
+                    id: thisData.id,
+                    birth: d,
+                    idNumber: thisData.idNumber,
+                    address: [thisData.province, thisData.city, thisData.area],
+                    positiveIdUrl: thisData.positiveIdUrl,
+                    oppositeIdUrl: thisData.oppositeIdUrl,
+                    aftUsername: thisData.aftUsername,
+                    contactMobile: thisData.contactMobile,
+                    bankName: thisData.bankName,
+                    bankAccount: thisData.bankAccount,
+                    bankCardNumber: thisData.bankCardNumber,
+                    amountMoney: thisData.amountMoney,
+                    auditStatus: thisData.auditStatus,
+                    process: thisData.process ? String(thisData.process) : undefined,
+                    paymentDateFormattedDate: thisData.paymentDateFormattedDate,
+                    paymentDate: thisData.paymentDate,
+                    level: thisData.level,
+
+                    aid: thisData.aid,   //业务员ID
+                    mid: thisData.mid  //客户经理ID
+                });
+                this.props.form.resetFields();
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    handleSubmit(e) {
         if (e) {
             e.preventDefault();
         };
         this.props.form.validateFields((err, values) => {
-            //金额判断
-            if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
-                message.warning('请输入0-100以内的金额');
+            // //金额判断
+            // if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
+            //     message.warning('请输入0-100以内的金额');
+            //     return;
+            // };
+            if ((this.state.auditStatus == "5" && values.level == "0") || (this.state.auditStatus != "5" && values.level != "0")) {
+                message.warning('认证状态和用户等级不匹配!');
                 return;
             };
             if (!err) {
@@ -155,7 +412,7 @@ const UserForm = Form.create()(React.createClass({
                     method: "POST",
                     dataType: "json",
                     crossDomain: false,
-                    url: window.showAuditStatus ? globalConfig.context + "/api/admin/userCertify/updateUserDetail" : globalConfig.context + "/api/admin/updateUserDetail",
+                    url: globalConfig.context + "/api/admin/updateUserDetail",
                     data: {
                         uid: this.props.uid,
                         id: this.state.id,
@@ -173,11 +430,11 @@ const UserForm = Form.create()(React.createClass({
                         bankAccount: values.bankAccount,
                         bankCardNumber: values.bankCardNumber,
                         amountMoney: values.amountMoney,
-                        auditStatus: values.auditStatus,
+                        //auditStatus: values.auditStatus,
                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
-
-                        aid: values.aid, //指派业务员ID
-                        mid: values.mid, //指派客户经理ID
+                        level: values.level,
+                        //aid: values.aid, //指派业务员ID
+                        //mid: values.mid, //指派客户经理ID
                         saveSign: this.state.saveSign
                     }
                 }).done(function (data) {
@@ -198,15 +455,9 @@ const UserForm = Form.create()(React.createClass({
     },
     componentWillMount() {
         this.loadData(this.props.uid);
-        if (window.showAuditStatus) {
-            this.getAccountManagerList();
-            this.getTechnicianList();
-        };
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.state.uid = undefined;
-            this.state.mid = undefined;
             this.loadData(nextProps.uid);
         };
     },
@@ -222,8 +473,7 @@ const UserForm = Form.create()(React.createClass({
             <Form horizontal onSubmit={this.handleSubmit} className="person-form">
                 <FormItem
                     {...formItemLayout}
-                    label="用户名"
-                >
+                    label="用户名" >
                     {getFieldDecorator('username', {
                         initialValue: this.state.username
                     })(
@@ -232,8 +482,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="性别"
-                >
+                    label="性别" >
                     {getFieldDecorator('sex', {
                         initialValue: this.state.sex
                     })(
@@ -245,8 +494,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="出生日期"
-                >
+                    label="出生日期" >
                     {getFieldDecorator('birth', {
                         initialValue: !this.state.birth ? null : moment(this.state.birth, 'YYYY/MM')
                     })(
@@ -255,8 +503,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="身份证号"
-                >
+                    label="身份证号" >
                     {getFieldDecorator('idNumber', {
                         initialValue: this.state.idNumber
                     })(
@@ -266,8 +513,7 @@ const UserForm = Form.create()(React.createClass({
                 <FormItem
                     labelCol={{ span: 6 }}
                     wrapperCol={{ span: 18 }}
-                    label="身份证图片"
-                >
+                    label="身份证图片" >
                     <div className="idcard-img clearfix">
                         {this.state.positiveIdUrl ? <div>
                             <div className="idcard-imgbox">
@@ -285,8 +531,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="认证姓名"
-                >
+                    label="认证姓名" >
                     {getFieldDecorator('aftUsername', {
                         initialValue: this.state.aftUsername
                     })(
@@ -295,8 +540,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="联系电话"
-                >
+                    label="联系电话" >
                     {getFieldDecorator('contactMobile', {
                         initialValue: this.state.contactMobile
                     })(
@@ -305,8 +549,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="所在地"
-                >
+                    label="所在地" >
                     {getFieldDecorator('address', {
                         initialValue: this.state.address
                     })(
@@ -315,8 +558,7 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="开户银行"
-                >
+                    label="开户银行" >
                     {getFieldDecorator('bankAccount', {
                         initialValue: this.state.bankAccount
                     })(
@@ -325,87 +567,50 @@ const UserForm = Form.create()(React.createClass({
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
-                    label="银行卡号"
-                >
+                    label="银行卡号" >
                     {getFieldDecorator('bankCardNumber', {
                         initialValue: this.state.bankCardNumber
                     })(
                         <Input />
                         )}
                 </FormItem>
-                <div style={{ display: window.showAuditStatus ? 'none' : 'none' }}>
-                    <FormItem
-                        {...formItemLayout}
-                        label="认证状态"
-                    >
-                        <span>
-                            {(() => {
-                                let _me = this, theStatus;
-                                auditStatusList.map(function (item) {
-                                    if (_me.state.auditStatus == item.value) {
-                                        theStatus = item.key;
-                                    };
-                                });
-                                return theStatus;
-                            })()}
-                        </span>
-                    </FormItem>
-                    <FormItem
-                        {...formItemLayout}
-                        label="业务员"
-                    >
-                        <span>{this.state.technicianList ? this.state.technicianList[this.state.aid] : ''}</span>
-                    </FormItem>
-                    <FormItem
-                        {...formItemLayout}
-                        label="客户经理"
-                    >
-                        <span>{this.state.accountManagerList ? this.state.accountManagerList[this.state.mid] : ''}</span>
-                    </FormItem>
-                </div>
-                <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
-                    <FormItem
-                        {...formItemLayout}
-                        label="认证状态"
-                    >
-                        {getFieldDecorator('auditStatus', {
-                            initialValue: this.state.auditStatus
-                        })(
-                            <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
-                                onChange={(e) => { this.state.auditStatus = e }}>
-                                {
-                                    auditStatusList.map(function (item, i) {
-                                        return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
-                                    })
-                                }
-                            </Select>
-                            )}
-                    </FormItem>
-                    <FormItem
-                        {...formItemLayout}
-                        label="业务员"
-                    >
-                        {getFieldDecorator('aid', {
-                            initialValue: this.state.aid
-                        })(
-                            <Select placeholder="选择一个业务员" style={{ width: 200 }}>
-                                {this.state.technicianOption}
-                            </Select>
-                            )}
-                    </FormItem>
-                    <FormItem
-                        {...formItemLayout}
-                        label="客户经理"
-                    >
-                        {getFieldDecorator('mid', {
-                            initialValue: this.state.mid
-                        })(
-                            <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
-                                {this.state.accountManagerOption}
-                            </Select>
-                            )}
-                    </FormItem>
-                </div>
+                <FormItem
+                    {...formItemLayout}
+                    label="用户等级" >
+                    {getFieldDecorator('level', {
+                        initialValue: this.state.level
+                    })(
+                        <Select placeholder="选择要修改的用户等级" style={{ width: 200 }} >
+                            <Select.Option value="0" >Lv.0</Select.Option>
+                            <Select.Option value="1" >Lv.1</Select.Option>
+                            <Select.Option value="2" >Lv.2</Select.Option>
+                            <Select.Option value="3" >Lv.3</Select.Option>
+                            <Select.Option value="4" >Lv.4</Select.Option>
+                            <Select.Option value="5" >Lv.5</Select.Option>
+                        </Select>
+                        )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="认证状态" >
+                    {getFieldDecorator('auditStatus')(
+                        <span>{getAuditState(this.state.auditStatus)}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="业务员" >
+                    {getFieldDecorator('aid', )(
+                        <span>{this.props.data.adminName}</span>
+                    )}
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="客户经理" >
+                    {getFieldDecorator('mid')(
+                        <span>{this.props.data.managerName}</span>
+                    )}
+                </FormItem>
                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>
                     <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
                     <Button className="set-submit" type="ghost"
@@ -456,11 +661,18 @@ const PatentDesc = React.createClass({
                             width='600px'
                             footer=''
                             className="admin-desc-content">
-                            <UserForm
+                            {window.showAuditStatus ? <UserShow
                                 uid={this.props.data.id}
+                                data={this.props.data}
                                 closeDesc={this.handleCancel}
                                 visible={this.state.visible}
                                 handleOk={this.handleOk} />
+                                : <UserForm
+                                    uid={this.props.data.id}
+                                    data={this.props.data}
+                                    closeDesc={this.handleCancel}
+                                    visible={this.state.visible}
+                                    handleOk={this.handleOk} />}
                         </Modal>
                     </Spin>
                 </div>

+ 1 - 1
js/component/manageCenter/userManage/userList.jsx

@@ -188,7 +188,7 @@ const UserList = React.createClass({
     componentWillMount() {
         this.loadData();
         if (window.location.search) {
-            let theArr = getSearchUrl(window.location.search);
+            let theObj = getSearchUrl(window.location.search);
             if (theObj.id != 'null' && theObj.type != 'null') {
                 this.tableRowClick(theObj);
             };

+ 10 - 0
js/component/manageCenter/userManage/userList.less

@@ -23,6 +23,7 @@
         }
     }
 }
+
 .ant-modal-body {
     .orgAdd-input {
         margin-bottom: 20px;
@@ -47,4 +48,13 @@
             border-color: #d9d9d9;
         }
     }
+}
+
+.ant-row {
+    >div {
+        margin-top: 20px;
+        >span {
+            line-height: 28px;
+        }
+    }
 }

+ 1 - 1
js/component/portal/search/achievement.jsx

@@ -61,7 +61,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 1 - 1
js/component/portal/search/demand.jsx

@@ -55,7 +55,7 @@ const Content = React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data && !data.data.list) {
+                if (!data.data || !data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };

+ 13 - 129
portal/achievementDetail.html

@@ -5,13 +5,13 @@
 	<meta charset="utf-8" />
 	<title></title>
 	<!-- 新 Bootstrap 核心 CSS 文件 -->
-	<link href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
+	<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
 	<link href="css/style.css" rel="stylesheet" />
-	<link href="css/highTech.css" rel="stylesheet" />
+	<link href="css/achievementDetail.css" rel="stylesheet" />
 	<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
-	<script src="//cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
+	<script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
 	<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
-	<script src="//cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+	<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 </head>
 
 <body>
@@ -24,135 +24,19 @@
 			</div>
 		</div>
 	</header>
-	<div class="container header_search">
-		<div class="row clearfix">
-			<div class="col-md-3 logo">
-				<img src="img/logo_sm.png" />
+	<div class="container" id="detail">
+		<div class="row clearfix detail-title">
+			<div class="col-md-8 detail-text">
+				<span>铸造用高发热保温冒口套</span>
 			</div>
-			<div class="col-md-7 col-md-offset-2 search">
-				<div class="row clearfix">
-					<div class="input-group ">
-						<input type="text" class="form-control" placeholder="平台资源关键词搜索">
-						<span class="input-group-btn">
-			              		<button class="btn" type="button">搜索</button>
-			             	</span>
-					</div>
-					<!-- /input-group -->
-				</div>
+			<div class="col-md-2">
+				<button type="button" class="btn btn-info">我要接单</button>
 			</div>
-		</div>
-	</div>
-	<div class="container">
-		<div class="row clearfix">
-			<nav>
-				<ul id="myTab">
-					<li class="active"><a href="#">高企自评</a></li>
-					<li><a href="#">高企申请</a></li>
-					<li><a href="#">在线咨询</a></li>
-					<li><a href="#">社交分享</a></li>
-					<li><a href="#">政策解读</a></li>
-				</ul>
-			</nav>
-			<div class="content">
-				<h4>高新技术企业认定有哪些好处?</h4>
-				<div class="discount">
-					<div class="discount_content">
-						<div class="discount_img">
-							<img src="img/discount_ioc_1.png" />
-						</div>
-						<div class="discount_info">
-							<span class="blue">1.企业税收减免</span>
-							<p>高企所得税减免40%,同时可享受办理研发经费加计扣除。</p>
-						</div>
-					</div>
-					<div class="discount_content">
-						<div class="discount_img">
-							<img src="img/discount_ioc_2.png" />
-						</div>
-						<div class="discount_info">
-							<span class="green">2.财政直接补贴</span>
-							<p>地区对新认定的高新技术企业资助均会高于5万元以上</p>
-						</div>
-					</div>
-					<div class="discount_content">
-						<div class="discount_img">
-							<img src="img/discount_ioc_3.png" />
-						</div>
-						<div class="discount_info">
-							<span class="red">3.企业上市优先</span>
-							<p>吸引政策和资金扶持,推动企业产业化扩张,促进企业融资上市。</p>
-						</div>
-					</div>
-					<div class="discount_content">
-						<div class="discount_img">
-							<img src="img/discount_ioc_4.png" />
-						</div>
-						<div class="discount_info">
-							<span class="yellow">4.政策资金倾斜</span>
-							<p>土地、电力、排污、节能、科研资金、税收等各项扶持政策。</p>
-						</div>
-					</div>
-					<div class="discount_content clear_mg">
-						<div class="discount_img">
-							<img src="img/discount_ioc_5.png" />
-						</div>
-						<div class="discount_info">
-							<span class="purple">5.企业品牌提升</span>
-							<p>政府帮企业背书,大大提高了企业品牌知名度。</p>
-						</div>
-					</div>
-				</div>
-
-			</div>
-		</div>
-	</div>
-	<div class="process">
-		<div class="container">
-			<div class="row clearfix">
-				<div class="content">
-					<h4>高企认定流程:</h4>
-					<div class="flow_chart">
-						<img src="img/flowChart.png" />
-					</div>
-
-				</div>
-			</div>
-		</div>
-	</div>
-
-	<div class="container">
-		<div class="row clearfix">
-			<div class="content">
-				<h4>我们的优势</h4>
-				<div class="advantage">
-					<ul>
-						<li>
-							<span>优势一</span>
-							<p>1、总部位于长沙,在全国有15家分(子)咨询机构。<br> 2、为各单位提供政策咨询、科技咨询、知识产权运营,企业上市服务等共22500项。
-								<br> 3、协助各省市2860家单位获得各级政策扶持和资金支持12.4亿。
-							</p>
-						</li>
-						<li>
-							<span>优势二</span>
-							<p>1、借助各省科技咨询中心专家库平台和专业人脉优势。<br> 2、拥有遍布全国各地区的人脉网络。
-							</p>
-						</li>
-						<li>
-							<span>优势三</span>
-							<p>1、国家科技部认定的技术转移示范机构、国家工信部门认定的企业核心服务机构。<br> 2、是目前全国唯一将知识产权运营、科技咨询、金融服务整合在一起的咨询服务机构,可为企业成长提供一站式解决方案。
-							</p>
-						</li>
-						<li>
-							<span>优势四</span>
-							<p>1、获得国家科技部、财政部、工信委等相关部门的政策支持和肯定。<br> 2、由政府出资与省知识产权局、湘大知识产权学院共建了湖南省专利信息集成化平台。
-								<br> 3、建立了专业的知识产权运营服务平台门户网站-GO阿凡提网。
-							</p>
-						</li>
-					</ul>
-				</div>
+			<div class="col-md-2">
+				<button type="button" class="btn btn-info"><span class="glyphicon glyphicon-heart" aria-hidden="true"></span> 我感兴趣</button>
 			</div>
 		</div>
-	</div>
+	</div
 </body>
 
 </html>

+ 7 - 0
portal/css/achievementDetail.css

@@ -0,0 +1,7 @@
+.detail-title {
+    margin: 20px 0;
+}
+
+.detail-title .detail-text {
+    font-size: 24px;
+}