Files
peiwan-uniapp/pages/order/my/index.vue

39 lines
543 B
Vue
Raw Permalink Normal View History

2025-01-21 01:46:34 +08:00
<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>