特易招,招聘小程序
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

4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="订单中心"
  5. />
  6. <tabber select="2"/>
  7. </view>
  8. </template>
  9. <script>
  10. import tabber from '@/components/base/tabbar.vue'
  11. import { mapGetters } from 'vuex'
  12. export default {
  13. components : {
  14. tabber,
  15. },
  16. computed : {
  17. ...mapGetters(['userShop']),
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. onShow() {
  24. },
  25. //滚动到屏幕底部
  26. onReachBottom() {
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. .page{
  34. }
  35. </style>