| | |
| | | <div class="p-events-none m-t-2"> |
| | | <el-row justify="center" align="middle" class="top-wrap"> |
| | | <DeviceChange @change="onDeviceChange"></DeviceChange> |
| | | <el-button |
| | | type="primary" |
| | | class="p-events-auto el-button-custom" |
| | | @click="clearFetchingTask" |
| | | > |
| | | 停止 |
| | | </el-button> |
| | | </el-row> |
| | | <el-row class="m-t-2"> |
| | | <FactorRadio |
| | | :device-type="deviceType" |
| | | v-model="factorType" |
| | | ></FactorRadio> |
| | | <FactorRadio :device-type="deviceType" v-model="factorType"></FactorRadio> |
| | | </el-row> |
| | | <el-row class="m-t-2"> |
| | | <el-col span="1"> |
| | | <FactorLegend |
| | | :factor="factorDatas.factor[factorType]" |
| | | ></FactorLegend> |
| | | <FactorLegend :factor="factorDatas.factor[factorType]"></FactorLegend> |
| | | </el-col> |
| | | <el-col span="1"> |
| | | <SourceTrace v-model:factorType="factorType"></SourceTrace> |
| | | </el-col> |
| | | <el-col span="1"> </el-col> |
| | | </el-row> |
| | | <DashBoard class="dash-board" :factor-datas="factorDatas"></DashBoard> |
| | | <RealTimeTrend |
| | |
| | | :factor-datas="factorDatas" |
| | | :device-type="deviceType" |
| | | ></RealTimeTrend> |
| | | <SourceTrace |
| | | class="source-trace" |
| | | v-model:factorType="factorType" |
| | | ></SourceTrace> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | .dash-board { |
| | | position: absolute; |
| | | left: 0; |
| | | bottom: 2px; |
| | | bottom: 0px; |
| | | } |
| | | .real-time-trend { |
| | | position: absolute; |
| | | right: 0; |
| | | top: 0; |
| | | } |
| | | .source-trace { |
| | | position: absolute; |
| | | right: 0; |
| | | bottom: 0px; |
| | | } |
| | | </style> |