Browse Source

新增权限页面

MaoMeiQiHW 4 years ago
parent
commit
4914e0019a

+ 4 - 14
config/routes.ts

@@ -6,20 +6,10 @@
     access: 'billing',
   },
   {
-    path: '/',
-    routes: [
-      {
-        path: '/',
-        routes: [
-          {
-            path: '/jurisdiction',
-            component: './admin/user/jurisdiction',
-            access: 'jurisdiction',
-          }
-        ],
-      }
-    ]
-  },
+    path: '/jurisdiction',
+    component: './admin/user/jurisdiction',
+    access: 'jurisdiction',
+  }
   {
     path: '/welcome',
     name: 'welcome',

+ 0 - 2
src/pages/Order/Billing/components/createOrder.jsx

@@ -9,8 +9,6 @@ import {
 } from "antd";
 import ProForm, {
   DrawerForm,
-  ProFormText,
-  ProFormDateRangePicker,
   ProFormSelect,
 } from '@ant-design/pro-form';
 import {

+ 86 - 0
src/pages/admin/user/jurisdiction/components/newPermission.jsx

@@ -0,0 +1,86 @@
+import React, { Component } from 'react';
+import {PlusOutlined} from "@ant-design/icons";
+import {Button, message} from "antd";
+import ProForm, {
+  ModalForm,
+  ProFormText,
+  ProFormDateRangePicker,
+  ProFormSelect,
+} from '@ant-design/pro-form';
+
+class NewPermission extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      showDesc: false,
+    };
+    this.addClick = this.addClick.bind(this);
+    this.newPermission = this.newPermission.bind(this);
+  }
+
+  addClick=()=>{
+    this.setState({
+      showDesc: true
+    });
+  }
+
+  newPermission=()=>{
+
+  }
+
+  render() {
+    return (
+        <ModalForm
+          title="新建权限"
+          trigger={
+            <Button
+              type="primary"
+              key='addSupPermission'
+              icon={<PlusOutlined />}
+              onClick={this.addClick}>
+              新增权限
+            </Button>
+          }
+          modalProps={{
+            onCancel: () => this.setState({ showDesc: true }),
+          }}
+          onFinish={async (values) => {
+            await waitTime(2000);
+            console.log(values);
+            message.success('提交成功');
+            return true;
+          }}
+        >
+          <ProForm.Group>
+            <ProFormText
+              required
+              width="xl"
+              name="name"
+              label="接口名称:"
+              placeholder="请输入名称"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              required
+              width="xl"
+              name="name"
+              label="接口路径:"
+              placeholder="请输入接口路径"
+            />
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormText
+              width="xl"
+              name="name"
+              label="接口类型:"
+              placeholder="请选择接口类型"
+              disabled
+            />
+            </ProForm.Group>
+        </ModalForm>
+    );
+  }
+}
+
+export default NewPermission

+ 6 - 12
src/pages/admin/user/jurisdiction/index.jsx

@@ -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'/>
           ]}
         />
       </>