index.vue 570 B

1234567891011121314151617181920212223242526
  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:1//1:询价 2:核价
  15. }
  16. },
  17. }
  18. </script>
  19. <style>
  20. .page-container {
  21. height: 100vh;
  22. width: 100%;
  23. overflow: hidden;
  24. }
  25. </style>