@@ -134,11 +134,12 @@
border: 0.093vh solid @deepblue;
}
.active {
- background: linear-gradient(to top,rgba(54,52,142, 0.5),rgba(54,52,142, 0));
+ // background: linear-gradient(to top,rgba(54,52,142, 0.5),rgba(54,52,142, 0));
+ background:@fadePurple;
color: @deepblue;
.active::after {
- border: 0.093vh solid @deepblue;
+ // border: 0.093vh solid @deepblue;
.el-month-table td .cell:hover,
@@ -75,9 +75,17 @@
transition: @transition;
- .wind-site-base-info .wind-site-name {
- border: 1px solid @deepblue;
- }
+ .wind-site-base-info {
+ .wind-site-name {
+ border: none;
+ background-color: @fadePurple;
+ }
+ .wind-site-other{
+ .wind-site-tag{
+ background-color: @white;
.title[data-v-2c3073c8] {
font-weight: bold;
@@ -283,4 +291,47 @@
+
+ .wind-site-info{
+ .wind-site-info-body {
+ .info-menu {
+ .info-menu-item {
+ & + .info-menu-item {
+ .wind-site-tag {
+ background: @gray-3;
+ .tag-value {
+ color: @deepblue;
+ .info-panel {
+ .panel-title {
+ .table-form tr:nth-child(2n){
+ .generator .info-panel .panel-title{
+ .com-table {
+ thead tr th{
+ font-weight: 700;
+ tbody tr:nth-child(2n){
@@ -221,9 +221,9 @@
color: @black;
- .title {
- background: @white;
+ // .title {
+ // background: @white;
+ // }
//专家知识-故障知识列表
.know-info .table-card tr[data-v-68c7e6e4] {
@@ -13,4 +13,5 @@
@gray-2:#dcdddf;
@gray-3 : #EDEDED;
-@fadePurple :#DFDEEC;
+@fadePurple :#DFDEEC;
+@gray-font :#7a8385;
@@ -428,12 +428,19 @@
.wind-site .page-common-body .page-common-body-menu .page-common-body-menu-box {
.page-common-body-menu-item{
- border: 0.093vh solid rgba(@deepblue, 0.4);
+ .svg-icon svg use{
+ fill:@gray-font;
&.active{
- background:transparent;
- border: 0.093vh solid #edbf03;
&::after{
+ box-shadow:none;
+ .svg-icon.svg-icon-yellow svg use{
+ fill:@deepblue;
@@ -97,13 +97,13 @@ export default {
offset: 0,
color: $("#appBody").is(".dark")
? partten.getColor(this.color) + "01"
- : "rgb(57, 54, 143)",
+ : partten.getColor('deepblue') + "01",
},
{
offset: 1,
? partten.getColor(this.color) + "ff"
+ : partten.getColor('deepblue') + "ff",
]),
],
@@ -1,7 +1,7 @@
<template>
<div class="wind-site-base-info">
<!-- 电机基本信息 -->
- <el-row class="mg-b-8">
+ <el-row class="mg-b-8 wind-site-other">
<div class="wind-site-name green mg-r-8">
<span class="svg-icon svg-icon-green mg-r-8">
<svg-icon class="" :svgid="'svg-normal-power'" />
@@ -20,9 +20,11 @@
<!-- 使用 v-show 首次全部加载 之后隐藏 点击后显示 -->
<base-info v-show="InfoBtns.activeIndex == 0" :data="sourceMap" />
<!-- <base-info v-if="InfoBtns.activeIndex == 2" /> -->
- <div :style="$store.state.themeName === 'dark' ? 'text-align:center;' : 'text-align:center;background:#fff;'">
+ <div style="justify-content: center;display: flex;">
<StandAloneImg class="sai" v-show="InfoBtns.activeIndex != 0" :activeIndex="InfoBtns.activeIndex" @selectSvg="selectSvg"></StandAloneImg>
- </div>
+ </div>
+ <!-- <div :style="$store.state.themeName === 'dark' ? 'text-align:center;' : 'text-align:center;background:#fff;'">
+ </div> -->
<generator class="saig" v-show="InfoBtns.activeIndex != 0" :index="InfoBtns.activeIndex" :data="sourceMap"></generator>
</el-col>
<el-col :span="8">
@@ -111,8 +111,8 @@
</g>
</defs>
<!-- 背景图片 -->
- <image x="0" y="90" height="787" width="1570" v-if="theme" href="./standAloneImg-green.png" />
- <image x="0" y="90" height="787" width="1570" v-else href="./standAloneImg-white.png" />
+ <image x="0" y="90" height="787" width="1570" v-show="theme" href="./standAloneImg-green.png" />
+ <image x="0" y="90" height="787" width="1570" v-show="!theme" href="./standAloneImg-white.png" />
<!-- 变桨 -->
<g class="stand-alone-img-g" :class="{ active: activeIndex == 3 }" @mouseover="mouseover(3)"
@mouseout="mouseout" @click="click(3)">
@@ -201,7 +201,7 @@
// 数据
data() {
return {
- theme:true,//默认黑色,换图
+ theme:'',//默认黑色,换图
StandAloneCircle1: false,
StandAloneCircle2: false,
StandAloneCircle3: false,