2023-09-19 02:53:38 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<tabbar :current="1"></tabbar>
|
|
|
|
订单
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-09-19 02:50:09 +00:00
|
|
|
<script>
|
2023-09-19 02:53:38 +00:00
|
|
|
import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue";
|
|
|
|
|
2023-09-19 02:50:09 +00:00
|
|
|
export default {
|
2023-09-19 02:53:38 +00:00
|
|
|
name: "index",
|
|
|
|
components: {tabbar}
|
2023-09-19 02:50:09 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
|
|
</style>
|