41 lines
603 B
Vue
41 lines
603 B
Vue
|
<template>
|
||
|
<view class="aircraft-work">
|
||
|
作品
|
||
|
<u-toast ref="uToast"></u-toast>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
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
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
},
|
||
|
methods:{
|
||
|
// 初始化
|
||
|
async init(){
|
||
|
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
.aircraft-work{
|
||
|
background-color: antiquewhite;
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
</style>
|