| 12345678910111213141516171819 |
- <template>
- <div class="mobile-content">
- <say-price-info></say-price-info>
- </div>
- </template>
- <script>
- import {SayPriceInfo} from '~components/mobile'
- export default {
- layout: 'mobile',
- components: {
- SayPriceInfo
- },
- fetch ({store, route}) {
- return Promise.all([
- route.query.type === 'saler' ? store.dispatch('applyPurchase/loadVendorInquiryDetail', {id: route.params.id}) : store.dispatch('applyPurchase/loadBuyerInquiryDetail', {id: route.params.id})
- ])
- }
- }
- </script>
|