Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
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
JIRA
JIRA
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
黄瑜
VueElementTemplate
Commits
ffd668fb
Commit
ffd668fb
authored
Jul 03, 2017
by
Pan
Committed by
花裤衩
Jul 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refine dashboard css
parent
ed803c68
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
63 additions
and
10 deletions
+63
-10
index.scss
src/components/TodoList/index.scss
+2
-1
login.js
src/mock/login.js
+2
-2
index.js
src/utils/index.js
+35
-0
index.vue
src/views/dashboard/editor/index.vue
+4
-2
lineChart.vue
src/views/dashboard/editor/lineChart.vue
+20
-5
No files found.
src/components/TodoList/index.scss
View file @
ffd668fb
...
...
@@ -246,7 +246,7 @@
list-style
:
none
;
position
:
absolute
;
right
:
0
;
left
:
0
;
left
:
-20px
;
}
.filters
li
{
display
:
inline
;
...
...
@@ -254,6 +254,7 @@
.filters
li
a
{
color
:
inherit
;
margin
:
3px
;
font-size
:
12px
;
padding
:
3px
7px
;
text-decoration
:
none
;
border
:
1px
solid
transparent
;
...
...
src/mock/login.js
View file @
ffd668fb
...
...
@@ -6,7 +6,7 @@ const userMap = {
token
:
'admin'
,
introduction
:
'我是超级管理员'
,
avatar
:
'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif'
,
name
:
'
超级管理员小潘
'
,
name
:
'
Super Admin
'
,
uid
:
'001'
},
editor
:
{
...
...
@@ -14,7 +14,7 @@ const userMap = {
token
:
'editor'
,
introduction
:
'我是编辑'
,
avatar
:
'https://wpimg.wallstcn.com/f778738c-e4f8-4870-b634-56703b4acafe.gif'
,
name
:
'
普通编辑小张
'
,
name
:
'
Normal Editor
'
,
uid
:
'002'
},
...
...
src/utils/index.js
View file @
ffd668fb
...
...
@@ -212,3 +212,38 @@
}
}
export
function
debounce
(
func
,
wait
,
immediate
)
{
let
timeout
,
args
,
context
,
timestamp
,
result
;
const
later
=
function
()
{
// 据上一次触发时间间隔
const
last
=
+
new
Date
()
-
timestamp
;
// 上次被包装函数被调用时间间隔last小于设定时间间隔wait
if
(
last
<
wait
&&
last
>
0
)
{
timeout
=
setTimeout
(
later
,
wait
-
last
);
}
else
{
timeout
=
null
;
// 如果设定为immediate===true,因为开始边界已经调用过了此处无需调用
if
(
!
immediate
)
{
result
=
func
.
apply
(
context
,
args
);
if
(
!
timeout
)
context
=
args
=
null
;
}
}
};
return
function
(...
args
)
{
context
=
this
;
timestamp
=
+
new
Date
();
const
callNow
=
immediate
&&
!
timeout
;
// 如果延时不存在,重新设定延时
if
(
!
timeout
)
timeout
=
setTimeout
(
later
,
wait
);
if
(
callNow
)
{
result
=
func
.
apply
(
context
,
args
);
context
=
args
=
null
;
}
return
result
;
};
}
src/views/dashboard/editor/index.vue
View file @
ffd668fb
...
...
@@ -65,10 +65,10 @@
</el-row>
<el-row
:gutter=
"20"
>
<el-col
:span=
"1
6
"
>
<el-col
:span=
"1
5
"
>
<line-chart></line-chart>
</el-col>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
9
"
>
<todo-list></todo-list>
</el-col>
</el-row>
...
...
@@ -129,10 +129,12 @@
}
.display_name
{
font-size
:
30px
;
display
:
block
;
}
.info-item
{
display
:
inline-block
;
margin-top
:
10px
;
font-size
:
14px
;
&
:last-of-type
{
margin-left
:
15px
;
}
...
...
src/views/dashboard/editor/lineChart.vue
View file @
ffd668fb
...
...
@@ -4,6 +4,8 @@
<
script
>
import
echarts
from
'echarts'
;
require
(
'echarts/theme/macarons'
);
// echarts 主题
import
{
debounce
}
from
'utils'
;
export
default
{
props
:
{
...
...
@@ -18,6 +20,10 @@
height
:
{
type
:
String
,
default
:
'300px'
},
autoResize
:
{
type
:
Boolean
,
default
:
true
}
},
data
()
{
...
...
@@ -27,11 +33,20 @@
},
mounted
()
{
this
.
initChart
();
if
(
this
.
autoResize
)
{
this
.
__resizeHanlder
=
debounce
(()
=>
{
this
.
chart
.
resize
()
},
100
)
window
.
addEventListener
(
'resize'
,
this
.
__resizeHanlder
)
}
},
beforeDestroy
()
{
if
(
!
this
.
chart
)
{
return
}
if
(
this
.
autoResize
)
{
window
.
removeEventListener
(
'resize'
,
this
.
__resizeHanlder
)
}
this
.
chart
.
dispose
();
this
.
chart
=
null
;
},
...
...
@@ -41,12 +56,12 @@
this
.
chart
.
setOption
({
xAxis
:
{
data
:
[
'
Sunday'
,
'Monday'
,
'Tuesday'
,
'Wednesday'
,
'Thursday'
,
'Friday'
,
'Saturday
'
],
data
:
[
'
Mon'
,
'Tue'
,
'Wed'
,
'Thu'
,
'Fri'
,
'Sat'
,
'Sun
'
],
boundaryGap
:
false
},
grid
:
{
left
:
0
,
right
:
0
,
left
:
1
0
,
right
:
1
0
,
bottom
:
20
,
containLabel
:
true
},
...
...
@@ -59,7 +74,7 @@
},
yAxis
:
{},
series
:
[{
name
:
'vis
tor
'
,
name
:
'vis
itors
'
,
itemStyle
:
{
normal
:
{
areaStyle
:
{}
...
...
@@ -70,7 +85,7 @@
data
:
[
100
,
120
,
161
,
134
,
105
,
160
,
165
]
},
{
name
:
'buyer'
,
name
:
'buyer
s
'
,
smooth
:
true
,
type
:
'line'
,
itemStyle
:
{
...
...
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