Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
16d8e8bf
Commit
16d8e8bf
authored
Aug 04, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增消息通知页面
parent
4158cdb2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
0 deletions
+50
-0
src/pages/user/notice/notice.vue
src/pages/user/notice/notice.vue
+45
-0
src/router/index.js
src/router/index.js
+5
-0
No files found.
src/pages/user/notice/notice.vue
0 → 100644
View file @
16d8e8bf
<
template
>
<div
class=
"notice_container"
>
<div
class=
"apass_breadcrumb"
>
<el-breadcrumb
separator=
"/"
>
<el-breadcrumb-item
:to=
"
{ path: '/user' }">
个人中心
</el-breadcrumb-item>
<el-breadcrumb-item>
消息通知
</el-breadcrumb-item>
</el-breadcrumb>
</div>
<div
class=
"main_container"
></div>
</div>
</
template
>
<
script
>
export
default
{
components
:
{},
data
:
()
=>
({}),
mounted
()
{},
methods
:
{},
};
</
script
>
<
style
scoped
>
.notice_container
{
padding
:
0
20px
;
height
:
100%
;
display
:
flex
;
flex-direction
:
column
;
justify-content
:
flex-start
;
align-items
:
stretch
;
overflow
:
auto
;
}
.main_container
{
flex-grow
:
1
;
display
:
flex
;
flex-direction
:
column
;
justify-content
:
flex-start
;
align-items
:
stretch
;
padding
:
0
20px
15px
;
background-color
:
#fff
;
border-radius
:
10px
;
margin-bottom
:
40px
;
}
</
style
>
src/router/index.js
View file @
16d8e8bf
...
@@ -268,6 +268,11 @@ export default new Router({
...
@@ -268,6 +268,11 @@ export default new Router({
name
:
"
userInfo
"
,
name
:
"
userInfo
"
,
component
:
()
=>
import
(
"
@/pages/user/user_info
"
),
component
:
()
=>
import
(
"
@/pages/user/user_info
"
),
},
},
{
path
:
"
/user/notice
"
,
// 消息通知
name
:
"
notice
"
,
component
:
()
=>
import
(
"
@/pages/user/notice/notice
"
),
},
{
{
path
:
"
/user/order_list
"
,
// 订单管理页
path
:
"
/user/order_list
"
,
// 订单管理页
name
:
"
orderList
"
,
name
:
"
orderList
"
,
...
...
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