report.vue 451 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="mainBox">
  3. <uni-nav-bar
  4. fixed="true"
  5. statusBar="true"
  6. left-icon="back"
  7. title="报工"
  8. @clickLeft="back"
  9. >
  10. </uni-nav-bar>
  11. </view>
  12. </template>
  13. <script>
  14. import { get, getJ, post, postJ } from '@/utils/api.js'
  15. export default {
  16. components: {
  17. },
  18. data () {
  19. return {
  20. }
  21. },
  22. onShow () {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. </style>