冀北需求变更整改
This commit is contained in:
@@ -40,23 +40,15 @@
|
||||
<!-- <el-select v-model="contaminate" style="width: 120px; margin-right: 80px" @change="contaminateC">
|
||||
<el-option v-for="item in options" :key="item.id" :label="item.name" :value="item.id" />
|
||||
</el-select> -->
|
||||
<el-radio-group
|
||||
v-model="contaminate"
|
||||
style="margin-right: 50px"
|
||||
@change="contaminateC"
|
||||
size="small"
|
||||
>
|
||||
<el-radio-group v-model="contaminate" style="margin-right: 50px" @change="contaminateC"
|
||||
size="small">
|
||||
<el-radio-button v-for="item in options" :label="item.id">{{ item.name }}</el-radio-button>
|
||||
</el-radio-group>
|
||||
</div>
|
||||
|
||||
<div class="pie">
|
||||
<MyEChart
|
||||
v-for="(item, i) in picEChart"
|
||||
:style="i == 3 ? `margin-left: 20%;` : ``"
|
||||
class="MyEChart"
|
||||
:options="item"
|
||||
/>
|
||||
<MyEChart v-for="(item, i) in picEChart" :style="i == 3 ? `margin-left: 20%;` : ``" class="MyEChart"
|
||||
:options="item" />
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
@@ -185,7 +177,9 @@ const contaminateC = () => {
|
||||
yAxis: {
|
||||
show: false
|
||||
},
|
||||
|
||||
options: {
|
||||
toolbox:null,
|
||||
dataZoom: null,
|
||||
series: [
|
||||
{
|
||||
@@ -308,6 +302,7 @@ const analysis = (e: any) => {
|
||||
yAxis: {
|
||||
name: '座'
|
||||
},
|
||||
|
||||
|
||||
options: {
|
||||
dataZoom: null,
|
||||
@@ -350,28 +345,34 @@ defineExpose({ open })
|
||||
:deep(.el-select) {
|
||||
min-width: 80px;
|
||||
}
|
||||
|
||||
.title {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
position: relative;
|
||||
|
||||
span {
|
||||
font-weight: 550;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.WarningFilled {
|
||||
width: 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.pie {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.MyEChart {
|
||||
height: 130px;
|
||||
width: 30%;
|
||||
margin-right: 3%;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.el-dialog__body) {
|
||||
max-height: none !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user