|
@@ -15,8 +15,8 @@
|
|
item.active ? 'left-' + item.status : 'unleft-' + item.status
|
|
item.active ? 'left-' + item.status : 'unleft-' + item.status
|
|
"
|
|
"
|
|
>
|
|
>
|
|
- <div>{{ getName(item, 'top') }}</div>
|
|
|
|
- <div>{{ getName(item, 'bot') }}</div><!-- item.id.slice(5) -->
|
|
|
|
|
|
+ <div style="white-space:nowrap">{{ getName(item, 'top') }}</div>
|
|
|
|
+ <div style="white-space:nowrap">{{ getName(item, 'bot') }}</div><!-- item.id.slice(5) -->
|
|
|
|
|
|
<!-- <div>{{ item.windturbineId.slice(0, 2) }}</div>
|
|
<!-- <div>{{ item.windturbineId.slice(0, 2) }}</div>
|
|
<div>{{ item.code }}</div> -->
|
|
<div>{{ item.code }}</div> -->
|
|
@@ -108,9 +108,11 @@ export default {
|
|
if (item.station.indexOf('HZJ') > -1) {
|
|
if (item.station.indexOf('HZJ') > -1) {
|
|
// debugger
|
|
// debugger
|
|
if (type === 'top') {
|
|
if (type === 'top') {
|
|
- name = item.code.slice(0, item.code.indexOf('-'))
|
|
|
|
|
|
+ // name = item.code.slice(0, item.code.indexOf('-'))
|
|
|
|
+ name = item.code
|
|
} else {
|
|
} else {
|
|
- name = item.code.slice(item.code.indexOf('-')+1)
|
|
|
|
|
|
+ // name = item.code.slice(item.code.indexOf('-')+1)
|
|
|
|
+ name = ''
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
if (type === 'top') {
|
|
if (type === 'top') {
|
|
@@ -289,7 +291,8 @@ export default {
|
|
border-top: 1px solid rgba(75, 85, 174, 1);
|
|
border-top: 1px solid rgba(75, 85, 174, 1);
|
|
}
|
|
}
|
|
.left-1 {
|
|
.left-1 {
|
|
- width: 35%;
|
|
|
|
|
|
+ // width: 35%;
|
|
|
|
+ width: 50%;
|
|
height: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
color: rgba(75, 85, 174, 1);
|
|
color: rgba(75, 85, 174, 1);
|
|
@@ -302,7 +305,8 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.unleft-1 {
|
|
.unleft-1 {
|
|
- width: 37%;
|
|
|
|
|
|
+ // width: 37%;
|
|
|
|
+ width: 50%;
|
|
height: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
color: rgba(75, 85, 174, 1);
|
|
color: rgba(75, 85, 174, 1);
|
|
@@ -315,7 +319,8 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.right-1 {
|
|
.right-1 {
|
|
- width: 69%;
|
|
|
|
|
|
+ // width: 69%;
|
|
|
|
+ width: 55%;
|
|
height: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
color: rgba(75, 85, 174, 1);
|
|
color: rgba(75, 85, 174, 1);
|
|
@@ -326,7 +331,8 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.unright-1 {
|
|
.unright-1 {
|
|
- width: 65%;
|
|
|
|
|
|
+ // width: 65%;
|
|
|
|
+ width: 55%;
|
|
height: 100%;
|
|
height: 100%;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
color: rgba(75, 85, 174, 1);
|
|
color: rgba(75, 85, 174, 1);
|