zjList.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="img">
  5. <image src="../../static/error/missing-face.png" mode=""></image>
  6. </view>
  7. <view class="title-box">
  8. <view class="title-top">
  9. <view class="title-left">
  10. <text>古太医</text>
  11. <text>精通药理学病理中医神经学</text>
  12. </view>
  13. <view class="zj">
  14. 专家
  15. </view>
  16. </view>
  17. <view class="title-bottom">
  18. <view class="img1">
  19. <image src="../../static/error/emptyCart.png" mode=""></image>
  20. </view>
  21. <text>台州市椒江区市府大道120号</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="contact">
  26. <view class="contact-title">
  27. <text></text>
  28. <text>众赢集团</text>
  29. <text></text>
  30. </view>
  31. <view class="contact-content">
  32. <view class="img">
  33. <image src="../../static/icon/appleIcon.png" mode=""></image>
  34. </view>
  35. <view class="phone">
  36. 专线电话:18252757278
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. };
  47. }
  48. }
  49. </script>
  50. <style lang="scss">
  51. page {
  52. width: 100%;
  53. height: 100%;
  54. margin: 0;
  55. padding: 0;
  56. }
  57. .box {
  58. margin: 0 20rpx ;
  59. display: flex;
  60. width: 710rpx;
  61. height: 210rpx;
  62. background: #FFFFFF;
  63. box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(0, 0, 0, 0.1);
  64. border-radius: 10rpx;
  65. .img {
  66. width: 180rpx;
  67. height: 180rpx;
  68. border-radius: 10rpx;
  69. margin-left: 10rpx;
  70. image {
  71. width: 100%;
  72. height: 100%;
  73. }
  74. }
  75. .title-box {
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: space-around;
  79. margin-left: 20rpx;
  80. .title-top {
  81. display: flex;
  82. .title-left {
  83. width: 400rpx;
  84. display: flex;
  85. flex-direction: column;
  86. text:nth-child(1){
  87. font-size: 30rpx;
  88. font-family: PingFang SC;
  89. font-weight: bold;
  90. color: #333333;
  91. margin-top: -20rpx;
  92. line-height: 54rpx;
  93. }
  94. text:nth-child(2){
  95. font-size: 22rpx;
  96. font-family: PingFang SC;
  97. font-weight: 500;
  98. color: #666666;
  99. }
  100. }
  101. .zj {
  102. text-align: center;
  103. width: 66rpx;
  104. height: 40rpx;
  105. font-size: 24rpx;
  106. font-family: PingFang SC;
  107. font-weight: 500;
  108. color: #FFFFFF;
  109. background: linear-gradient(120deg, #FFC063, #FFA163);
  110. border-radius: 8rpx;
  111. line-height: 40rpx;
  112. }
  113. }
  114. .title-bottom {
  115. display: flex;
  116. .img1 {
  117. width: 17rpx;
  118. height: 24rpx;
  119. image {
  120. width: 100%;
  121. height: 100%;
  122. }
  123. }
  124. text {
  125. font-size: 24rpx;
  126. font-family: PingFang SC;
  127. font-weight: 500;
  128. color: #999999;
  129. }
  130. }
  131. }
  132. .contact {
  133. .contact-title {
  134. text:nth-child(1) {
  135. width: 270px;
  136. height: 2px;
  137. background: #E5E5E5;
  138. }
  139. text:nth-child(2) {
  140. font-size: 30rpx;
  141. font-family: PingFang SC;
  142. font-weight: 500;
  143. color: #999999;
  144. line-height: 42rpx;
  145. }
  146. text:nth-child(3) {
  147. width: 270px;
  148. height: 2px;
  149. background: #E5E5E5;
  150. }
  151. }
  152. .contact-content {
  153. .img {
  154. width: 28rpx;
  155. height: 25rpx;
  156. image {
  157. width: 100%;
  158. height: 100%;
  159. }
  160. }
  161. .phone {}
  162. }
  163. }
  164. }
  165. </style>