<style>
</style>

<template>
  <div>
    <allList :pagesTitle="pagesTitle" :dataObj="dataObj"></allList>
  </div>
</template>
<script>
  // import allList from './components/allListExaminePrice.vue';
  import allList from './components/allList.vue';
  export default {
    components: { allList },
    data() {
      return {
        pagesTitle: '查看',
        dataObj:{
          OrderId: '',
          tab: '0'
        }
      };
    },
    watch: {
      pagesTitle(val,oldval){

      },
    },
    methods: {

    },
    created() {

    },
    mounted() {
      if(this.$route.query.OrderId){
        this.dataObj.OrderId = this.$route.query.OrderId
      }
      if(this.$route.query.OrderType){
        this.dataObj.tab = this.$route.query.OrderType
      }
    },
  };

</script>

<style>

</style>