| | |
| | | :factor="factorDatas.factor[factorType]" |
| | | @change="handleLegendTypeChange" |
| | | ></FactorLegend> |
| | | <!-- <SourceTrace></SourceTrace> --> |
| | | </el-row> |
| | | <el-row class="historical" justify="center"> |
| | | <HistoricalTrajectory |
| | |
| | | :device-type="deviceType" |
| | | :device-code="deviceCode" |
| | | ></DataSheet> |
| | | <SourceTrace |
| | | class="source-trace" |
| | | v-model:factorType="factorType" |
| | | direction="left" |
| | | mode="history" |
| | | :mission-code="missionCode" |
| | | ></SourceTrace> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | missionCode: undefined, |
| | | // 监测设备类型 |
| | | deviceType: TYPE0, |
| | | // 监测设备编号 |
| | |
| | | this.deviceType = deviceType; |
| | | this.deviceCode = deviceCode; |
| | | this.mission = mission; |
| | | this.missionCode = mission.missionCode; |
| | | let startTime, endTime; |
| | | if (timeArray && timeArray.length == 2) { |
| | | startTime = moment(timeArray[0]).format('YYYY-MM-DD HH:mm:ss'); |
| | |
| | | left: 0; |
| | | right: 0; |
| | | } |
| | | .source-trace { |
| | | position: absolute; |
| | | right: 0; |
| | | bottom: 0px; |
| | | } |
| | | </style> |