|
@@ -2,12 +2,14 @@ import React, { Component }from 'react';
|
|
|
import {Button, Popconfirm} from "antd";
|
|
|
import { PlusOutlined } from "@ant-design/icons";
|
|
|
import DataTable from "@/components/common/DataTable";
|
|
|
+import NewPermission from './components/newPermission';
|
|
|
|
|
|
class Jurisdiction extends Component{
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
this.state={
|
|
|
- columns:[{
|
|
|
+ columns:[
|
|
|
+ {
|
|
|
title: '接口名称',
|
|
|
dataIndex: 'name',
|
|
|
key: 'name',
|
|
@@ -46,15 +48,13 @@ class Jurisdiction extends Component{
|
|
|
</div>
|
|
|
)
|
|
|
}
|
|
|
- }]
|
|
|
+ }],
|
|
|
};
|
|
|
- this.addClick = this.addClick.bind(this);
|
|
|
+
|
|
|
this.delectRow = this.delectRow.bind(this);
|
|
|
}
|
|
|
|
|
|
- addClick=()=>{
|
|
|
|
|
|
- }
|
|
|
|
|
|
delectRow=()=>{
|
|
|
|
|
@@ -80,13 +80,7 @@ class Jurisdiction extends Component{
|
|
|
search={false}
|
|
|
pagination={false}
|
|
|
toolBarRender={[
|
|
|
- <Button
|
|
|
- type="primary"
|
|
|
- key='addSupPermission'
|
|
|
- icon={<PlusOutlined />}
|
|
|
- onClick={this.addClick}>
|
|
|
- 新增权限
|
|
|
- </Button>
|
|
|
+ <NewPermission key='NewPermission'/>
|
|
|
]}
|
|
|
/>
|
|
|
</>
|