ATFCardDisplay.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <view class="card-display-container">
  3. <view style="padding: 20rpx;background-color: #476088;color: #ffffff;border-radius: 14rpx;">
  4. <view v-if="(cardData.styleId === 1) || (cardData.styleId === 2) || (cardData.styleId === 3)">
  5. <view style="display: flex;align-items: center;">
  6. <view style="flex: 1;display: flex;align-items: center;">
  7. <view style="text-align: center;">
  8. <image
  9. :src="common.seamingImgUrl(cardData.headImage) || headerImg"
  10. style="width: 102rpx;height: 102rpx;border-radius: 50%;"
  11. ></image>
  12. </view>
  13. <view style="margin-left: 28rpx;">
  14. <view style="display: flex;align-items: center;">
  15. <view>{{ cardData.name }}</view>
  16. <view style="margin-left: 20rpx;">
  17. <text v-if="cardData.sex == 1">男</text>
  18. <text v-else-if="cardData.sex == 2">女</text>
  19. <text v-else>未知</text>
  20. </view>
  21. </view>
  22. <view style="font-size: 26rpx;">{{ cardData.birthday }}</view>
  23. </view>
  24. </view>
  25. <view v-if="cardData.ifBlack" style="margin-left: 20rpx;font-weight: bold;">已加入黑名单</view>
  26. </view>
  27. <view style="margin-top: 12rpx;">
  28. <view style="display: flex;justify-content: space-between;align-items: center;">
  29. <view style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;padding-right:14rpx;">
  30. <tui-icon :size="28" color="#dedcdc" name="mobile" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  31. <view>{{ cardData.phone }}</view>
  32. </view>
  33. <view v-if="cardData.landline" style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;">
  34. <tui-icon :size="28" color="#dedcdc" name="voipphone" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  35. <view>{{ cardData.landline }}</view>
  36. </view>
  37. </view>
  38. <view style="display: flex;justify-content: space-between;align-items: center;">
  39. <view
  40. v-if="cardData.mailbox"
  41. style="flex: 2;display: flex;align-items: flex-start;padding-top: 8rpx;padding-right:14rpx;"
  42. >
  43. <tui-icon :size="28" color="#dedcdc" name="mail" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  44. <view>{{ cardData.mailbox }}</view>
  45. </view>
  46. <view v-if="cardData.weChatSignal" style="flex: 3;display: flex;align-items: flex-start;padding-top: 8rpx;">
  47. <tui-icon :size="28" color="#dedcdc" name="wechat" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  48. <view>{{ cardData.weChatSignal }}</view>
  49. </view>
  50. </view>
  51. <view v-if="cardData.personalProfile" style="display: flex;align-items: flex-start;padding-top: 8rpx;">
  52. <tui-icon :size="28" color="#dedcdc" name="message" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  53. <view>{{ cardData.personalProfile }}</view>
  54. </view>
  55. <view style="display: flex;align-items: flex-start;padding-top: 8rpx;">
  56. <tui-icon :size="28" color="#dedcdc" name="position" unit="rpx" margin="0 18rpx 0 0"></tui-icon>
  57. <view>{{ cardData.address }}</view>
  58. </view>
  59. </view>
  60. </view>
  61. <view v-else class="card-style" style="padding-bottom: 45rpx;">
  62. <tui-no-data :fixed="false">未设置名片样式~</tui-no-data>
  63. </view>
  64. <view v-if="isShowLabel && labelList && labelList.length" style="display: flex;flex-wrap: wrap;padding: 8rpx 0;">
  65. <view
  66. v-for="item in labelList" :key="item.labelId"
  67. style="margin: 8rpx 0 0 12rpx;padding: 6rpx 16rpx;border: 2rpx solid #d8d3d3;background-color: #292d3c;border-radius: 6rpx;"
  68. >
  69. {{ item.labelName }}
  70. </view>
  71. </view>
  72. <slot name="bottomFoot" :data="{ cardData, labelList }"></slot>
  73. </view>
  74. <view
  75. v-if="cardData.pictureIntroduction && cardData.pictureIntroduction.length"
  76. style="padding: 16rpx 16rpx 0;background-color: #e8e8e8;" :style="{ margin: introductionPicMargin }"
  77. >
  78. <view style="margin-left: 30rpx;font-size: 30rpx;font-weight: bold;">图片介绍</view>
  79. <view style="margin-top: 18rpx;">
  80. <swiper
  81. autoplay :interval="3000" circular :previous-margin="previousMargin"
  82. :next-margin="nextMargin"
  83. :duration="1000" style="height: 480rpx;" @change="handleSwiperChange"
  84. >
  85. <swiper-item v-for="(item, index) in cardData.pictureIntroduction.split(',')" :key="index">
  86. <tui-lazyload-img
  87. mode="scaleToFill" width="600rpx" height="100%" radius="20rpx"
  88. :src="common.seamingImgUrl(item)"
  89. ></tui-lazyload-img>
  90. </swiper-item>
  91. </swiper>
  92. </view>
  93. </view>
  94. <view
  95. v-if="cardData.isEnterprise"
  96. style="padding: 20rpx;margin-top: 30rpx;background-color: #2d3d5a;color: #ffffff;border-radius: 14rpx;"
  97. >
  98. <view>企业信息</view>
  99. <view style="margin-top: 20rpx;display: flex;justify-content: space-between;align-items: center;">
  100. <view style="text-align: center;">
  101. <image
  102. :src="common.seamingImgUrl(cardData.enterpriseHeadImage) || headerImg"
  103. style="width: 102rpx;height: 102rpx;border-radius: 50%;"
  104. ></image>
  105. </view>
  106. <view style="flex: 1;margin-left: 28rpx;">
  107. <view>企业名称:{{ cardData.enterpriseName }}</view>
  108. <view>职务:{{ cardData.enterpriseDuties || '--' }}</view>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. export default {
  116. name: 'ATFCardDisplay',
  117. props: {
  118. cardData: {
  119. type: Object,
  120. required: true
  121. },
  122. labelList: {
  123. type: Array,
  124. default: () => []
  125. },
  126. introductionPicMargin: {
  127. type: String,
  128. default: '14rpx 0 0'
  129. },
  130. isShowLabel: {
  131. type: Boolean,
  132. default: false
  133. }
  134. },
  135. data() {
  136. return {
  137. previousMargin: '0',
  138. nextMargin: '80rpx',
  139. headerImg: require('../../static/images/userimg.png')
  140. }
  141. },
  142. options: {
  143. 'styleIsolation': 'shared'
  144. },
  145. methods: {
  146. handleSwiperChange(e) {
  147. if (this.$store.getters.electronicCardInfo.pictureIntroduction && this.$store.getters.electronicCardInfo.pictureIntroduction.split(',').length === 1) {
  148. console.log(e)
  149. if (e.detail.current === 1) {
  150. this.nextMargin = '0'
  151. this.previousMargin = '80rpx'
  152. } else {
  153. this.nextMargin = '80rpx'
  154. this.previousMargin = '0'
  155. }
  156. }
  157. }
  158. }
  159. }
  160. </script>
  161. <style lang="less" scoped>
  162. .card-display-container {
  163. font-size: 28rpx;
  164. box-sizing: border-box;
  165. /deep/ .card-style {
  166. .tui-nodata-box {
  167. padding-top: 60rpx;
  168. .tui-tips-content {
  169. color: #ffffff;
  170. }
  171. }
  172. }
  173. }
  174. </style>