This commit is contained in:
xingyy 2023-09-19 10:53:38 +08:00
parent 71a33a0dac
commit 0fc9c9883c
5 changed files with 32 additions and 13 deletions

View File

@ -65,6 +65,12 @@
}, },
{ {
"pagePath": "pages/mine/index" "pagePath": "pages/mine/index"
},
{
"pagePath": "pages/contract/index"
},
{
"pagePath": "pages/order-goods/index"
} }
] ]
} }

View File

@ -1,12 +1,17 @@
<template>
<div>
<tabbar :current="2"></tabbar>合同</div>
</template>
<script> <script>
import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue";
export default { export default {
name: "index" name: "index",
components: {tabbar}
} }
</script> </script>
<template>
<div>合同</div>
</template>
<style scoped lang="scss"> <style scoped lang="scss">

View File

@ -2,7 +2,7 @@
<template> <template>
<div> <div>
<tabbar :current="1"></tabbar> <tabbar :current="3"></tabbar>
wode</div> wode</div>
</template> </template>
<script> <script>

View File

@ -1,15 +1,17 @@
<template>
<div>
<tabbar :current="1"></tabbar>
订单
</div>
</template>
<script> <script>
import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue";
export default { export default {
name: "index" name: "index",
components: {tabbar}
} }
</script> </script>
<template>
<div>
订单
</div>
</template>
<style scoped lang="scss"> <style scoped lang="scss">
</style> </style>

View File

@ -24,6 +24,12 @@
}, },
{ {
"pagePath": "pages/mine/index" "pagePath": "pages/mine/index"
},
{
"pagePath": "pages/contract/index"
},
{
"pagePath": "pages/order-goods/index"
} }
] ]
}, },