選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

212 行
4.3 KiB

  1. <template>
  2. <view class="cented-box">
  3. <view class="search-box">
  4. <view class="search">
  5. <view class="search-img">
  6. <image class="search-img1" src="../../static/images/search.png" mode=""></image>
  7. </view>
  8. <view class="search-text">输入话术关键字</view>
  9. </view>
  10. </view>
  11. <view class="caseid-box">
  12. <view class="caseid">
  13. <image class="caseid-img1" src="../../static/images/good.png" mode=""></image>
  14. <view class="caseid-text">优秀案例</view>
  15. </view>
  16. <view class="caseid">
  17. <image class="caseid-img1" src="../../static/images/problem.png" mode=""></image>
  18. <view class="caseid-text">问题库</view>
  19. </view>
  20. <view class="caseid">
  21. <image class="caseid-img1" src="../../static/images/reverse.png" mode=""></image>
  22. <view class="caseid-text">反面案例</view>
  23. </view>
  24. </view>
  25. <view class="Pinspeak">销讲话术</view>
  26. <view class="chented">
  27. <view class="title">
  28. <view class="title1"></view>
  29. <view class="titletext">逼单话术</view>
  30. <view class="titleimg">
  31. <image class="titleimg1" src="../../static/images/arrow.png" mode=""></image>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="chented">
  36. <view class="title" style="border: none;">
  37. <view class="title1"></view>
  38. <view class="titletext">品牌介绍</view>
  39. </view>
  40. <view class="chented-for">
  41. <view class="chented-che">2021销售额</view>
  42. <view class="chented-che">2021销售额</view>
  43. <view class="chented-che">2021销售额</view>
  44. <view class="chented-che">2021销售额</view>
  45. </view>
  46. </view>
  47. <view class="chented">
  48. <view class="title" style="border: none;">
  49. <view class="title1"></view>
  50. <view class="titletext">品牌介绍</view>
  51. </view>
  52. <view class="chented-for">
  53. <view class="chented-che">2021销售额</view>
  54. <view class="chented-che">2021销售额</view>
  55. <view class="chented-che">2021销售额</view>
  56. <view class="chented-che">2021销售额</view>
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {};
  65. },
  66. components: {},
  67. onLoad() {},
  68. onShow() {},
  69. methods: {
  70. },
  71. };
  72. </script>
  73. <style lang="scss" scoped>
  74. .cented-box{
  75. background: #F8F8F8;
  76. width: 100%;
  77. height: 100%;
  78. }
  79. .search-box{
  80. width: 100%;
  81. height: 102rpx;
  82. background: #FFFFFF;
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. .search{
  87. width: 690rpx;
  88. height: 70rpx;
  89. display: flex;
  90. align-items: center;
  91. background: #F8F8F8;
  92. border-radius: 33rpx;
  93. .search-img{
  94. width: 26rpx;
  95. height: 30rpx;
  96. margin-left: 20rpx;
  97. .search-img1{
  98. width: 100%;
  99. height: 100%;
  100. margin-top: 2rpx;
  101. }
  102. }
  103. .search-text{
  104. font-size: 28rpx;
  105. font-weight: 400;
  106. color: #999999;
  107. margin-left:10rpx;
  108. }
  109. }
  110. }
  111. .caseid-box{
  112. width: 100%;
  113. height: 204rpx;
  114. margin-top: 10rpx;
  115. background: #FFFFFF;
  116. display: flex;
  117. .caseid{
  118. flex: 1;
  119. height: 100%;
  120. text-align: center;
  121. margin-top: 13rpx;
  122. .caseid-img1{
  123. width: 134rpx;
  124. height: 134rpx;
  125. }
  126. .caseid-text{
  127. width: 100%;
  128. text-align: center;
  129. font-size: 24rpx;
  130. font-weight: 400;
  131. color: #333333;
  132. }
  133. }
  134. }
  135. .Pinspeak{
  136. width: 100%;
  137. height: 92rpx;
  138. border-bottom: 1rpx solid #E0E0E0;
  139. font-size: 32rpx;
  140. font-weight: 600;
  141. color: #333333;
  142. text-indent: 30rpx;
  143. line-height: 92rpx;
  144. background: #FFFFFF;
  145. margin-top: 20rpx;
  146. }
  147. .chented{
  148. width: 100%;
  149. padding-left: 30rpx;
  150. padding-right: 30rpx;
  151. background-color: #FFFFFF;
  152. .title{
  153. width: 100%;
  154. height: 90rpx;
  155. border-bottom: 1rpx solid #E0E0E0;
  156. display: flex;
  157. align-items: center;
  158. .title1{
  159. width: 6rpx;
  160. height: 30rpx;
  161. background: #2671E2;
  162. }
  163. .titletext{
  164. width: 90%;
  165. height: 30rpx;
  166. font-size: 30rpx;
  167. font-weight: 600;
  168. color: #333333;
  169. line-height: 30rpx;
  170. text-indent: 10rpx;
  171. }
  172. .titleimg{
  173. width: 8%;
  174. text-align: right;
  175. .titleimg1{
  176. width: 14rpx;
  177. height: 30rpx;
  178. }
  179. }
  180. }
  181. .chented-for{
  182. width: 100%;
  183. display: flex;
  184. flex-wrap: wrap;
  185. margin-top: -20rpx;
  186. border-bottom: 1rpx solid #E0E0E0;
  187. padding-bottom: 30rpx;
  188. .chented-che{
  189. width: 210rpx;
  190. height: 60rpx;
  191. background: #FFFFFF;
  192. border-radius: 4rpx;
  193. border: 1px solid #C9C9C9;
  194. text-align: center;
  195. line-height: 60rpx;
  196. font-size: 30rpx;
  197. font-weight: 400;
  198. color: #333333;
  199. margin-right: 20rpx;
  200. margin-top: 20rpx;
  201. }
  202. }
  203. }
  204. </style>