Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yuji-dataview
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
郭铭瑶
yuji-dataview
Commits
b5acf296
Commit
b5acf296
authored
Aug 26, 2020
by
郭铭瑶
🤘
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
按UI建议修改
parent
a64b43cb
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
31 additions
and
23 deletions
+31
-23
disease-map.vue
src/views/components/disease/disease-map.vue
+1
-1
disease-warning.vue
src/views/components/disease/disease-warning.vue
+1
-1
fishing-price-map.vue
src/views/components/fishing-price/fishing-price-map.vue
+1
-1
trade-situation.vue
src/views/components/fishing-price/trade-situation.vue
+3
-2
farm-rate.vue
src/views/components/ocean-farm/farm-rate.vue
+1
-1
company-rate.vue
src/views/components/quality-safety/company-rate.vue
+3
-2
mode-rate.vue
src/views/components/rice-fish/mode-rate.vue
+8
-5
mode-rate2.vue
src/views/components/rice-fish/mode-rate2.vue
+9
-6
rice-fish-map.vue
src/views/components/rice-fish/rice-fish-map.vue
+2
-2
seedling-map.vue
src/views/components/seedling/seedling-map.vue
+2
-2
No files found.
src/views/components/disease/disease-map.vue
View file @
b5acf296
...
...
@@ -180,7 +180,7 @@ export default {
itemStyle
:
{
color
:
'gold'
},
symbolSize
:
20
*
this
.
sizeRate
,
symbolSize
:
14
*
this
.
sizeRate
,
symbol
:
'pin'
,
}]
this
.
map
&&
this
.
map
.
setOption
(
this
.
config
)
...
...
src/views/components/disease/disease-warning.vue
View file @
b5acf296
...
...
@@ -88,7 +88,7 @@ export default {
color
:
'#fff'
,
},
inRange
:
{
color
:
[
'
green'
,
'yellow'
,
'red
'
]
color
:
[
'
#46e016'
,
'gold'
,
'#ff2424
'
]
}
},
series
:
[],
...
...
src/views/components/fishing-price/fishing-price-map.vue
View file @
b5acf296
...
...
@@ -247,7 +247,7 @@ export default {
itemStyle
:
{
color
:
'gold'
},
symbolSize
:
20
*
this
.
sizeRate
,
symbolSize
:
15
*
this
.
sizeRate
,
symbol
:
'pin'
,
geoIndex
:
0
,
})
...
...
src/views/components/fishing-price/trade-situation.vue
View file @
b5acf296
...
...
@@ -59,12 +59,13 @@ export default {
return
{
showChart
:
false
,
config
:
{
colors
:
[
'#38fd8d'
,
'#8c7eee'
,
'#f3ff33'
,
'#ffb529'
,
'#ff4747'
,
'#47B3FF'
],
// colors: ['#38fd8d', '#8c7eee', '#f3ff33', '#ffb529', '#ff4747', '#47B3FF'],
colors
:
[
'#19d6ff'
,
'#ffec47'
,
'#ffae00'
,
'#8c7eee'
,
'#2f60ff'
,
'#2f8cff'
],
legend
:
{
hide
:
true
,
},
shape
:
[
{
type
:
'pie'
,
radius
:
[
35
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
)),
55
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
))],
startAngle
:
0
,
label
:
{
show
:
true
,
fontSize
:
12
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
)),
formatter
:
'{b}
:
{c}万吨'
}}
{
type
:
'pie'
,
radius
:
[
35
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
)),
55
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
))],
startAngle
:
0
,
label
:
{
show
:
true
,
fontSize
:
12
*
Number
((
screen
.
height
/
800
).
toFixed
(
1
)),
formatter
:
'{b}
({d}%)
\
n
{c}万吨'
}}
]
},
data
:
[],
...
...
src/views/components/ocean-farm/farm-rate.vue
View file @
b5acf296
...
...
@@ -11,7 +11,7 @@ export default {
return
{
showChart
:
false
,
config
:
{
colors
:
[
'#
feec40'
,
'#05bbfd'
,
'#fe4949
'
],
colors
:
[
'#
00c0ff'
,
'#644fff'
,
'#ff4a4a
'
],
tooltip
:
{
confine
:
true
,
trigger
:
'item'
,
...
...
src/views/components/quality-safety/company-rate.vue
View file @
b5acf296
...
...
@@ -11,7 +11,8 @@ export default {
return
{
showChart
:
false
,
config
:
{
colors
:
[
'#0f4aff'
,
'#ff9e45'
,
'#edfe63'
,
'#8f45ee'
,
'#05f8e8'
],
// colors: ['#0f4aff', '#ff9e45', '#edfe63', '#8f45ee', '#05f8e8'],
colors
:
[
'#01a6ff'
,
'#fff440'
,
'#ffac40'
,
'#406dff'
,
'#6a42ff'
],
tooltip
:
{
formatter
:
'{b}:{c}家 ({d}%)'
,
confine
:
true
,
...
...
@@ -28,8 +29,8 @@ export default {
{
name
:
'江苏'
,
value
:
1241
},
{
name
:
'湖北'
,
value
:
807
},
{
name
:
'江西'
,
value
:
450
},
{
name
:
'海南'
,
value
:
14
},
{
name
:
'河南'
,
value
:
178
},
{
name
:
'海南'
,
value
:
14
},
],
}
},
...
...
src/views/components/rice-fish/mode-rate.vue
View file @
b5acf296
...
...
@@ -10,8 +10,8 @@
<div>
<p
class=
"title"
><span/>
面积
</p>
<div>
<m-chart
:config=
"
{...config, colors: ['#
41D9C
7', 'gray']}" :data="data[0]"/>
<m-chart
:config=
"
{...config, colors: ['#
2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9']
}" :data="data[1]"/>
<m-chart
:config=
"
{...config, colors: ['#
02efd
7', 'gray']}" :data="data[0]"/>
<m-chart
:config=
"
{...config, colors: ['#
00c6c7', '#f59946', '#45dbf6', '#44b0f2', '#4777f5', '#4f45f7', '#af43f7', '#fb43f2'],
}" :data="data[1]"/>
<span
class=
"pointer"
/>
<span
class=
"pointer"
/>
</div>
...
...
@@ -121,7 +121,8 @@ export default {
type
:
'水稻'
,
options
:
[
'水稻'
,
'水产品'
],
config
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
...
...
@@ -135,7 +136,8 @@ export default {
},
data
:
mock
[
0
].
data1
,
config2
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
...
...
@@ -149,7 +151,8 @@ export default {
},
data2
:
mock
[
0
].
data2
,
config3
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
...
...
src/views/components/rice-fish/mode-rate2.vue
View file @
b5acf296
...
...
@@ -39,12 +39,13 @@ export default {
return
{
showChart
:
false
,
config
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
tooltip
:
{
formatter
:
'{b}
:{c}亩
'
,
formatter
:
'{b}
<br/>{c}亩 ({d}%)
'
,
confine
:
true
,
},
shape
:
[
...
...
@@ -63,12 +64,13 @@ export default {
{
name
:
'其他'
,
value
:
0
},
],
config2
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
tooltip
:
{
formatter
:
'{b}
:{c}吨
'
,
formatter
:
'{b}
<br/>{c}吨 ({d}%)
'
,
confine
:
true
,
},
shape
:
[
...
...
@@ -87,12 +89,13 @@ export default {
{
name
:
'其他'
,
value
:
0
},
],
config3
:
{
colors
:
[
'#41D9C7'
,
'#2FC25B'
,
'#FACC14'
,
'#E6965C'
,
'#223273'
,
'#7564CC'
,
'#5CA3E6'
,
'#F04864'
,
'#D598D9'
],
// colors: ['#41D9C7', '#2FC25B', '#FACC14', '#E6965C', '#223273', '#7564CC', '#5CA3E6', '#F04864', '#D598D9'],
colors
:
[
'#02efd7'
,
'#00c6c7'
,
'#f59946'
,
'#45dbf6'
,
'#44b0f2'
,
'#4777f5'
,
'#4f45f7'
,
'#af43f7'
,
'#fb43f2'
],
legend
:
{
hide
:
true
,
},
tooltip
:
{
formatter
:
'{b}
:{c}万元
'
,
formatter
:
'{b}
<br/>{c}万元 ({d}%)
'
,
confine
:
true
,
},
shape
:
[
...
...
src/views/components/rice-fish/rice-fish-map.vue
View file @
b5acf296
...
...
@@ -249,7 +249,7 @@ export default {
itemStyle
:
{
color
:
'gold'
}
,
symbolSize
:
20
*
this
.
sizeRate
,
symbolSize
:
15
*
this
.
sizeRate
,
symbol
:
'pin'
,
geoIndex
:
0
,
}
]
...
...
@@ -323,7 +323,7 @@ export default {
itemStyle: {
color: 'gold'
}
,
symbolSize:
20
* this.sizeRate,
symbolSize:
15
* this.sizeRate,
symbol: 'pin',
geoIndex: 0,
}
],
...
...
src/views/components/seedling/seedling-map.vue
View file @
b5acf296
...
...
@@ -275,7 +275,7 @@ export default {
itemStyle
:
{
color
:
'gold'
},
symbolSize
:
20
*
this
.
sizeRate
,
symbolSize
:
15
*
this
.
sizeRate
,
symbol
:
'pin'
,
geoIndex
:
0
,
}]
...
...
@@ -348,7 +348,7 @@ export default {
itemStyle
:
{
color
:
'gold'
},
symbolSize
:
20
*
this
.
sizeRate
,
symbolSize
:
15
*
this
.
sizeRate
,
symbol
:
'pin'
,
geoIndex
:
0
,
}],
...
...
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