card-sharing.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <view class="card-sharing-container">
  3. <view v-if="electronicCardShareInfo.buyerId">
  4. <view style="padding: 20rpx;font-size: 36rpx;font-weight: bold;text-align: center;">
  5. {{ electronicCardShareInfo.name || '无名' }}的名片
  6. </view>
  7. <ATFCardDisplay
  8. :card-data="electronicCardShareInfo" :label-list="electronicLabelShareInfo"
  9. introduction-pic-margin="14rpx -30rpx 0"
  10. >
  11. <template #bottomFoot="obj">
  12. <view
  13. v-if="obj.data.labelList && obj.data.labelList.length"
  14. style="display: flex;flex-wrap: wrap;padding: 8rpx 0;"
  15. >
  16. <tui-button
  17. v-for="(item, index) in obj.data.labelList" :key="item.labelId" width="fit-content" height="58rpx"
  18. :size="28"
  19. plain :type="item.isPraise ? 'warning' : 'white'" shape="circle" margin="8rpx 0 0 12rpx"
  20. @click="handleClickLabelPrise(index, item)"
  21. >
  22. <view style="margin: 0 20rpx;">
  23. <text style="margin-right: 10rpx;">{{ item.labelName }}</text>
  24. <tui-icon name="agree" :size="18" :color="item.isPraise ? '#fc872d' : '#999999'"></tui-icon>
  25. </view>
  26. </tui-button>
  27. </view>
  28. </template>
  29. </ATFCardDisplay>
  30. <view
  31. style="display: flex;justify-content: space-between;align-items: center;flex-wrap: wrap;padding-bottom: 20rpx;border-bottom: 2rpx solid #cccccc;"
  32. >
  33. <tui-button
  34. v-if="electronicCardShareInfo.weChatSignal" type="blue" width="280rpx" height="68rpx"
  35. margin="20rpx auto 0" @click="$copy(electronicCardShareInfo.weChatSignal)"
  36. >
  37. 复制微信号
  38. </tui-button>
  39. <tui-button type="blue" width="280rpx" height="68rpx" margin="20rpx auto 0" open-type="share">
  40. 分享名片
  41. </tui-button>
  42. <tui-button
  43. v-if="electronicCardShareInfo.phone" type="blue" width="280rpx" height="68rpx"
  44. margin="20rpx auto 0"
  45. @click="handlePhoneCall(electronicCardShareInfo.phone)"
  46. >
  47. 拨打电话
  48. </tui-button>
  49. <tui-button
  50. v-if="electronicCardShareInfo.phone" type="blue" width="280rpx" height="68rpx"
  51. margin="20rpx auto 0"
  52. @click="handlePhoneContact(electronicCardShareInfo)"
  53. >
  54. 同步到通讯录
  55. </tui-button>
  56. </view>
  57. </view>
  58. <view style="padding-bottom: 45rpx;">
  59. <LoadingMore :status="isLoading ? 'loading' : ''"></LoadingMore>
  60. <view v-if="!isLoading && !electronicCardShareInfo.enterpriseUserId">
  61. <tui-no-data :fixed="false">出错了~</tui-no-data>
  62. </view>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. import { getStorageUserId } from '../../../utils'
  68. import { getIdEnterpriseUserApi, getUserIdEnterpriseUserLabelApi, updateByLabelEnterpriseUserLikeApi, updateByIdCanEnterpriseUserLikeApi } from '../../../api/anotherTFInterface'
  69. export default {
  70. name: 'CardSharing',
  71. data() {
  72. return {
  73. electronicCardShareInfo: {
  74. enterpriseUserId: '',
  75. buyerId: ''
  76. },
  77. electronicLabelShareInfo: [
  78. // {
  79. // labelId: '标签Id',
  80. // labelName: '标签名称',
  81. // enterpriseUserId: '关联名片ID',
  82. // createTime: '创建时间',
  83. // updateTime: '更新时间',
  84. // isPraise: false
  85. // }
  86. ],
  87. isLoading: true
  88. }
  89. },
  90. onLoad(options) {
  91. this.electronicCardShareInfo.buyerId = Number(options.id) || ''
  92. this.getCardData(this.electronicCardShareInfo.buyerId)
  93. },
  94. onShareAppMessage(res) {
  95. if ((res.from === 'button') || (res.from === 'menu')) {
  96. console.log(res.target)
  97. }
  98. return {
  99. title: '您好,这是我的名片,望惠存',
  100. path: `/another-tf/another-user/calling-card/card-sharing?id=${this.electronicCardShareInfo.buyerId}`,
  101. imageUrl: (this.electronicCardShareInfo.pictureIntroduction && this.electronicCardShareInfo.pictureIntroduction.split(',')[0]) || this.electronicCardShareInfo.headImage || ''
  102. // imageUrl: '/static/images/userimg.png',
  103. }
  104. },
  105. methods: {
  106. async getCardData(id) {
  107. if (id) {
  108. uni.showLoading()
  109. this.isLoading = true
  110. try {
  111. const tempResultCard = await getIdEnterpriseUserApi({ id })
  112. this.electronicCardShareInfo = tempResultCard.data
  113. if (tempResultCard) {
  114. const tempResultLabel = await getUserIdEnterpriseUserLabelApi({ enterpriseUserId: this.electronicCardShareInfo.enterpriseUserId })
  115. this.electronicLabelShareInfo = tempResultLabel.data.map((item) => ({ ...item, isPraise: false }))
  116. }
  117. uni.hideLoading()
  118. this.isLoading = false
  119. } catch (err) {
  120. uni.hideLoading()
  121. this.isLoading = false
  122. }
  123. } else {
  124. this.$showToast('缺少名片信息')
  125. }
  126. },
  127. handleClickLabelPrise(index, item) {
  128. if (getStorageUserId()) {
  129. uni.showLoading()
  130. if (!item.isPraise) {
  131. updateByLabelEnterpriseUserLikeApi({
  132. likeUserId: getStorageUserId(),
  133. quiltUserId: this.electronicCardShareInfo.buyerId,
  134. labelId: item.labelId
  135. }).then((res) => {
  136. uni.hideLoading()
  137. this.electronicLabelShareInfo[index].isPraise = !item.isPraise
  138. })
  139. .catch((e) => {
  140. uni.hideLoading()
  141. })
  142. } else {
  143. updateByIdCanEnterpriseUserLikeApi({
  144. likeUserId: getStorageUserId(),
  145. labelId: item.labelId
  146. }).then((res) => {
  147. uni.hideLoading()
  148. this.electronicLabelShareInfo[index].isPraise = !item.isPraise
  149. })
  150. .catch((e) => {
  151. uni.hideLoading()
  152. })
  153. }
  154. }
  155. },
  156. handlePhoneContact(data) {
  157. uni.addPhoneContact({
  158. mobilePhoneNumber: data.phone,
  159. firstName: data.name || '',
  160. email: data.mailbox || '',
  161. weChatNumber: data.weChatSignal || '',
  162. remark: data.personalProfile || '',
  163. organization: data.enterpriseName || '',
  164. title: data.enterpriseDuties || '',
  165. success() {
  166. console.log('success')
  167. },
  168. fail() {
  169. console.log('fail')
  170. }
  171. })
  172. },
  173. handlePhoneCall(phone) {
  174. uni.makePhoneCall({
  175. phoneNumber: phone,
  176. success: (res) => {
  177. console.log('调用成功!')
  178. },
  179. fail: (res) => {
  180. console.log('调用失败!')
  181. }
  182. })
  183. }
  184. }
  185. }
  186. </script>
  187. <style lang="less" scoped>
  188. .card-sharing-container {
  189. min-height: 100vh;
  190. padding: 0 30rpx 120rpx;
  191. background-color: #fefefe;
  192. box-sizing: border-box;
  193. }
  194. </style>