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/contract/index"
},
{
"pagePath": "pages/order-goods/index"
}
]
}

View File

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

View File

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

View File

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

View File

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