aircraft-pilot/aircraft/server/order/order.vue

61 lines
1005 B
Vue
Raw Normal View History

2025-07-14 18:41:30 +08:00
<template>
<div class="aircraft-order">
2025-07-23 00:15:17 +08:00
<u-image width="100%" :src="fileUrl+banner" mode="widthFix" />
<view class="order-list">
<view class="order-item">
</view>
</view>
2025-07-14 18:41:30 +08:00
<u-toast ref="uToast"></u-toast>
</div>
</template>
<script>
2025-07-23 00:15:17 +08:00
import configService from '@/common/config.service.js';
2025-07-14 18:41:30 +08:00
export default {
2025-07-23 00:15:17 +08:00
// #ifdef MP
options: {
styleIsolation: 'shared'
},
// #endif
props: {
topLevel:{
type: Number,
default: 0
},
},
2025-07-14 18:41:30 +08:00
data(){
return {
2025-07-23 00:15:17 +08:00
fileUrl: configService.fileUrl + 'aerocraft/order/',//订单页图标基础路径
// 轮播图
banner: 'banner.png',
2025-07-14 18:41:30 +08:00
}
},
methods:{
// 初始化
async init(){
},
}
}
</script>
<style scoped lang="scss">
.aircraft-order{
2025-07-23 00:15:17 +08:00
height: 100%;
display: flex;
flex-direction: column;
.order-list{
flex: 1;
z-index: 1;
margin-top: -30rpx;
width: 100%;
background-color: #F5F5F5;
border-radius: 24rpx 16rpx 16rpx 16rpx;
.order-item{
border-radius: 24rpx 16rpx 16rpx 16rpx;
}
}
2025-07-14 18:41:30 +08:00
}
</style>