tabsAbout.vue 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="detail-leads-about">
  3. <about-file
  4. v-if="batchId"
  5. :batch-id="batchId"
  6. :detail-id="detailId"
  7. type="crm_leads"
  8. class="about-section" />
  9. <about-operation
  10. :detail-id="detailId"
  11. type="crm_leads"
  12. class="about-section" />
  13. </view>
  14. </template>
  15. <script>
  16. import AboutFile from '../../components/tabAbout/aboutFile.vue'
  17. import AboutOperation from '../../components/tabAbout/aboutOperation.vue'
  18. export default {
  19. name: 'DetailLeadsAbout',
  20. components: {
  21. AboutFile,
  22. AboutOperation
  23. },
  24. props: {
  25. detailId: {
  26. type: [String, Number],
  27. default: null,
  28. required: true
  29. },
  30. batchId: {
  31. type: String,
  32. default: null
  33. }
  34. }
  35. }
  36. </script>
  37. <style scoped lang="scss">
  38. </style>