index.jsx 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. import React, { Component }from 'react';
  2. import {Button, message, Popconfirm} from "antd";
  3. import DataTable from "@/components/common/DataTable";
  4. import NewPermission from './components/newPermission';
  5. import AuthorityDetails from './components/AuthorityDetails';
  6. import {deleteById} from './services/API';
  7. import {PlusOutlined} from "@ant-design/icons";
  8. class Jurisdiction extends Component{
  9. constructor(props) {
  10. super(props);
  11. this.state={
  12. columns:[
  13. {
  14. title: '接口名称',
  15. dataIndex: 'name',
  16. key: 'name',
  17. width: '400px'
  18. }, {
  19. title: '接口路径',
  20. dataIndex: 'url',
  21. key: 'url',
  22. }, {
  23. title: '操作',
  24. dataIndex: 'id',
  25. key: 'id',
  26. render: (text, record, key, action) => {
  27. return(
  28. <>
  29. {
  30. record.url.indexOf('.html#')<=0 &&
  31. <Button
  32. type="primary"
  33. key='addSupPermission'
  34. style={{marginRight:'15px'}}
  35. onClick={(e)=>{e.stopPropagation();this.setState({newPermissionVisible:true,superData:record})}}>
  36. 新增下级权限
  37. </Button>
  38. }
  39. <Popconfirm
  40. title="是否真的删除?"
  41. onConfirm={(e)=>{e.stopPropagation();this.delectRow(record.id,action)}}
  42. okText="确认"
  43. cancelText="取消"
  44. placement="topLeft">
  45. <Button type="danger" onClick={(e)=>{e.stopPropagation();}}>删除</Button>
  46. </Popconfirm>
  47. </>
  48. )
  49. }
  50. }],
  51. detailsVisible:false,
  52. detailsInfor:{},
  53. newPermissionVisible: false,
  54. superData:{},
  55. };
  56. this.delectRow = this.delectRow.bind(this);
  57. this.onRow = this.onRow.bind(this);
  58. }
  59. onRow=(event,record)=>{
  60. event.stopPropagation();
  61. this.setState({
  62. detailsVisible: true,
  63. detailsInfor:record
  64. })
  65. console.log(record)
  66. }
  67. delectRow=async (id,action)=>{
  68. message.loading({ content: '删除中...', key:'delectRow' });
  69. const msg = await deleteById(id);
  70. if(msg.error.length === 0){
  71. message.success({ content: '删除成功!', key:'delectRow', duration: 2 });
  72. action.reload();
  73. }else{
  74. message.error({content:msg.error[0].message, key:'delectRow', duration: 2} );
  75. }
  76. }
  77. onCancel=()=>{
  78. this.setState({
  79. detailsVisible: false
  80. })
  81. }
  82. onNewPermissionCancel=()=>{
  83. this.setState({
  84. newPermissionVisible: false,
  85. superData:'',
  86. })
  87. }
  88. render() {
  89. const ref = React.createRef();
  90. return (
  91. <>
  92. <DataTable
  93. ref={ref}
  94. headerTitle='权限管理'
  95. url='/api/admin/permissions'
  96. method='post'
  97. rowKey='id'
  98. scroll={{ x: 900 }}
  99. columns={this.state.columns}
  100. search={false}
  101. pagination={false}
  102. onRow={(record)=>({
  103. onClick:event => this.onRow(event,record)
  104. })}
  105. toolBarRender={[
  106. <Button
  107. type="primary"
  108. key='NewPermission'
  109. icon={<PlusOutlined />}
  110. onClick={()=>{
  111. this.setState({
  112. newPermissionVisible: true,
  113. superData:'',
  114. })
  115. }}
  116. >
  117. 新增权限
  118. </Button>
  119. ]}
  120. />
  121. {this.state.detailsVisible && <AuthorityDetails
  122. tableRef={ref}
  123. detailsInfor={this.state.detailsInfor}
  124. visible={this.state.detailsVisible}
  125. onCancel={this.onCancel}
  126. />}
  127. {this.state.newPermissionVisible &&
  128. <NewPermission
  129. tableRef={ref}
  130. superData={this.state.superData}
  131. visible={this.state.newPermissionVisible}
  132. onCancel={this.onNewPermissionCancel}
  133. />
  134. }
  135. </>
  136. )
  137. }
  138. }
  139. export default Jurisdiction;