riku
2025-06-04 66e48ee8e286533a9614efa34d42297213c1da4b
src/views/realtimemode/RealtimeMode.vue
@@ -17,9 +17,7 @@
      <el-col span="1">
        <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
@@ -27,6 +25,10 @@
      :factor-datas="factorDatas"
      :device-type="deviceType"
    ></RealTimeTrend>
    <SourceTrace
      class="source-trace"
      v-model:factorType="factorType"
    ></SourceTrace>
  </div>
</template>
@@ -195,11 +197,16 @@
.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>