index.vue 723 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="page-container">
  3. <inquiryVerificationList :type="type" ref="inquiryVerificationListRef"></inquiryVerificationList>
  4. </view>
  5. </template>
  6. <script>
  7. import inquiryVerificationList from '@/components/inquiry-verification-list/index.vue'
  8. export default {
  9. components: {
  10. inquiryVerificationList
  11. },
  12. data() {
  13. return {
  14. type:1//1:询价 2:核价
  15. }
  16. },
  17. onPullDownRefresh() {
  18. this.$refs.inquiryVerificationListRef.onRefresh();
  19. uni.stopPullDownRefresh();
  20. },
  21. }
  22. </script>
  23. <style>
  24. .page-container {
  25. width: 100%;
  26. overflow: hidden;
  27. }
  28. </style>