index.vue 675 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div>
  3. <importPatent :reportId="reportId" :asCompare="asCompare" :productId="productId" :projectId="projectId"></importPatent>
  4. </div>
  5. </template>
  6. <script>
  7. import importPatent from './importPatent.vue'
  8. export default {
  9. components: {
  10. importPatent
  11. },
  12. data() {
  13. return {
  14. }
  15. },
  16. computed: {
  17. reportId() {
  18. return this.$route.query.reportId
  19. },
  20. projectId() {
  21. return this.$route.query.projectId
  22. },
  23. productId() {
  24. return this.$route.query.productId
  25. },
  26. asCompare() {
  27. return this.$route.query.asCompare
  28. }
  29. },
  30. mounted() {
  31. },
  32. methods: {},
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. </style>