61 lines
1005 B
Vue
61 lines
1005 B
Vue
<template>
|
|
<div class="aircraft-order">
|
|
<u-image width="100%" :src="fileUrl+banner" mode="widthFix" />
|
|
<view class="order-list">
|
|
<view class="order-item">
|
|
|
|
</view>
|
|
</view>
|
|
<u-toast ref="uToast"></u-toast>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import configService from '@/common/config.service.js';
|
|
export default {
|
|
// #ifdef MP
|
|
options: {
|
|
styleIsolation: 'shared'
|
|
},
|
|
// #endif
|
|
props: {
|
|
topLevel:{
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
},
|
|
data(){
|
|
return {
|
|
fileUrl: configService.fileUrl + 'aerocraft/order/',//订单页图标基础路径
|
|
// 轮播图
|
|
banner: 'banner.png',
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
// 初始化
|
|
async init(){
|
|
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.aircraft-order{
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
</style> |