Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
ybf
Project
Project
Details
Activity
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
xulili
ybf
Commits
cf548508
Commit
cf548508
authored
Jan 07, 2020
by
Z
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Z: Dot: PC: In Page's main layout is done.
parent
ff9cc7e2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
53 additions
and
20 deletions
+53
-20
.env.development
ybf_admin/.env.development
+2
-1
header.js
ybf_admin/src/menu/header.js
+1
-1
index.vue
ybf_admin/src/pages/task/bar/index.vue
+1
-5
index.vue
ybf_admin/src/pages/task/com/index.vue
+1
-5
index.vue
ybf_admin/src/pages/task/count/index.vue
+1
-5
index.vue
ybf_admin/src/pages/task/main/index.vue
+44
-0
routes.js
ybf_admin/src/router/routes.js
+3
-3
No files found.
ybf_admin/.env.development
View file @
cf548508
# 开发环境
# 页面 title 前缀
VUE_APP_TITLE=D2Admin Dev
# VUE_APP_TITLE=D2Admin Dev
VUE_APP_TITLE=亿百分
ybf_admin/src/menu/header.js
View file @
cf548508
...
...
@@ -27,7 +27,7 @@ export default [
icon
:
''
},
{
path
:
'/task/
bar
'
,
path
:
'/task/
main
'
,
title
:
'任务管理'
,
icon
:
''
},
...
...
ybf_admin/src/pages/task/bar/index.vue
View file @
cf548508
<
template
>
<d2-container>
<template
slot=
"header"
>
header
</
template
>
task/bar/index.vue
<
template
slot=
"footer"
>
footer
</
template
>
</d2-container>
<div>
柜组任务
</div>
</
template
>
ybf_admin/src/pages/task/com/index.vue
View file @
cf548508
<
template
>
<d2-container>
<template
slot=
"header"
>
header
</
template
>
task/com/index.vue
<
template
slot=
"footer"
>
footer
</
template
>
</d2-container>
<div>
集团任务
</div>
</
template
>
ybf_admin/src/pages/task/count/index.vue
View file @
cf548508
<
template
>
<d2-container>
<template
slot=
"header"
>
header
</
template
>
task/count/index.vue
<
template
slot=
"footer"
>
footer
</
template
>
</d2-container>
<div>
任务统计
</div>
</
template
>
ybf_admin/src/pages/task/main/index.vue
0 → 100644
View file @
cf548508
<
template
>
<d2-container>
<el-tabs
class=
"ztabs"
v-model=
"cache.nowMenu"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"柜组任务"
name=
"taskBar"
>
<task-bar
/>
</el-tab-pane>
<el-tab-pane
label=
"集团任务"
name=
"taskCom"
>
<task-com
/>
</el-tab-pane>
<el-tab-pane
label=
"任务统计"
name=
"taskCount"
>
<task-count
/>
</el-tab-pane>
</el-tabs>
</d2-container>
</
template
>
<
script
>
import
TaskBar
from
'../bar/index'
import
TaskCom
from
'../com/index'
import
TaskCount
from
'../count/index'
export
default
{
components
:
{
TaskBar
,
TaskCom
,
TaskCount
},
data
()
{
return
{
cache
:
{
nowMenu
:
'taskBar'
}
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.ztabs
{
border
:
2px
solid
red
;
min-height
:
100vh
;
// min-height: 500px;
}
</
style
>
ybf_admin/src/router/routes.js
View file @
cf548508
...
...
@@ -84,9 +84,9 @@ const frameIn = [
},
// Z-任务管理-柜组任务
{
path
:
'/task/
bar
'
,
name
:
'task
Bar
'
,
component
:
()
=>
import
(
'@/pages/task/
bar
'
),
path
:
'/task/
main
'
,
name
:
'task
Main
'
,
component
:
()
=>
import
(
'@/pages/task/
main
'
),
meta
:
{
auth
:
true
,
title
:
'柜组任务'
...
...
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