Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
罗超
confucius
Commits
e051eff3
Commit
e051eff3
authored
Dec 02, 2020
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
50b23939
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
506 additions
and
0 deletions
+506
-0
document.js
src/api/system/document.js
+65
-0
document.vue
src/pages/system/document.vue
+436
-0
routes.js
src/router/routes.js
+5
-0
No files found.
src/api/system/document.js
0 → 100644
View file @
e051eff3
import
request
from
'../../utils/request'
/**
* 获取公告分页列表
*/
export
function
getNoticePageList
(
data
)
{
return
request
({
url
:
'/UserCenter/GetNoticePageList'
,
method
:
'post'
,
data
});
}
/**
* 获取 公告状态枚举 列表
*/
export
function
getNoticeStateEnumList
(
data
)
{
return
request
({
url
:
'/UserCenter/GetNoticeStateEnumList'
,
method
:
'post'
,
data
});
}
/**
* 获取 公告配置
*/
export
function
getNoticeBaseInfo
(
data
)
{
return
request
({
url
:
'/UserCenter/GetNoticeBaseInfo'
,
method
:
'post'
,
data
});
}
/**
* 获取编号规则 枚举列表
*/
export
function
getNoticeRuleEnumList
(
data
)
{
return
request
({
url
:
'/UserCenter/GetNoticeRuleEnumList'
,
method
:
'post'
,
data
});
}
/**
* 新增修改 公告配置
*/
export
function
setNoticeBaseInfo
(
data
)
{
return
request
({
url
:
'/UserCenter/SetNoticeBaseInfo'
,
method
:
'post'
,
data
});
}
/**
* 公告操作
*/
export
function
setNoticeOperation
(
data
)
{
return
request
({
url
:
'/UserCenter/SetNoticeOperation'
,
method
:
'post'
,
data
});
}
src/pages/system/document.vue
0 → 100644
View file @
e051eff3
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
e051eff3
...
...
@@ -87,6 +87,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/system/msgmanage.vue"
)
},
{
path
:
"/system/document"
,
//行政公告
component
:
()
=>
import
(
"pages/system/document.vue"
)
},
{
path
:
"/course/catagory"
,
//课程分类
component
:
()
=>
...
...
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