exhibit-detail.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <view class="exhibit-detail exhibitor-detail">
  3. <nav-bar title="展品介绍" @init="onInitNavbar"></nav-bar>
  4. <u-scroll-view>
  5. <view class="main-container">
  6. <view class="exhibit-image">
  7. <image src="/static/img/example/exhibit.png" />
  8. <view class="exhibit-tag">2025新品</view>
  9. </view>
  10. <view class="exhibit-name">汽车连接器 86W MLK 1,2 SD-HOLDER</view>
  11. <view class="exhibit-desc">适用于连接器、连接器系统的生产加工,汽车零部件、电子元器件、机械设备及其零配件、工具、模具、连接器产品及其生产设备的批发、进出口、佣金代理(拍卖除外),并提供相关配套服务(包括上门安装、保养、维修服务)。</view>
  12. <view class="exhibit-tags exhibitor-tags">
  13. <view class="exhibitor-tags-category">产品分类:</view>
  14. <view class="exhibitor-tags-list">
  15. <view class="exhibitor-tag">柔性与印刷电子</view>
  16. <view class="exhibitor-tag">电子制造服务</view>
  17. <view class="exhibitor-tag">PCB焊接和连接技术</view>
  18. <view class="exhibitor-tag">线束和连接器</view>
  19. <view class="exhibitor-tag">柔性与印刷电子</view>
  20. <view class="exhibitor-tag">电子制造服务</view>
  21. </view>
  22. </view>
  23. <view class="exhibit-tags exhibitor-tags">
  24. <view class="exhibitor-tags-category">应用领域:</view>
  25. <view class="exhibitor-tags-list"></view>
  26. <view class="exhibitor-tag">电脑和周边设备</view>
  27. <view class="exhibitor-tag">新能源</view>
  28. </view>
  29. <view class="exhibit-operation exhibitor-operation">
  30. <view class="exhibitor-views">浏览:30911</view>
  31. <view class="exhibitor-action">
  32. <view>
  33. <view class="iconfont icon-xiaochengxu-renqiicon"></view>
  34. <view>人气:11192</view>
  35. </view>
  36. <view>
  37. <view class="iconfont icon-zhuanfa"></view>
  38. <view>分享</view>
  39. </view>
  40. <view>
  41. <view class="iconfont icon-Favourites-Add-Large"></view>
  42. <view>收藏</view>
  43. </view>
  44. <view>
  45. <view class="iconfont icon-Heart"></view>
  46. <view>点赞</view>
  47. </view>
  48. <view>
  49. <view class="iconfont icon-xiaochengxu-toupiaoicon"></view>
  50. <view>投票</view>
  51. </view>
  52. </view>
  53. </view>
  54. <u-panel title="展商信息">
  55. <view class="exhibitor-card">
  56. <view class="exhibitor-info">
  57. <view class="exhibitor-logo">
  58. <image src="/static/img/example/kostal_log.png" mode="widthFix" />
  59. </view>
  60. <view class="exhibitor-name-cn">科世达(上海)连接器有限公司</view>
  61. <view class="exhibitor-name-en">Leopold Kostal GmbH & Co. KG</view>
  62. <view class="exhibitor-detail-link">
  63. <van-button type="primary" @click="onClickDetail">
  64. <template>
  65. <view>点击了解展商更多信息</view> <view class="arrow iconfont icon-right-s"></view>
  66. </template>
  67. </van-button>
  68. </view>
  69. </view>
  70. <view class="exhibitor-number">
  71. <view class="exhibitor-number-label">我们的展位号</view>
  72. <view class="exhibitor-number-text">E1馆 1101</view>
  73. </view>
  74. </view>
  75. </u-panel>
  76. </view>
  77. </u-scroll-view>
  78. </view>
  79. </template>
  80. <script>
  81. export default {
  82. options: {
  83. // styleIsolation: 'shared'
  84. },
  85. components: {
  86. },
  87. computed: {},
  88. data() {
  89. return {}
  90. },
  91. created() {
  92. },
  93. methods: {
  94. onClickDetail(e) {
  95. uni.navigateTo({
  96. url: '/pages/exhibitor/detail'
  97. })
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss">
  103. @import "@/static/style/exhibitor-detail.scss";
  104. .exhibit-detail{
  105. .exhibit-image{
  106. position: relative;
  107. height: 438rpx;
  108. background-color: #FFFFFF;
  109. border-radius: 5rpx;
  110. border: 1rpx solid #D6D6D6;
  111. .exhibit-tag{
  112. position: absolute;
  113. top: 28rpx;
  114. left: 29rpx;
  115. padding: 12rpx 22rpx;
  116. color: $textActionColor;
  117. font-size: $fontSize0;
  118. background-color: lighten($textActionColor, 43%);
  119. }
  120. }
  121. .exhibitor-detail-link{
  122. .van-button__text{
  123. font-size: 18rpx;
  124. }
  125. }
  126. .exhibit-name{
  127. margin-top: 28rpx;
  128. font-family: Poppins, Poppins;
  129. font-weight: bold;
  130. font-size: $fontSize5;
  131. color: #000000;
  132. line-height: 42rpx;
  133. }
  134. .exhibit-desc{
  135. margin-top: 18rpx;
  136. font-family: Poppins, Poppins;
  137. font-size: $fontSize1;
  138. color: #555555;
  139. line-height: 35rpx;
  140. }
  141. .exhibitor-card{
  142. display: flex;
  143. background-color: #FFFFFF;
  144. .exhibitor-info{
  145. padding: 36rpx;
  146. }
  147. .exhibitor-logo{
  148. width: 194rpx;
  149. }
  150. .exhibitor-detail-link{
  151. margin-top: 36rpx;
  152. }
  153. .exhibitor-name-cn,.exhibitor-name-en{
  154. font-family: Poppins, Poppins;
  155. font-size: $fontSize2;
  156. color: #000000;
  157. line-height: 28rpx;
  158. }
  159. .exhibitor-name-en{
  160. margin-top: 10rpx;
  161. font-size: $fontSize1;
  162. }
  163. .exhibitor-number{
  164. @extend .display-flex-center;
  165. flex-direction: column;
  166. width: 267rpx;
  167. background-color: $buttonPrimaryColor;
  168. color: #FFFFFF;
  169. }
  170. .exhibitor-number-text{
  171. width: 161rpx;
  172. text-align: center;
  173. font-family: Poppins, Poppins;
  174. font-weight: bold;
  175. font-size: 55rpx;
  176. line-height: 64rpx;
  177. margin-top: 30rpx;
  178. }
  179. .exhibitor-number-label{
  180. font-family: Poppins, Poppins;
  181. font-size: $fontSize2;
  182. line-height: 28rpx;
  183. color: rgba(255, 255, 255, 0.74);
  184. }
  185. }
  186. .u-panel{
  187. margin-top: 54rpx;
  188. padding: 0;
  189. .u-panel-title{
  190. &:after{
  191. display: none;
  192. }
  193. }
  194. }
  195. }
  196. </style>