aircraft-pilot/aircraft/server/my/child_pages/history.vue

43 lines
731 B
Vue

<!-- 历史订单 -->
<template>
<view class="aircraft-history">
<u-toast ref="uToast"></u-toast>
<Loading :show="loading" />
</view>
</template>
<script>
import configService from '@/common/config.service.js';
import Topnav from '@/components/topnav/index.vue';
export default {
// #ifdef MP
options: {
styleIsolation: 'shared'
},
// #endif
components: { Topnav },
data() {
return {
// #ifdef MP
// 微信小程序自定义导航栏参数
CustomBar: this.CustomBar || 0,
// #endif
loading: true, // 加载
}
},
onLoad(options) {
this.loading = false;
},
methods: {
// 返回
back() {
uni.navigateBack();
},
},
}
</script>
<style scoped lang="scss">
.aircraft-history {
}
</style>