aircraft-pilot/aircraft/server/equipment/equipment.vue

46 lines
715 B
Vue
Raw Normal View History

2025-07-02 14:58:38 +08:00
<template>
2025-07-14 18:41:30 +08:00
<view class="aircraft-equipment">
设备
2025-07-02 14:58:38 +08:00
<u-toast ref="uToast"></u-toast>
</view>
</template>
<script>
import configService from '@/common/config.service.js';
import { tools } from '@/utils/utils.js';
export default {
// #ifdef MP
options: {
styleIsolation: 'shared'
},
// #endif
props: {
topLevel:{
type: Number,
default: 0
},
},
data(){
return{
// #ifdef MP
// 微信小程序自定义导航栏参数
StatusBar: this.StatusBar || 0,
CustomBarHeight: this.Custom.height+(this.Custom.top-this.StatusBar)*2 || 0,
// #endif
}
},
methods:{
// 初始化
async init(){
},
}
}
</script>
<style scoped lang="scss">
2025-07-14 18:41:30 +08:00
.aircraft-equipment{
2025-07-02 14:58:38 +08:00
}
</style>