aircraft-pilot/aircraft/star/index.vue

30 lines
385 B
Vue
Raw Normal View History

2025-07-02 14:58:38 +08:00
<template>
<view>
欢迎来到飞行运载系统
<Loading :show="loading" />
</view>
</template>
<script>
export default {
data() {
return {
loading: true
};
},
onLoad() {
let that = this;
uni.reLaunch({
url: `/aircraft/server/index/index`,
complete() {
that.loading = false;
}
})
},
methods: {
}
}
</script>
<style lang="scss" scoped>
</style>