Compare commits

...

4 Commits

Author SHA1 Message Date
joylink_fanyuhong
64822d1ab0 Merge remote-tracking branch 'origin/develop' into local-test
Some checks are pending
CI / Docker-Build (push) Waiting to run
2024-04-03 10:16:43 +08:00
joylink_fanyuhong
548930fd3c Merge branch 'develop' of http://120.46.212.6:3000/joylink/rts-sim-testing-client into develop 2024-04-03 10:14:21 +08:00
joylink_fanyuhong
3e44d8fae4 关闭列车连接调整 2024-04-03 10:13:53 +08:00
joylink_zhaoerwei
2ab1396e33 列车驾驶台交互 2024-04-03 09:32:00 +08:00

View File

@ -38,10 +38,11 @@
<script setup lang="ts">
import { QForm } from 'quasar';
import { onMounted, ref } from 'vue';
import { onMounted, ref, onUnmounted } from 'vue';
import DraggableDialog from 'src/components/common/DraggableDialog.vue';
import { getCanLinkPlatForm, updateTrainConn } from 'src/api/Simulation';
import { successNotify, errorNotify } from 'src/utils/CommonNotify';
import { useLineStore } from 'src/stores/line-store';
const props = defineProps({
simulationId: {
type: String,
@ -93,5 +94,8 @@ function onCreate() {
});
});
}
onUnmounted(() => {
useLineStore().deviceOpreratDialogInstance = null;
});
</script>
<style scoped></style>