Compare commits

...

2 Commits

1 changed files with 2 additions and 2 deletions

View File

@ -231,8 +231,8 @@ onMounted(() => {
spaceConstraint.value = props.showInfoData.spaceConstraint
expansionDistance.value = props.showInfoData.expansionDistance
temporalConstraints.value = props.showInfoData.temporalConstraints
tcStartTime.value = dayjs(props.showInfoData.tcStartTime)
tcEndTime.value = dayjs(props.showInfoData.tcEndTime)
tcStartTime.value = props.showInfoData.tcStartTime? dayjs(props.showInfoData.tcStartTime): ''
tcEndTime.value = props.showInfoData.tcEndTime? dayjs(props.showInfoData.tcEndTime): ''
flySpeedFirst.value = props.showInfoData.flySpeed?.split('~')[0] || ''
flySpeedLast.value = props.showInfoData.flySpeed.split('~')[1] || ''
gimbalPitchDegreeFirst.value = props.showInfoData.gimbalPitchDegree?.split('~')[0] || ''