Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_admin
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
quanku
qk_admin
Commits
46e00ef5
Commit
46e00ef5
authored
May 23, 2024
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:修改首页展示
parent
629b75b6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
379 additions
and
95 deletions
+379
-95
src/api/business/dashboard.js
src/api/business/dashboard.js
+7
-0
src/views/dashboard/index.vue
src/views/dashboard/index.vue
+192
-95
src/views/dashboard/old.vue
src/views/dashboard/old.vue
+180
-0
No files found.
src/api/business/dashboard.js
View file @
46e00ef5
...
@@ -15,3 +15,10 @@ export function chart(query) {
...
@@ -15,3 +15,10 @@ export function chart(query) {
params
:
query
params
:
query
})
})
}
}
export
function
requestDataPanel
(
data
)
{
return
request
({
url
:
'
/dashboard/dataPanel
'
,
method
:
'
post
'
,
data
})
}
src/views/dashboard/index.vue
View file @
46e00ef5
This diff is collapsed.
Click to expand it.
src/views/dashboard/old.vue
0 → 100644
View file @
46e00ef5
<
template
>
<div
class=
"dashboard-editor-container"
>
<el-row
:gutter=
"40"
class=
"panel-group"
>
<el-col
:xs=
"12"
:sm=
"12"
:lg=
"6"
class=
"card-panel-col"
>
<div
class=
"card-panel"
@
click=
"handleSetLineChartData('newVisitis')"
>
<div
class=
"card-panel-icon-wrapper icon-people"
>
<svg-icon
icon-class=
"peoples"
class-name=
"card-panel-icon"
/>
</div>
<div
class=
"card-panel-description"
>
<div
class=
"card-panel-text"
>
用户数量
</div>
<count-to
:start-val=
"0"
:end-val=
"userTotal"
:duration=
"2600"
class=
"card-panel-num"
/>
</div>
</div>
</el-col>
<el-col
:xs=
"12"
:sm=
"12"
:lg=
"6"
class=
"card-panel-col"
>
<div
class=
"card-panel"
@
click=
"handleSetLineChartData('messages')"
>
<div
class=
"card-panel-icon-wrapper icon-message"
>
<svg-icon
icon-class=
"message"
class-name=
"card-panel-icon"
/>
</div>
<div
class=
"card-panel-description"
>
<div
class=
"card-panel-text"
>
藏品数量
</div>
<count-to
:start-val=
"0"
:end-val=
"goodsTotal"
:duration=
"3000"
class=
"card-panel-num"
/>
</div>
</div>
</el-col>
</el-row>
<el-row
style=
"background:#fff;padding:16px 16px 0;margin-bottom:32px;"
>
<line-chart
:chart-data=
"userOrderCnt"
/>
</el-row>
<el-row
:gutter=
"32"
>
<el-col
:xs=
"24"
:sm=
"24"
:lg=
"16"
>
<div
class=
"chart-wrapper"
>
<bar-chart
:chart-data=
"orderAmts"
/>
</div>
</el-col>
<el-col
:xs=
"24"
:sm=
"24"
:lg=
"8"
>
<div
class=
"chart-wrapper"
>
<pie-chart
:chart-data=
"categorySell"
/>
</div>
</el-col>
</el-row>
</div>
</
template
>
<
script
>
import
{
info
,
chart
}
from
'
@/api/business/dashboard
'
import
CountTo
from
'
vue-count-to
'
import
LineChart
from
'
./LineChart
'
import
PieChart
from
'
./PieChart
'
import
BarChart
from
'
./BarChart
'
export
default
{
components
:
{
CountTo
,
LineChart
,
PieChart
,
BarChart
},
data
()
{
return
{
userTotal
:
0
,
goodsTotal
:
0
,
productTotal
:
0
,
orderTotal
:
0
,
userOrderCnt
:
{
dayData
:
[],
userCnt
:
[],
orderCnt
:
[]
},
orderAmts
:
{
dayData
:
[],
orderAmtData
:
[],
orderCntData
:
[]
},
categorySell
:
{
categoryNames
:
[],
categorySellData
:
[]
}
}
},
mounted
()
{
},
created
()
{
chart
().
then
(
response
=>
{
this
.
userOrderCnt
=
response
.
data
.
data
.
userOrderCnt
this
.
orderAmts
=
response
.
data
.
data
.
orderAmts
this
.
categorySell
=
response
.
data
.
data
.
categorySell
})
info
().
then
(
response
=>
{
this
.
userTotal
=
response
.
data
.
data
.
userTotal
this
.
goodsTotal
=
response
.
data
.
data
.
goodsTotal
this
.
productTotal
=
response
.
data
.
data
.
productTotal
this
.
orderTotal
=
response
.
data
.
data
.
orderTotal
})
},
methods
:
{
handleSetLineChartData
(
type
)
{
this
.
$emit
(
'
handleSetLineChartData
'
,
type
)
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.dashboard-editor-container
{
padding
:
32px
;
background-color
:
rgb
(
240
,
242
,
245
);
.chart-wrapper
{
background
:
#fff
;
padding
:
16px
16px
0
;
margin-bottom
:
32px
;
}
}
.panel-group
{
margin-top
:
18px
;
.card-panel-col
{
margin-bottom
:
32px
;
}
.card-panel
{
height
:
108px
;
cursor
:
pointer
;
font-size
:
12px
;
position
:
relative
;
overflow
:
hidden
;
color
:
#666
;
background
:
#fff
;
box-shadow
:
4px
4px
40px
rgba
(
0
,
0
,
0
,
.05
);
border-color
:
rgba
(
0
,
0
,
0
,
.05
);
&
:hover
{
.card-panel-icon-wrapper
{
color
:
#fff
;
}
.icon-people
{
background
:
#40c9c6
;
}
.icon-message
{
background
:
#36a3f7
;
}
.icon-money
{
background
:
#f4516c
;
}
.icon-shoppingCard
{
background
:
#34bfa3
}
}
.icon-people
{
color
:
#40c9c6
;
}
.icon-message
{
color
:
#36a3f7
;
}
.icon-money
{
color
:
#f4516c
;
}
.icon-shoppingCard
{
color
:
#34bfa3
}
.card-panel-icon-wrapper
{
float
:
left
;
margin
:
14px
0
0
14px
;
padding
:
16px
;
transition
:
all
0
.38s
ease-out
;
border-radius
:
6px
;
}
.card-panel-icon
{
float
:
left
;
font-size
:
48px
;
}
.card-panel-description
{
float
:
right
;
font-weight
:
bold
;
margin
:
26px
;
margin-left
:
0px
;
.card-panel-text
{
line-height
:
18px
;
color
:
rgba
(
0
,
0
,
0
,
0
.45
);
font-size
:
16px
;
margin-bottom
:
12px
;
}
.card-panel-num
{
font-size
:
20px
;
}
}
}
}
</
style
>
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