| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="page-container">
- <inquiryVerificationList :type="type"></inquiryVerificationList>
- </view>
- </template>
- <script>
- import inquiryVerificationList from '@/components/inquiry-verification-list/index.vue'
- export default {
- components: {
- inquiryVerificationList
- },
- data() {
- return {
- type:1//1:询价 2:核价
- }
- },
- }
- </script>
- <style>
- .page-container {
- height: 100vh;
- width: 100%;
- overflow: hidden;
- }
- </style>
|