39 lines
543 B
Vue
39 lines
543 B
Vue
![]() |
<template>
|
||
|
<view class="page-app theme-light main-green font-1">
|
||
|
<layout></layout>
|
||
|
|
||
|
<s-menu-tools />
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import layout from '@/pages/order/my/components/layout.vue';
|
||
|
export default {
|
||
|
components: {
|
||
|
layout,
|
||
|
},
|
||
|
props: {
|
||
|
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.page-app {
|
||
|
background-color: #fafafa;
|
||
|
padding-bottom: 140rpx;
|
||
|
height: calc(100vh);
|
||
|
padding-bottom: env(safe-area-inset-bottom);
|
||
|
}
|
||
|
</style>
|