liting2017 7 years ago
parent
commit
203b759600

+ 1 - 1
js/component/manageCenter/customer/leftTab.jsx

@@ -18,7 +18,7 @@ const LeftTab = React.createClass({
             ]
         };
     },
-     handleClick(e) {
+    handleClick(e) {
         this.props.handlekey(e.key);
         this.setState({
             current: e.key,

+ 0 - 1
js/component/manageCenter/set/content.jsx

@@ -3,7 +3,6 @@ import '../content.less';
 import './content.less';
 import LeftTab from './leftTab';
 
-
 class Content extends Component {
     constructor() {
         super();

+ 12 - 2
js/component/manageCenter/set/leftTab.jsx

@@ -26,14 +26,24 @@ const LeftTab = React.createClass({
         });
     },
     componentWillMount(){
-        if ( window.location.hash ) {
-            this.state.current = window.location.hash.substr(1);
+         const _me = this;
+        if (window.location.hash) {
+            let theKey = window.location.hash.substr(1);
+            this.state.keyList.map(function (item1) {
+                item1.value.map(function (item2) {
+                    if (theKey == item2) {
+                        _me.state.subKey = item1.key
+                    };
+                });
+            });
+            this.state.current = theKey;
         };
     },
     render() {
         return (
             <Menu onClick={this.handleClick}
                 selectedKeys={[this.state.current]}
+                defaultOpenKeys={[this.state.subKey]}
                 mode="inline"
                 className="account-left"
                 >

+ 1 - 1
js/component/manageCenter/set/userManagementS/jurisdiction.jsx

@@ -46,7 +46,7 @@ const Jurisdiction = Form.create()(React.createClass({
 				title: '接口名称',
 				dataIndex: 'name',
 				key: 'name',
-				width: '300px'
+				width: '400px'
 			}, {
 				title: '接口路径',
 				dataIndex: 'url',

+ 136 - 119
js/component/manageCenter/set/userManagementS/newRole.jsx

@@ -1,9 +1,50 @@
 import React from 'react';
-import { Icon, Table, Modal, message, Spin, Input, Select, Button, Form } from 'antd';
+import { Icon, Table, Modal, message, Spin, Input, Select, Button, Form ,Tree} from 'antd';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import './userMangagement.less';
 import {} from '../../../dataDic.js';
+const TreeNodet = Tree.TreeNode;
+
+const treeData = [
+   {
+	title: '0-0',
+	key: '0-0',
+	children: [
+			{
+				title: '0-0-0',
+				key: '0-0-0',
+				children: [
+					{ title: '0-0-0-0', key: '0-0-0-0' },
+					{ title: '0-0-0-1', key: '0-0-0-1' },
+					{ title: '0-0-0-2', key: '0-0-0-2' },
+					],
+			}, 
+			{
+			title: '0-0-1',
+			key: '0-0-1',
+			children: [
+				{ title: '0-0-1-0', key: '0-0-1-0' },
+				{ title: '0-0-1-1', key: '0-0-1-1' },
+				{ title: '0-0-1-2', key: '0-0-1-2' },
+			],
+		}, {
+			title: '0-0-2',
+			key: '0-0-2',
+		}],
+	},
+	{
+	title: '0-1',
+	key: '0-1',
+	children: [
+		{ title: '0-1-0-0', key: '0-1-0-0' },
+		{ title: '0-1-0-1', key: '0-1-0-1' },
+		{ title: '0-1-0-2', key: '0-1-0-2' },
+	],
+}, {
+	title: '0-2',
+	key: '0-2',
+}];
 
 const Newrole = Form.create()(React.createClass({
 	addloadData() {
@@ -16,8 +57,6 @@ const Newrole = Form.create()(React.createClass({
 			crossDomain: false,
 			url: globalConfig.context + '/api/admin/permissions',
 			data: {
-				pageNo: 1,
-				pageSize: 10,
 			},
 			success: function(data) {
 				let theArr = [];
@@ -39,32 +78,20 @@ const Newrole = Form.create()(React.createClass({
 	},
 	getInitialState() {
 		return {
-			orgCodeUrl: [],
 			loading: false,
 			visible: false,
-			addColumns: [{
-				title: '选择角色权限',
-				dataIndex: 'name',
-				key: 'name',
-			}, {
-				title: '',
-				dataIndex: 'Interface',
-				key: 'Interface',
-			}],
+			expandedKeys: [],
+			autoExpandParent: true,
+			checkedKeys: [],
+			selectedKeys: [],
+			renderTreeNodes: undefined,
+			Interface:[]
 		};
 	},
 	handleSubmit(e) {
 		e.preventDefault();
-		//let api=this.props.userDetaile?'编辑':'新建';
 		this.props.form.validateFields((err, values) => {
-	        var tmp = [];
-	        let selectAllId=this.state.selectedRowKeyst;
-	        for(var i in selectAllId){
-	            //该元素在tmp内部不存在才允许追加
-	            if(tmp.indexOf(selectAllId[i])==-1){
-	                tmp.push(selectAllId[i]);
-	            }
-	        }
+			let selectAllId = this.state.checkedKeys;
 			if(!err) {
 				this.setState({
 					loading: true
@@ -73,10 +100,13 @@ const Newrole = Form.create()(React.createClass({
 					method: "POST",
 					dataType: "json",
 					crossDomain: false,
-					url: globalConfig.context + 'api',
+					url: globalConfig.context + '/api/admin/role',
 					data: {
-						roleName: this.state.roleName,
-						id:JSON.stringify(tmp)
+						data:JSON.stringify({
+							'id':this.state.id?this.state.id:null,
+							'roleName': this.state.roleName,
+							'permissions': selectAllId
+						})
 					}
 				}).done(function(data) {
 					this.setState({
@@ -93,36 +123,42 @@ const Newrole = Form.create()(React.createClass({
 		});
 	},
 	//查看基本详情基本信息
-	loaduser(record) {
-		if(record) {
-			$.ajax({
-				method: "get",
-				dataType: "json",
-				crossDomain: false,
-				url: globalConfig.context + '/api/admin/customer/toUpdateBusiness',
-				data: {
-					businessId: record.id
-				},
-				success: function(data) {
-					let thisData = data.data;
-					if(!thisData) {
-						if(data.error && data.error.length) {
-							message.warning(data.error[0].message);
-						};
-						thisData = {};
-					};
-					this.setState({
-						roleName: thisData.roleName,
-						selectedRowKeyst:["f9ded9d3-7987-417b-90e8-1ddd9622ada5", "cf637978-ebe8-4be6-9356-f50bc1b81172", "470aad28-e980-4bc5-a8fb-60992c6ee345"],
-					});
-				}.bind(this),
-			}).always(function() {
-				this.setState({
-					loading: false
-				});
-			}.bind(this));
-		}
-	},
+    loaduser(record){
+    	if(record){
+    	$.ajax({
+            method: "post",
+			dataType: "json",
+			crossDomain: false,
+			url: globalConfig.context + '/api/admin/role/rolePermission',
+            data: {
+              id: record.id
+            },
+            success: function (data) {
+                let thisData = data.data;                
+                if (!thisData) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                    thisData = {};
+                };
+                let idList=[];
+                thisData.map(function(item){
+                	idList.push(
+                		item.pid
+                	)
+                })
+                this.setState({
+                	roleName:thisData[0].rname,
+                	checkedKeys:idList,	
+                });                  
+            }.bind(this),
+       }).always(function () {
+            this.setState({            	
+                loading: false
+            });
+        }.bind(this));  
+       }
+    },
 	handleOk(e) {
 		this.setState({
 			visible: false,
@@ -142,17 +178,42 @@ const Newrole = Form.create()(React.createClass({
 		this.state.visible = nextProps.showDesc;
 		if(nextProps.userDetaile && nextProps.showDesc) {
 			if(nextProps.datauser && nextProps.datauser.id) {
-				this.loaduser(nextProps.datauser);
+				this.loaduser(nextProps.datauser)
 			}
+		}else{
+			this.setState({
+				selectedRowKeyst: [],
+				datauser: {},
+				roleName:''
+			})
 		}
+	},
+	//权限多选
+	onExpand(expandedKeys){
 		this.setState({
-			selectedRowKeyst: [],
-			datauser: {},
-		})
-
+			expandedKeys,
+			autoExpandParent: false,
+		});
+	},
+	onCheck(checkedKeys){
+		this.setState({checkedKeys:checkedKeys });
+	},
+	onSelect(selectedKeys, info){
+		this.setState({ selectedKeys });
+	},
+	renderTreeNodes(data){
+		return data.map((item) => {
+			if(item.children) {
+				return(
+					<TreeNodet title={item.name} key={item.id} dataRef={item}>
+            {this.renderTreeNodes(item.children)}
+          </TreeNodet>
+				);
+			}
+			return <TreeNodet {...item} />;
+		});
 	},
 	tableRowClick(record, index) {
-		console.log(record)
 	},
 	render() {
 		const FormItem = Form.Item
@@ -160,58 +221,9 @@ const Newrole = Form.create()(React.createClass({
 			labelCol: { span: 8 },
 			wrapperCol: { span: 14 },
 		};
-		const rowSelection = {
-			selectedRowKeys: this.state.selectedRowKeyst,
-			onChange: (selectedRowKeys, selectedRows) => {
-				let allList = this.state.Interface
-				let allId = [];
-				let autAll = [];
-				let selectId = [];
-				let rowKey = selectedRowKeys;
-				selectedRows.map(function(item, index) {
-					if(item.autNo.length == 4) {
-						let autoNo = item.autNo
-						allList.map(function(item) {
-							autAll.push(item.autNo);
-							allId.push(item.id)
-							if(item.children.length) {
-								item.children.map(function(ttm) {
-									autAll.push(ttm.autNo)
-									allId.push(ttm.id)
-									if(ttm.children.length) {
-										ttm.children.map(function(itt) {
-											autAll.push(itt.autNo)
-											allId.push(itt.id)
-										})
-									}
-								})
-							}
-						})
-						for(var i = 0; i < autAll.length; i++) {
-							if(autAll[i].indexOf(autoNo)) {} else {
-								selectId.push(allId[i])
-							}
-						}
-						rowKey = selectId
-						if(rowKey.length==2){
-							rowKey = selectedRowKeys
-						}
-						return rowKey;
-					}
-					if(item.autNo.length > 4) {
-						rowKey = selectedRowKeys
-					}
-				})
-				this.setState({
-					selectedRowst: selectedRows,
-					selectedRowKeyst: rowKey
-				});
-				console.log(rowKey)
-			},
-		};
 		return(
 			<div>
-           <Modal maskClosable={false} visible={this.state.visible}
+            <Modal maskClosable={false} visible={this.state.visible}
                         onOk={this.handleOk} onCancel={this.handleCancel}
                         width='1000px'
                         title={!this.props.userDetaile?'添加角色':'编辑角色'}                      
@@ -234,14 +246,19 @@ const Newrole = Form.create()(React.createClass({
 				                                <Button className="set-submit" type="ghost" onClick={this.handleCancel}>返回</Button> 
 			                                </FormItem>
 						                </div>
-						                <div className="clearfix">
-						                	<Table columns={this.state.addColumns}
-					                            dataSource={this.state.Interface}
-					                            rowSelection={rowSelection}
-					                            onRowClick={this.tableRowClick} 
-					                            scroll={{ y: 500 }}
-					                            pagination={false}
-					                            />
+						                <div className="clearfix" style={{marginLeft:'90px'}}>
+						                		<Tree
+											        checkable
+											        onExpand={this.onExpand}
+											        expandedKeys={this.state.expandedKeys}
+											        autoExpandParent={this.state.autoExpandParent}
+											        onCheck={this.onCheck}
+											        checkedKeys={this.state.checkedKeys}
+											        onSelect={this.onSelect}
+											        selectedKeys={this.state.selectedKeys}
+											      >
+											        {this.renderTreeNodes(this.state.Interface)}
+											      </Tree>
 						                </div>
 				                    </div>
 			                </Spin>

+ 1 - 1
js/component/manageCenter/set/userManagementS/newUser.jsx

@@ -306,7 +306,7 @@ const Newuser = Form.create()(React.createClass({
 					                    	<FormItem className="half-item"
 						                            {...formItemLayout}
 						                            label="用户名" >   
-					                                    <Input placeholder="输入客户姓名" value={this.state.uesrName}
+					                                    <Input placeholder="输入用户名" value={this.state.uesrName}
 					                                    onChange={(e)=>{this.setState({uesrName:e.target.value})}} required="required" style={{width:'200px'}}/>
 					                                <span className="mandatory">*</span>
 						                    </FormItem>

+ 32 - 18
js/component/manageCenter/set/userManagementS/roles.jsx

@@ -5,7 +5,7 @@ import $ from 'jquery/src/ajax';
 import { Form,Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload } from 'antd';
 import Newrole from "./newRole.jsx"
 import './userMangagement.less'
-import {techAuditStatusList, station,post } from '../../../dataDic.js';
+import {} from '../../../dataDic.js';
 
 const Roles=Form.create()(React.createClass({
 	loadData(pageNo) {
@@ -14,10 +14,10 @@ const Roles=Form.create()(React.createClass({
             loading: true
         });
         $.ajax({
-            method: "get",
+            method: "post",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + '/api/role',
+            url: globalConfig.context + '/api/admin/roles',
             data: {
                 pageNo: pageNo || 1,
                 pageSize: this.state.pagination.pageSize,
@@ -25,18 +25,24 @@ const Roles=Form.create()(React.createClass({
             },
             success: function (data) {
                 let theArr = [];
-                if (!data.data) {
+                if (!data.data.list) {
                     if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };
                 } else {
-                    for (let i = 0; i < data.data.length; i++) {
-                        let thisdata = data.data[i];
+                    for (let i = 0; i < data.data.list.length; i++) {
+                        let thisdata = data.data.list[i];
+//                      let idLists=[];
+//                      thisdata.permissions.map(function(itt){
+//							idLists.push(itt.id)
+//						});
                         theArr.push({
                              key: i,
 	                         id: thisdata.id,
 	                         roleName: thisdata.roleName,
-	                         admin:thisdata.admin
+	                         creater:thisdata.creater,
+	                         createTime:thisdata.createTime,
+	                        // selectedRowKeyst:idLists
                         });
                     };
                     this.state.pagination.current = data.data.pageNo;
@@ -80,13 +86,13 @@ const Roles=Form.create()(React.createClass({
                     width:'300px'
                 }, {
                     title: '创建人',
-                    dataIndex: 'admin',
-                    key: 'admin',
+                    dataIndex: 'creater',
+                    key: 'creater',
                     width:'300px'
                 }, {
                     title: '创建时间',
-                    dataIndex: 'keyword',
-                    key: 'keyword',
+                    dataIndex: 'createTime',
+                    key: 'createTime',
                 }
             ],
             dataSource: [],
@@ -113,15 +119,18 @@ const Roles=Form.create()(React.createClass({
         };
         this.setState({
             selectedRowKeys: [],
-            loading: deletedIds.length > 0
+            loading: true
         });
         $.ajax({
             method: "POST",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/admin/achievement/delete",
+            url: globalConfig.context + "/api/admin/role/delete",
             data: {
-                ids: deletedIds
+            	data:JSON.stringify(
+            		deletedIds
+            	)
+                
             }
         }).done(function (data) {
             if (!data.error.length) {
@@ -152,7 +161,7 @@ const Roles=Form.create()(React.createClass({
         this.loadData();
     },
     reset() {
-    	this.state.userNameSearch='';
+    	this.state.roleNameSearch='';
         this.loadData();       
     },
     render() {
@@ -163,7 +172,12 @@ const Roles=Form.create()(React.createClass({
 	                    selectedRows: selectedRows.slice(-1),
 	                    selectedRowKeys: selectedRowKeys.slice(-1)
 	                }); 
-            }
+            },
+            onSelectAll: (selected, selectedRows, changeRows) => {
+			   this.setState({
+			   		selectedRowKeys:[]
+			   })
+			},
         };
         const hasSelected = this.state.selectedRowKeys.length > 0;
         return (
@@ -175,10 +189,10 @@ const Roles=Form.create()(React.createClass({
 	                        onChange={(e) => { this.setState({ roleNameSearch: e.target.value }); }} />
 	                    <Button type="primary" onClick={this.search}>搜索</Button>
 	                    <Button onClick={this.reset}>重置</Button>
-	                    <Button style={{ background: "red", border: "none", color: "#fff" }}
+	                    <Button type="danger"
 	                        disabled={!hasSelected}
 	                        onClick={this.delectRow}>删除<Icon type="minus" /></Button>
-	                    <Button type="primary" className="addButton" disabled onClick={this.addClick} >新增用户<Icon type="user" /></Button>
+	                    <Button type="primary" className="addButton" onClick={this.addClick} >新增用户<Icon type="user" /></Button>
 	                </div>
 	                <div className="patent-table">
 	                    <Spin spinning={this.state.loading}>

+ 13 - 16
js/component/manageCenter/set/userManagementS/user.jsx

@@ -54,10 +54,10 @@ const User=Form.create()(React.createClass({
                             superiorId: thisdata.superiorId,
                             createTimeFormattedDate: thisdata.createTimeFormattedDate
                         });
-                    };   
+                    }; 
+                    this.state.pagination.current = data.data.pageNo?data.data.pageNo:'0';
+                    this.state.pagination.total = data.data.totalCount?data.data.totalCount:'0';
                 };
-                this.state.pagination.current = data.data.pageNo?data.data.pageNo:'0';
-                this.state.pagination.total = data.data.totalCount?data.data.totalCount:'0';
                 this.setState({
                     dataSource: theArr,
                     pagination: this.state.pagination
@@ -290,19 +290,16 @@ const User=Form.create()(React.createClass({
         const rowSelection = {
             selectedRowKeys: this.state.selectedRowKeys,
             onChange: (selectedRowKeys, selectedRows) => {
-            	if(selectedRows.length=='10'){
-                	this.setState({
-                    selectedRows: [],
-                    selectedRowKeys: ''
+                this.setState({
+                    selectedRows: selectedRows.slice(-1),
+                    selectedRowKeys: selectedRowKeys.slice(-1)
                 });
-                }else{
-	                this.setState({
-	                    selectedRows: selectedRows.slice(-1),
-	                    selectedRowKeys: selectedRowKeys.slice(-1)
-	                });
-                }
-                
-            }
+            },
+            onSelectAll: (selected, selectedRows, changeRows) => {
+			   this.setState({
+			   		selectedRowKeys:[]
+			   })
+			},
         };
         const hasSelected = this.state.selectedRowKeys.length > 0;
         const { RangePicker } = DatePicker;
@@ -338,7 +335,7 @@ const User=Form.create()(React.createClass({
 	                        onClick={this.activation}>激活<Icon type="unlock" /></Button>
 	                    
 	                    <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
-	                    <Button type="primary" className="addButton" onClick={this.addClick} disabled>新增用户<Icon type="user" /></Button>
+	                    <Button type="primary" className="addButton" onClick={this.addClick} >新增用户<Icon type="user" /></Button>
 	                    <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
 	                    	<Select placeholder="职务"
 	                            style={{ width: 160 }}