Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
admin-page-blocks
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
阮琦
admin-page-blocks
Commits
d1b11d94
Commit
d1b11d94
authored
Nov 14, 2019
by
Q.Roy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(remove authority-management):
parent
4452faa2
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
98 deletions
+0
-98
authority-management/.gitignore
authority-management/.gitignore
+0
-7
authority-management/.prettierignore
authority-management/.prettierignore
+0
-7
authority-management/.prettierrc
authority-management/.prettierrc
+0
-11
authority-management/.umirc.js
authority-management/.umirc.js
+0
-5
authority-management/LICENSE
authority-management/LICENSE
+0
-21
authority-management/README.md
authority-management/README.md
+0
-13
authority-management/package.json
authority-management/package.json
+0
-22
authority-management/src/index.css
authority-management/src/index.css
+0
-3
authority-management/src/index.js
authority-management/src/index.js
+0
-9
No files found.
authority-management/.gitignore
deleted
100644 → 0
View file @
4452faa2
/yarn.lock
/package-lock.json
/dist
/node_modules
/pages
.umi
.umi-production
authority-management/.prettierignore
deleted
100644 → 0
View file @
4452faa2
**/*.md
**/*.svg
**/*.ejs
**/*.html
package.json
.umi
.umi-production
authority-management/.prettierrc
deleted
100644 → 0
View file @
4452faa2
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json" }
}
]
}
authority-management/.umirc.js
deleted
100644 → 0
View file @
4452faa2
export
default
{
plugins
:
[
[
'
umi-plugin-block-dev
'
,
{}],
],
}
authority-management/LICENSE
deleted
100644 → 0
View file @
4452faa2
The MIT License (MIT)
Copyright (c) 2019-present ()
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
authority-management/README.md
deleted
100644 → 0
View file @
4452faa2
# @umi-material/authority-management
权限管理模块
## Usage
```
sh
umi block https://github.com/https://code.cnjiang.com/qi.ruan/admin-page-blocks/tree/master/authority-management
```
## LICENSE
MIT
authority-management/package.json
deleted
100644 → 0
View file @
4452faa2
{
"name"
:
"@umi-block/authority-management"
,
"version"
:
"0.0.1"
,
"description"
:
"权限管理模块"
,
"main"
:
"src/index.js"
,
"authors"
:
{
"name"
:
""
,
"email"
:
""
},
"repository"
:
"https://code.cnjiang.com/qi.ruan/admin-page-blocks/authority-management"
,
"scripts"
:
{
"dev"
:
"umi dev"
},
"dependencies"
:
{
"react"
:
">=16.0.0"
},
"devDependencies"
:
{
"umi"
:
"^2.9.0"
,
"umi-plugin-block-dev"
:
"^2.0.0"
},
"license"
:
"MIT"
}
authority-management/src/index.css
deleted
100644 → 0
View file @
4452faa2
.normal
{
background
:
#79F2AA
;
}
authority-management/src/index.js
deleted
100644 → 0
View file @
4452faa2
import
styles
from
'
./index.css
'
;
export
default
function
()
{
return
(
<
div
className
=
{
styles
.
normal
}
>
<
h1
>
I
am
a
umi
block
!<
/h1
>
<
/div
>
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment