index.vue 547 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="page-container">
  3. <inquiryVerificationList :type="type"></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:2//1:询价 2:核价
  15. }
  16. },
  17. }
  18. </script>
  19. <style>
  20. .page-container {
  21. width: 100%;
  22. overflow: hidden;
  23. }
  24. </style>