|
@@ -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>
|