1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="mobile-content-card">
- <ContentInfo :phone="phone" :qr="qr" :platform="platform" :use-customer3="useCustomer3" />
- <FooterCard />
- </div>
- </template>
- <script>
- import ContentInfo from './content'
- import FooterCard from './footer'
- export default {
- name: 'MobileContentCard',
- components: {
- ContentInfo,
- FooterCard
- },
- props: {
- phone: {
- type: String,
- default: '13283800000'
- },
- qr: {
- type: String,
- default: ''
- },
- useCustomer3: {
- type: Boolean,
- default: false,
- },
- platform: String,
- }
- }
- </script>
- <style scoped lang="scss">
- </style>
|