index.vue 561 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="mainBox">
  3. <navigation-bar></navigation-bar>
  4. <received></received>
  5. </view>
  6. </template>
  7. <script>
  8. import navigationBar from '../../components/navigationBar/navigationBar.vue';
  9. import received from '../received/index.vue';
  10. import httpAjax from '@/utils/https.js';
  11. /**
  12. * @description 待签收
  13. **/
  14. export default {
  15. name: 'main',
  16. components: { navigationBar, received },
  17. data() {
  18. return {};
  19. },
  20. onLoad(option) {
  21. },
  22. mounted() {},
  23. methods: {},
  24. };
  25. </script>
  26. <style lang="scss">
  27. @import './index.scss';
  28. </style>