index.vue 488 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="height_100">
  3. <Table :type="1" :id="id" :processId="processId"></Table>
  4. </div>
  5. </template>
  6. <script>
  7. // import excavateTask from './excavateTask.vue'
  8. import Table from '@/views/task/components/index.vue'
  9. export default {
  10. props:['id','processId'],
  11. components: {
  12. // excavateTask
  13. Table,
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. watch: {
  20. },
  21. computed: {
  22. },
  23. mounted() {
  24. },
  25. methods: {
  26. },
  27. }
  28. </script>
  29. <style lang="scss" scoped></style>