share.vue 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="pd16_15">
  3. <view class="box noshadow pd16_15">
  4. <view class="flex alcenter">
  5. <image class="adviser-face-big" :src="statics.defaultFace"></image>
  6. <view style="width: calc(100% - 160rpx);" class=" pl15">
  7. <view class="ft16 cl-main ftw600">张顾问</view>
  8. <view class="flex alcenter mt8">
  9. <view class="flex alcenter cl-notice">
  10. <text class="iconfont iconicon_weixin ft14"></text>
  11. <text class="ft14 ml5">ffy1203605498</text>
  12. </view>
  13. <view class="copy-tag ml10" :style="{background:tempColor}">复制</view>
  14. </view>
  15. <view class="flex alcenter space mt8">
  16. <view class="flex alcenter cl-notice">
  17. <text class="iconfont iconicon_call ft14"></text>
  18. <text class="ft14 ml5">13515608638</text>
  19. </view>
  20. <text class="iconfont iconicon_bottom_call ft20" :style="{color:tempColor}"></text>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="mt24">
  25. <button class="btn-mid plan" style="width: 100%;" :style="getBtnPlanStyle">
  26. 绑定顾问
  27. </button>
  28. </view>
  29. </view>
  30. <navigator url="/pages/client/tuan/detail">
  31. <view class="box pd16_15 flex alcenter mt24">
  32. <image class="tuan-product-l"></image>
  33. <view class="tuan-product-r pl15">
  34. <view class="ft14 ftw600 cl-main text-over2">洗剪吹加护理一次套餐 会员只需5…</view>
  35. <view class="mt16">
  36. <text class="ft12 cl-orange">会员价</text>
  37. <text class="ft12 cl-orange">¥</text>
  38. <text class="ft16 cl-orange ftw600">58</text>
  39. <text class="ml15 ft12 cl-notice text-line">¥88</text>
  40. </view>
  41. <view class="mt16 flex space alcenter">
  42. <view class="ft12 cl-notice">已售868</view>
  43. <view class="btn-mini" :style="getBtnStyle">购买</view>
  44. </view>
  45. </view>
  46. </view>
  47. </navigator>
  48. <view class="mt24">
  49. <button class="btn-big" :style="{color:tempColor,background:'#fff'}">查看更多特惠 <text class="iconfont iconicon_arrow_small ft14 ml10"></text></button>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default{
  55. data(){
  56. return {
  57. }
  58. }
  59. }
  60. </script>
  61. <style>
  62. .adviser-face-big{
  63. width: 160rpx;
  64. height: 160rpx;
  65. border-radius: 80rpx;
  66. background: #FFFFFF;
  67. }
  68. .copy-tag{
  69. width: 96rpx;
  70. height: 40rpx;
  71. color:#FFFFFF;
  72. font-size: 24rpx;
  73. text-align: center;
  74. line-height: 40rpx;
  75. border-radius: 20rpx;
  76. }
  77. .tuan-product-l{
  78. width: 320rpx;
  79. height: 240rpx;
  80. border-radius: 16rpx;
  81. background: #F2F2F2;
  82. }
  83. .tuan-product-r{
  84. width: calc(100% - 320rpx);
  85. }
  86. </style>