liting2017 преди 6 години
родител
ревизия
cfeebd8006

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

@@ -37,7 +37,7 @@ class DemandDesc extends React.Component {
 					onOk={this.handOk.bind(this)}
 					onCancel={this.handleCancel.bind(this)}
 					width="1000px"
-					title={!data.id ? '新建需求' : '修改需求'}
+					title={!data.id ? '新建成果' : '修改成果'}
 					footer=""
 					className="admin-desc-content"
 				>

+ 2 - 2
js/component/account/achievement/achievementForm.jsx

@@ -516,9 +516,9 @@ const DemandDetailForm = Form.create()(React.createClass({
 					</div>}
 					<div className="clearfix">
 						<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-						{this.props.data&&!this.props.data.id&&<Button className="set-submit" type="primary" htmlType="submit">
+						    <Button className="set-submit" type="primary" htmlType="submit">
 								保存草稿
-							</Button>}
+							</Button>
 							<Button
 								className="set-submit"
 								type="ghost"

+ 3 - 3
js/component/account/demand/demandForm.jsx

@@ -366,7 +366,7 @@ const DemandDetailForm = Form.create()(React.createClass({
 						<FormItem
 							labelCol={{ span: 3 }}
 							wrapperCol={{ span: 18 }}
-							label="关键词" >
+							label={<span><strong style={{color:'red'}}>*</strong>关键词</span>} >
 							<KeyWordTagGroup
 								keyWordArr={this.state.tags}
 								tagsArr={(e)=>{this.setState({tags:e})}}
@@ -497,9 +497,9 @@ const DemandDetailForm = Form.create()(React.createClass({
 					</div>}
 					<div className="clearfix">
 						<FormItem wrapperCol={{ span: 12, offset: 3 }}>
-						{this.props.data&&!this.props.data.id&&<Button className="set-submit" type="primary" htmlType="submit">
+						<Button className="set-submit" type="primary" htmlType="submit">
 								保存草稿
-							</Button>}
+							</Button>
 							<Button
 								className="set-submit"
 								type="ghost"

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

@@ -17,23 +17,23 @@ class Collection extends Component {
         //     loading:true,
         // })
         //https://www.apiopen.top/satinApi
-        axios.get('api/tic',{
-            params:{
-                type:1,
-                page:page
-            }
-        })
-        .then(data=>{
-            let thisdata=data.data.data;
-            this.setState({
-                loading:false,
-                thisdata:thisdata,
-                total:100
-            })
-        })
-        .catch(error=>{
-            message(error.error)
-        })
+        // axios.get('api/tic',{
+        //     params:{
+        //         type:1,
+        //         page:page
+        //     }
+        // })
+        // .then(data=>{
+        //     let thisdata=data.data.data;
+        //     this.setState({
+        //         loading:false,
+        //         thisdata:thisdata,
+        //         total:100
+        //     })
+        // })
+        // .catch(error=>{
+        //     message(error.error)
+        // })
     }
     componentWillMount(){
         this.loadData()

+ 17 - 15
js/component/account/index/leftMenu.jsx

@@ -103,20 +103,21 @@ const LeftTab = React.createClass({
 	},
 	render() {
 		
-		let demandList = [
-			{
-				name: '我的需求',
-				url: 'sub3',
-				icon: 'bulb',
-				children: [ { name: '科技需求列表', url: 'demand' } ]
-			},
-			{
-				name: '我的成果',
-				url: 'sub4',
-				icon: 'compass',
-				children: [ { name: '科技成果列表', url: 'achievement' } ]
-			}
-		];
+		// let demandList = [
+		// 	{
+		// 		name: '我的需求',
+		// 		url: 'sub3',
+		// 		icon: 'bulb',
+		// 		children: [ { name: '科技需求列表', url: 'demand' } ]
+		// 	},
+		// 	{
+		// 		name: '我的成果',
+		// 		url: 'sub4',
+		// 		icon: 'compass',
+		// 		children: [ { name: '科技成果列表', url: 'achievement' } ]
+		// 	}
+		// ];
+
 		let menuList = [],newMenu=[];
 		let menuNO = menu[1].children;
 		menuNO.map((item) => {
@@ -132,7 +133,8 @@ const LeftTab = React.createClass({
 		});
 		if (this.state.type == '0' || this.state.type == '1') {
 			menu[1].children = menuList;
-			newMenu = menu.concat(demandList);
+			//newMenu = menu.concat(demandList);
+			newMenu=menu
 		}else{
 			newMenu=menuInit
 		}

+ 32 - 8
js/component/account/menu.jsx

@@ -6,10 +6,10 @@ module.exports = {
         icon: 'home',
         children: [
           { name: '常用功能', url: 'normal' },
-          { name: '我的收藏', url: 'collection' },
-          { name: '科技订单', url: 'techList' },
-          { name: '服务订单', url: 'serviceList' },
-          { name: '咨询订单', url: 'consultList' },
+          // { name: '我的收藏', url: 'collection' },
+          // { name: '科技订单', url: 'techList' },
+          // { name: '服务订单', url: 'serviceList' },
+          // { name: '咨询订单', url: 'consultList' },
         ]
       },
          {
@@ -24,6 +24,18 @@ module.exports = {
             { name: '常用联系人', url: 'contacts' },
           ]
         },
+        {
+          name: '我的需求',
+          url: 'sub3',
+          icon: 'bulb',
+          children: [ { name: '科技需求列表', url: 'demand' } ]
+        },
+        {
+          name: '我的成果',
+          url: 'sub4',
+          icon: 'compass',
+          children: [ { name: '科技成果列表', url: 'achievement' } ]
+        }
     ],
     menuInit:[
       {
@@ -32,10 +44,10 @@ module.exports = {
         icon: 'home',
         children: [
           { name: '常用功能', url: 'normal' },
-          { name: '我的收藏', url: 'collection' },
-          { name: '科技订单', url: 'techList' },
-          { name: '服务订单', url: 'serviceList' },
-          { name: '咨询订单', url: 'consultList' },
+          // { name: '我的收藏', url: 'collection' },
+          // { name: '科技订单', url: 'techList' },
+          // { name: '服务订单', url: 'serviceList' },
+          // { name: '咨询订单', url: 'consultList' },
         ]
       },
          {
@@ -49,5 +61,17 @@ module.exports = {
             { name: '常用联系人', url: 'contacts' },
           ]
         },
+        {
+          name: '我的需求',
+          url: 'sub3',
+          icon: 'bulb',
+          children: [ { name: '科技需求列表', url: 'demand' } ]
+        },
+        {
+          name: '我的成果',
+          url: 'sub4',
+          icon: 'compass',
+          children: [ { name: '科技成果列表', url: 'achievement' } ]
+        }
     ],
 }

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

@@ -218,14 +218,14 @@ class Account extends React.Component {
 							<Col span={8}>
 								<FormItem className="half-mid" {...formItemLayout} label="注册账号">
 									<span>{this.state.username}</span>
-									<Button disabled
+									{/* <Button disabled
 										size="default"
 										onClick={this.passFun.bind(this)}
 										type="primary"
 										className="Authentication"
 									>
 										修改密码
-									</Button>
+									</Button> */}
 								</FormItem>
 							</Col>
 						</Row>

+ 0 - 14
js/component/account/setAccount/unit.jsx

@@ -448,20 +448,6 @@ const Unit = React.createClass({
 								className="half-item"
 								labelCol={{ span: 4 }}
 								wrapperCol={{ span: 18 }}
-								label="客户传真"
-							>
-								<Input
-									placeholder="客户传真"
-									value={this.state.fixedTel}
-									onChange={(e) => {
-										this.setState({ fixedTel: e.target.value });
-									}}
-								/>
-							</FormItem>
-							<FormItem
-								className="half-item"
-								labelCol={{ span: 4 }}
-								wrapperCol={{ span: 18 }}
 								label="注册资本"
 							>
 								<Input