liting2017 6 years ago
parent
commit
5cb889d90c

+ 1 - 1
js/component/account/set/content.jsx

@@ -35,7 +35,7 @@ const Content = React.createClass({
     componentWillMount() {
         if (userData) {
             if (userData.type == '0') {
-                this.state.leftKey = 'base';
+                this.state.leftKey = 'account';
             } else if (userData.type == '1') {
                 this.state.leftKey = 'group';
             };

+ 1 - 1
js/component/account/set/leftTab.jsx

@@ -9,7 +9,7 @@ import $ from 'jquery/src/ajax';
 const LeftTab = React.createClass({
     getInitialState() {
         return {
-            current: 'base',
+            current: 'account',
         };
     },
     loadData(){

+ 11 - 2
js/component/account/set/newAccount/account.jsx

@@ -11,6 +11,7 @@ import { Row, Col, Form, Button, Spin, message, Modal, Input } from 'antd';
 import './account.less';
 const FormItem = Form.Item;
 
+
 class Account extends React.Component {
 	constructor(props) {
 		super(props);
@@ -123,15 +124,19 @@ class Account extends React.Component {
 		switch (item) {
 			case 1:
 				this.setState({ editName: true });
+				setTimeout(()=>{this.refs.name.focus()},10)
 				break;
 			case 2:
 				this.setState({ editPhoto: true });
+				setTimeout(()=>{this.refs.photo.focus()},10)
 				break;
 			case 3:
 				this.setState({ editEmail: true });
+				setTimeout(()=>{this.refs.email.focus()},10)
 				break;
 			case 4:
 				this.setState({ editNickname: true });
+				setTimeout(()=>{this.refs.nickname.focus()},10)
 				break;
         }
         this.enterFun(item);
@@ -230,6 +235,7 @@ class Account extends React.Component {
 											onBlur={(e) => {
 												this.saveFun(1);
 											}}
+											ref="name"
 											placeholder="请填写注册名称"
 											onChange={(e) => {
 												this.setState({ name: e.target.value });
@@ -261,6 +267,7 @@ class Account extends React.Component {
 											onBlur={(e) => {
 												this.saveFun(2);
 											}}
+											ref="photo"
 											placeholder="请填写注册手机号码"
 											onChange={(e) => {
 												this.setState({ photo: e.target.value });
@@ -290,6 +297,7 @@ class Account extends React.Component {
 											onBlur={(e) => {
 												this.saveFun(3);
 											}}
+											ref="email"
 											placeholder="请填写注册邮箱"
 											onChange={(e) => {
 												this.setState({ email: e.target.value });
@@ -319,6 +327,7 @@ class Account extends React.Component {
 											onBlur={(e) => {
 												this.saveFun(4);
 											}}
+											ref="nickname"
 											placeholder="请填写账号昵称"
 											onChange={(e) => {
 												this.setState({ nickname: e.target.value });
@@ -358,7 +367,7 @@ class Account extends React.Component {
 								</FormItem>
 							</Col>
 						</Row>
-						<Row>
+						{/* <Row>
 							<Col span={8}>
 								<FormItem className="half-mid" {...formItemLayout} label="企业实名认证">
 									<span>{accountData.account}</span>
@@ -393,7 +402,7 @@ class Account extends React.Component {
 							<Col span={16}>
 								<span className="danger">实行个人实名认证后,您将享受技淘网提供的全方位的知识产权运营服务</span>
 							</Col>
-						</Row>
+						</Row> */}
 						<Row>
 							<Col span={8}>
 								<FormItem className="half-mid" {...formItemLayout} label="科技专家认证">

+ 4 - 4
js/component/account/set/newAccount/contacts.jsx

@@ -208,16 +208,16 @@ class Contancts extends React.Component {
 	}
 	//编辑时
 	editFun(item, index) {
-		this.state.oldData[index].edit = true;
+		this.state.contactData[index].edit = true;
 		this.setState({
-			contactData: this.state.oldData
+			contactData: this.state.contactData
 		});
 	}
 	//取消编辑
 	cancelFun(item,index){
-		this.state.oldData[index].edit = false;
+		this.state.contactData[index].edit = false;
 		this.setState({
-			contactData:this.state.oldData
+			contactData:this.state.contactData
 		})
 	}	
 	componentWillMount() {

+ 11 - 0
webpack.config.js

@@ -43,7 +43,18 @@ module.exports = (function () {
 		new HtmlWebpackIncludeAssetsPlugin({
 		    assets: [(__dirname, 'dll/dll.js'),(__dirname, 'dll/dll.css')],
 		    append: false
+        }),
+        new webpack.ProvidePlugin({
+			$: 'jquery',
+			React:'react',
+			Mock:'mockjs'
 		}),
+		//定义全局常量
+		// new webpack.DefinePlugin({
+		// 	"sub": {
+		// 		"name":JSON.stringify("liting")
+		// 	}
+		// }),
         new ExtractTextPlugin({
             filename: "[name].css",
             disable: false,