Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
agcs2.0-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
liang
agcs2.0-web
Commits
70e84c2f
Commit
70e84c2f
authored
1 year ago
by
liang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
首页修改
parent
f7fe5744
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
9 deletions
+43
-9
data.js
src/views/Home/Map/data.js
+28
-0
index.vue
src/views/Home/Map/index.vue
+2
-1
index.vue
src/views/Home/index.vue
+13
-8
No files found.
src/views/Home/Map/data.js
0 → 100644
View file @
70e84c2f
export
default
[
{
value
:
45
,
name
:
"
重庆市
"
},
{
value
:
20589
,
name
:
"
浙江省
"
},
{
value
:
2149
,
name
:
"
云南省
"
},
{
value
:
1308
,
name
:
"
四川省
"
},
{
value
:
13175
,
name
:
"
上海市
"
},
{
value
:
555
,
name
:
"
陕西省
"
},
{
value
:
30
,
name
:
"
山西省
"
},
{
value
:
410
,
name
:
"
山东省
"
},
{
value
:
33
,
name
:
"
青海省
"
},
{
value
:
7346
,
name
:
"
宁夏
"
},
{
value
:
24635
,
name
:
"
内蒙古
"
},
{
value
:
1014
,
name
:
"
辽宁省
"
},
{
value
:
1043
,
name
:
"
江西省
"
},
{
value
:
16477
,
name
:
"
江苏省
"
},
{
value
:
3
,
name
:
"
吉林省
"
},
{
value
:
1490
,
name
:
"
湖南省
"
},
{
value
:
938
,
name
:
"
湖北省
"
},
{
value
:
179
,
name
:
"
黑龙江省
"
},
{
value
:
2970
,
name
:
"
河南省
"
},
{
value
:
936
,
name
:
"
河北省
"
},
{
value
:
633
,
name
:
"
广西
"
},
{
value
:
36296
,
name
:
"
广东省
"
},
{
value
:
63
,
name
:
"
甘肃省
"
},
{
value
:
986
,
name
:
"
福建省
"
},
{
value
:
205
,
name
:
"
北京市
"
},
{
value
:
1059
,
name
:
"
安徽省
"
},
]
This diff is collapsed.
Click to expand it.
src/views/Home/Map/index.vue
View file @
70e84c2f
...
...
@@ -5,6 +5,7 @@
import
*
as
echarts
from
"
echarts
"
import
china
from
"
./china.json
"
import
allCode
from
"
./allCode.json
"
import
data
from
"
./data
"
export
default
{
data
()
{
return
{
...
...
@@ -123,7 +124,7 @@ export default {
},
},
animation
:
false
,
data
:
[{
name
:
"
安徽省
"
,
value
:
0
}]
,
data
:
data
,
},
],
}
...
...
This diff is collapsed.
Click to expand it.
src/views/Home/index.vue
View file @
70e84c2f
...
...
@@ -13,7 +13,7 @@
v-for=
"(e, index) in tabList"
:key=
"index"
:label=
"e.title"
:name=
"
index + 1 + ''
"
:name=
"
e.type
"
>
<ul
class=
"tabslist videoTabList"
...
...
@@ -248,16 +248,21 @@ export default {
exampleList
:
[],
tabList
:
[
{
title
:
"
新闻会议
"
,
title
:
"
通知公告
"
,
type
:
"
2
"
,
},
{
title
:
"
通知公告
"
,
title
:
"
新闻会议
"
,
type
:
"
1
"
,
},
{
title
:
"
学术动态
"
,
type
:
"
3
"
,
},
{
title
:
"
健康知识
"
,
type
:
"
4
"
,
},
],
noticeTopList
:
[
...
...
@@ -277,7 +282,7 @@ export default {
},
],
noticeList
:
[],
curTab
:
"
1
"
,
curTab
:
"
2
"
,
listLoading
:
false
,
rangeList
:
[],
// 上报排名
curQuarterList
:
[],
//当前季度排名
...
...
@@ -326,9 +331,8 @@ export default {
}
},
created
()
{
this
.
getArticleList
(
"
1
"
)
this
.
getArticleList
(
"
2
"
)
this
.
getArticleList
(
"
6
"
)
console
.
log
(
this
.
uploadPrefix
)
},
mounted
()
{
this
.
getRankTotal
()
...
...
@@ -338,8 +342,9 @@ export default {
document
.
querySelector
(
"
#vue-admin-beautiful
"
)
.
addEventListener
(
"
scroll
"
,
()
=>
{
let
scrollTop
=
document
.
querySelector
(
"
#vue-admin-beautiful
"
)
.
scrollTop
let
scrollTop
=
document
.
querySelector
(
"
#vue-admin-beautiful
"
).
scrollTop
if
(
scrollTop
>=
700
)
{
this
.
showFixed
=
true
}
else
{
...
...
This diff is collapsed.
Click to expand it.
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