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

47 lines
641 B

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="考证咨询"
  5. />
  6. <view class="uni-color-btn"
  7. @click="$utils.navigateTo('/pages_order/work/postConsult')">
  8. 去提交报名材料
  9. </view>
  10. <tabber select="2"/>
  11. </view>
  12. </template>
  13. <script>
  14. import tabber from '@/components/base/tabbar.vue'
  15. import { mapGetters } from 'vuex'
  16. export default {
  17. components : {
  18. tabber,
  19. },
  20. computed : {
  21. ...mapGetters(['userShop']),
  22. },
  23. data() {
  24. return {
  25. }
  26. },
  27. onShow() {
  28. },
  29. //滚动到屏幕底部
  30. onReachBottom() {
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style scoped lang="scss">
  37. .page{
  38. }
  39. </style>