index.vue 676 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="mobile-content">
  3. <div class="seek-title">
  4. <img src="/images/mobile/@2x/applyPurchase/home/seek-title.png" alt="">
  5. <span>最新求购信息</span>
  6. </div>
  7. <seek-list></seek-list>
  8. </div>
  9. </template>
  10. <script>
  11. import SeekList from '~components/mobile/applyPurchase/SeekList.vue'
  12. export default {
  13. layout: 'mobile',
  14. components: {
  15. SeekList
  16. },
  17. fetch ({store}) {
  18. return Promise.all([
  19. store.dispatch('applyPurchase/loadPurchaseManList', {pageNumber: 1, pageSize: 10, enUU: store.state.option.user.data.enterprise ? store.state.option.user.data.enterprise.uu : null})
  20. ])
  21. }
  22. }
  23. </script>