2025-07-14 18:41:30 +08:00
|
|
|
<!-- 历史订单 -->
|
2025-07-02 14:58:38 +08:00
|
|
|
<template>
|
2025-07-14 18:41:30 +08:00
|
|
|
<view class="aircraft-history">
|
2025-07-02 14:58:38 +08:00
|
|
|
<u-toast ref="uToast"></u-toast>
|
2025-07-14 18:41:30 +08:00
|
|
|
<Loading :show="loading" />
|
2025-07-02 14:58:38 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import configService from '@/common/config.service.js';
|
|
|
|
export default {
|
|
|
|
// #ifdef MP
|
|
|
|
options: {
|
|
|
|
styleIsolation: 'shared'
|
|
|
|
},
|
|
|
|
// #endif
|
2025-07-14 18:41:30 +08:00
|
|
|
data() {
|
|
|
|
return {
|
2025-07-02 14:58:38 +08:00
|
|
|
// #ifdef MP
|
|
|
|
// 微信小程序自定义导航栏参数
|
|
|
|
StatusBar: this.StatusBar || 0,
|
|
|
|
CustomBarHeight: this.Custom.height+(this.Custom.top-this.StatusBar)*2 || 0,
|
|
|
|
// #endif
|
2025-07-14 18:41:30 +08:00
|
|
|
loading: true, // 加载
|
2025-07-02 14:58:38 +08:00
|
|
|
}
|
|
|
|
},
|
2025-07-14 18:41:30 +08:00
|
|
|
onLoad(options) {
|
|
|
|
this.loading = false;
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 返回
|
|
|
|
back() {
|
|
|
|
uni.navigateBack();
|
2025-07-02 14:58:38 +08:00
|
|
|
},
|
2025-07-14 18:41:30 +08:00
|
|
|
},
|
2025-07-02 14:58:38 +08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-07-14 18:41:30 +08:00
|
|
|
.aircraft-history {
|
2025-07-02 14:58:38 +08:00
|
|
|
}
|
|
|
|
</style>
|