content-card.vue 643 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="mobile-content-card">
  3. <ContentInfo :phone="phone" :qr="qr" :platform="platform" :use-customer3="useCustomer3" />
  4. <FooterCard />
  5. </div>
  6. </template>
  7. <script>
  8. import ContentInfo from './content'
  9. import FooterCard from './footer'
  10. export default {
  11. name: 'MobileContentCard',
  12. components: {
  13. ContentInfo,
  14. FooterCard
  15. },
  16. props: {
  17. phone: {
  18. type: String,
  19. default: '13283800000'
  20. },
  21. qr: {
  22. type: String,
  23. default: ''
  24. },
  25. useCustomer3: {
  26. type: Boolean,
  27. default: false,
  28. },
  29. platform: String,
  30. }
  31. }
  32. </script>
  33. <style scoped lang="scss">
  34. </style>