阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
864 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <TableListMoudle ref="tableList" :is-title-type="isTitleType" :selected-category="selectedCategory" :test="test" :is-recycle="isRecycle" />
  3. </template>
  4. <script>
  5. import TableListMoudle from './tableList.vue'
  6. export default {
  7. name: 'AnjuanContent',
  8. components: { TableListMoudle },
  9. props: {
  10. data: {
  11. type: String,
  12. default: ''
  13. },
  14. selectedCategory: {
  15. type: Object,
  16. default: function() {
  17. return {}
  18. }
  19. },
  20. isRecycle: {
  21. type: Boolean,
  22. default: false
  23. },
  24. smartQuery: {
  25. type: Object,
  26. default: function() {
  27. return {}
  28. }
  29. }
  30. },
  31. data() {
  32. return {
  33. isTitleType: 3,
  34. test: ''
  35. }
  36. },
  37. created() {
  38. },
  39. mounted() {
  40. },
  41. methods: {
  42. }
  43. }
  44. </script>
  45. <style lang='scss' scoped>
  46. </style>