Files
peiwan-uniapp/pages/worker/blind/index.vue
2025-01-21 01:46:34 +08:00

40 lines
517 B
Vue

<template>
<view class="page-app theme-light main-green font-1">
<layout title="随机下单">
</layout>
<s-menu-tools />
<s-auth-modal />
</view>
</template>
<script>
import layout from '@/pages/worker/blind/components/layout.vue';
export default {
components: {
layout,
},
data() {
return {
}
},
created() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.page-app {
background-color: #fafafa;
padding-bottom: env(safe-area-inset-bottom);
}
</style>