特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
516 B

<template>
<view class="page">
<navbar
title="订单中心"
/>
<tabber select="2"/>
</view>
</template>
<script>
import tabber from '@/components/base/tabbar.vue'
import { mapGetters } from 'vuex'
export default {
components : {
tabber,
},
computed : {
...mapGetters(['userShop']),
},
data() {
return {
}
},
onShow() {
},
//滚动到屏幕底部
onReachBottom() {
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page{
}
</style>