30 lines
385 B
Vue
30 lines
385 B
Vue
|
<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>
|