Commit f9203460 by jlc

update:火箭发射文件名称重新表述

parent e499b4ba
...@@ -9,7 +9,7 @@ import vueCodeStationCoordinate from '@/examples/measureStation/stationCoordinat ...@@ -9,7 +9,7 @@ import vueCodeStationCoordinate from '@/examples/measureStation/stationCoordinat
import vueCodeVehicle from '@/examples/movingTarget/vehicle/vehicle.vue?raw' import vueCodeVehicle from '@/examples/movingTarget/vehicle/vehicle.vue?raw'
import vueCodeAircraft from '@/examples/movingTarget/aircraft/aircraft.vue?raw' import vueCodeAircraft from '@/examples/movingTarget/aircraft/aircraft.vue?raw'
import vueCodeCoordinateAxis from '@/examples/movingTarget/coordinateAxis/coordinateAxis.vue?raw' import vueCodeCoordinateAxis from '@/examples/movingTarget/coordinateAxis/coordinateAxis.vue?raw'
import vueCodeRocket from '@/examples/movingTarget/rocket/rocket.vue?raw' import vueCodeRocketLaunch from '@/examples/movingTarget/rocketLaunch/rocketLaunch.vue?raw'
import vueCodeRocketLaunchIntoOrbit from '@/examples/movingTarget/rocketLaunchIntoOrbit/rocketLaunchIntoOrbit.vue?raw' import vueCodeRocketLaunchIntoOrbit from '@/examples/movingTarget/rocketLaunchIntoOrbit/rocketLaunchIntoOrbit.vue?raw'
// 图元 // 图元
...@@ -52,7 +52,7 @@ const vueCodeMap = { ...@@ -52,7 +52,7 @@ const vueCodeMap = {
: vueCodeVehicle, : vueCodeVehicle,
飞机: vueCodeAircraft, 飞机: vueCodeAircraft,
坐标轴: vueCodeCoordinateAxis, 坐标轴: vueCodeCoordinateAxis,
火箭发射: vueCodeRocket, 火箭发射: vueCodeRocketLaunch,
火箭发射卫星入轨: vueCodeRocketLaunchIntoOrbit, 火箭发射卫星入轨: vueCodeRocketLaunchIntoOrbit,
// 图元 // 图元
......
...@@ -9,7 +9,7 @@ import functionCodeStationCoordinate from '@/examples/measureStation/stationCoor ...@@ -9,7 +9,7 @@ import functionCodeStationCoordinate from '@/examples/measureStation/stationCoor
import functionCodeVehicle from '@/examples/movingTarget/vehicle/vehicle-function.js?raw' import functionCodeVehicle from '@/examples/movingTarget/vehicle/vehicle-function.js?raw'
import functionCodeAircraft from '@/examples/movingTarget/aircraft/aircraft-function.js?raw' import functionCodeAircraft from '@/examples/movingTarget/aircraft/aircraft-function.js?raw'
import functionCodeCoordinateAxis from '@/examples/movingTarget/coordinateAxis/coordinateAxis-function.js?raw' import functionCodeCoordinateAxis from '@/examples/movingTarget/coordinateAxis/coordinateAxis-function.js?raw'
import functionCodeRocket from '@/examples/movingTarget/rocket/rocket-function.js?raw' import functionCodeRocketLaunch from '@/examples/movingTarget/rocketLaunch/rocketLaunch-function.js?raw'
import functionCodeRocketLaunchIntoOrbit from '@/examples/movingTarget/rocketLaunchIntoOrbit/rocketLaunchIntoOrbit-function.js?raw' import functionCodeRocketLaunchIntoOrbit from '@/examples/movingTarget/rocketLaunchIntoOrbit/rocketLaunchIntoOrbit-function.js?raw'
// 图元 // 图元
...@@ -51,7 +51,7 @@ const functionCodeMap = { ...@@ -51,7 +51,7 @@ const functionCodeMap = {
: functionCodeVehicle, : functionCodeVehicle,
飞机: functionCodeAircraft, 飞机: functionCodeAircraft,
坐标轴: functionCodeCoordinateAxis, 坐标轴: functionCodeCoordinateAxis,
火箭发射: functionCodeRocket, 火箭发射: functionCodeRocketLaunch,
火箭发射卫星入轨: functionCodeRocketLaunchIntoOrbit, 火箭发射卫星入轨: functionCodeRocketLaunchIntoOrbit,
// 图元 // 图元
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
</template> </template>
<script setup> <script setup>
import { onMounted } from 'vue'; import { onMounted } from 'vue';
import { addRocket } from './function'; import { addRocketLaunch } from './function';
onMounted(() => { onMounted(() => {
addRocket() addRocketLaunch()
}); });
</script> </script>
......
...@@ -34,7 +34,7 @@ export const elementMovingMap = { ...@@ -34,7 +34,7 @@ export const elementMovingMap = {
}, },
火箭发射: { 火箭发射: {
title: '火箭发射', title: '火箭发射',
pngUrl: '/src/assets/Rocket.png' pngUrl: '/src/assets/RocketLaunch.png'
}, },
火箭发射卫星入轨: { 火箭发射卫星入轨: {
title: '火箭发射卫星入轨', title: '火箭发射卫星入轨',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment