personalCard.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="content">
  3. <view class="top-box">
  4. <image class="bgImg" src="http://dmsphoto.66km.com.cn/thFiles/C5E37DF6-452F-4FA4-877D-7620E10440C3.png"></image>
  5. <image class="headerImg" :src="avatarStr">
  6. </image>
  7. <view class="txtInfo-box">
  8. <text class="name">{{adInfo.name}}</text>
  9. <text class="work">服务顾问</text>
  10. </view>
  11. </view>
  12. <view class="address-box" @click="addressOpra">
  13. <view class="address-info">
  14. <text class="store-name">{{shopNameStr}}</text>
  15. <text
  16. class="store-address">{{addressStr}}</text>
  17. </view>
  18. <view class="address-arrow">
  19. <image src="../../static/img/little_rightArrow.png" mode="aspectFit"></image>
  20. </view>
  21. </view>
  22. <view class="bottom-box">
  23. <button open-type="share" class="share-btn-box">
  24. <view class="share-btn">分享名片</view>
  25. </button>
  26. <view class="call-btn" :style="{background:'#'+themeColor}" @click="callOpra">拨号</view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. adInfo: {
  35. shopName:'',
  36. shopInfo:{
  37. shopName:''
  38. },
  39. },
  40. themeColor:'',
  41. }
  42. },
  43. onLoad(e) {
  44. // console.log('个人名片传递的参数', e);
  45. this.adInfo = JSON.parse(e.adInfo)
  46. console.log('个人名片传递的参数', this.adInfo);
  47. this.themeColor = uni.getStorageSync("themeColor");
  48. },
  49. computed: {
  50. avatarStr(){
  51. return this.adInfo.avatar ? this.adInfo.avatar : '../../static/timg/pic_def_ava@2x.png'
  52. },
  53. shopNameStr(){
  54. if (this.adInfo.shopName) {
  55. // console.log('this.adInfo.shopName = ',this.adInfo.shopName)
  56. return this.adInfo.shopName
  57. }
  58. else{
  59. // console.log('this.adInfo.shopInfo.shopName = ',this.adInfo.shopInfo.shopName)
  60. return this.adInfo.shopInfo.shopName
  61. }
  62. },
  63. addressStr() {
  64. if (this.adInfo.provinceName) {
  65. return this.adInfo.provinceName + this.adInfo.cityName + this.adInfo.areaName + this.adInfo.address
  66. }
  67. else
  68. {
  69. return this.adInfo.shopInfo.provinceName + this.adInfo.shopInfo.cityName + this.adInfo.shopInfo.areaName + (this.adInfo.shopInfo.Address ? this.adInfo.shopInfo.Address :'')
  70. }
  71. },
  72. },
  73. methods: {
  74. // 拨号
  75. callOpra() {
  76. if (this.adInfo.phone) {
  77. uni.makePhoneCall({
  78. phoneNumber: this.adInfo.phone,
  79. success(e) {
  80. console.log(e)
  81. },
  82. fail: function(e) {
  83. console.log(e)
  84. }
  85. })
  86. }
  87. else
  88. {
  89. uni.showToast({
  90. title:'没有电话信息',
  91. icon: "none",
  92. duration:2000
  93. })
  94. }
  95. },
  96. // 门店地址
  97. addressOpra() {
  98. // uni.switchTab({
  99. // url:'/pages/index/index'
  100. // })
  101. uni.navigateTo({
  102. url:'onlineBooking?naShopId='+this.adInfo.shopID
  103. })
  104. }
  105. }
  106. }
  107. </script>
  108. <style scoped lang="scss">
  109. /* 背景图 & 头像 */
  110. .top-box {
  111. text-align: center;
  112. border-bottom: 1rpx solid #eee;
  113. }
  114. .bgImg {
  115. width: 100%;
  116. height: 426rpx;
  117. }
  118. .headerImg {
  119. width: 272rpx;
  120. height: 272rpx;
  121. border-radius: 50%;
  122. border: 6rpx solid #A38E21;
  123. margin-top: -136rpx;
  124. }
  125. /* 名片信息 */
  126. .txtInfo-box {
  127. display: flex;
  128. flex-direction: column;
  129. margin-top: 34rpx;
  130. margin-bottom: 32rpx;
  131. }
  132. .name {
  133. font-size: 44rpx;
  134. font-weight: 500;
  135. color: #333;
  136. }
  137. .work {
  138. color: #666;
  139. font-size: 28rpx;
  140. margin-top: 10rpx;
  141. }
  142. /* 地址信息 */
  143. .address-box {
  144. display: flex;
  145. margin-top: 33rpx;
  146. margin-bottom: 33rpx;
  147. }
  148. .address-info {
  149. flex: 1;
  150. display: flex;
  151. flex-direction: column;
  152. margin-left: 44rpx;
  153. }
  154. .address-arrow {
  155. width: 60rpx;
  156. }
  157. .address-arrow image {
  158. width: 30rpx;
  159. height: 100%;
  160. }
  161. .store-name {
  162. font-size: 30rpx;
  163. font-weight: 500;
  164. color: #3c3c3c;
  165. }
  166. .store-address {
  167. margin-top: 12rpx;
  168. font-size: 24rpx;
  169. color: #999;
  170. }
  171. /* 底部 */
  172. .bottom-box {
  173. bottom: 0;
  174. position: fixed;
  175. background: white;
  176. width: 100%;
  177. display: flex;
  178. box-shadow: 0px -2px 10px 0px rgba(153, 153, 153, 0.2000);
  179. padding-bottom: env(safe-area-inset-bottom);
  180. height: 120rpx;
  181. }
  182. button::after {
  183. border: none;
  184. }
  185. .share-btn-box {
  186. width: 375rpx;
  187. background: #FFFFFF;
  188. margin: 0;
  189. padding: 0;
  190. .share-btn {
  191. margin: 20rpx;
  192. background-color: #F4F5F7;
  193. border-radius: 37rpx;
  194. font-size: 28rpx;
  195. color: #000;
  196. text-align: center;
  197. line-height: 74rpx;
  198. }
  199. }
  200. .call-btn {
  201. flex: 1;
  202. margin: 20rpx;
  203. background-color: #D53533;
  204. border-radius: 37rpx;
  205. font-size: 28rpx;
  206. color: white;
  207. text-align: center;
  208. line-height: 74rpx;
  209. }
  210. </style>