index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <view class="container">
  3. <view class="search-area">
  4. <u-search
  5. placeholder="搜索设备"
  6. v-model="keyword"
  7. shape="square"
  8. :clearabled="true"
  9. :show-action="true"
  10. action-text="搜索"
  11. :animation="true"
  12. search-icon-color="#000"
  13. color="#000"
  14. placeholder-color="#5c5b5b"
  15. @search="search"
  16. bgColor="#fff"
  17. height="40"
  18. @custom="search"></u-search>
  19. </view>
  20. <view class="study-box">
  21. <view class="title">
  22. 研究成果栏
  23. </view>
  24. <view class="list">
  25. <view class="study" v-for="(n, index) in 2" :key="index">
  26. 一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;
  27. 一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;一条研究成果&nbsp;
  28. </view>
  29. </view>
  30. </view>
  31. <view class="asset-box">
  32. <view class="title">
  33. 公开设备
  34. </view>
  35. <view class="list">
  36. <view class="asset" v-for="asset in assetList" @click="toDetail(asset)">
  37. <view class="left">
  38. <image class="image" :src="imgSrc(asset.img)" mode="aspectFit"></image>
  39. </view>
  40. <view class="right">
  41. <view class="name">
  42. {{asset.name}}
  43. </view>
  44. <view class="introduce">
  45. {{asset.introduce}}
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. import { assetList, getImage } from '@/api/visitor.js'
  55. export default {
  56. name: 'Visitor-Index',
  57. data() {
  58. return {
  59. assetList: []
  60. }
  61. },
  62. methods: {
  63. getAssetList() {
  64. assetList().then(res => {
  65. this.assetList = res
  66. })
  67. },
  68. imgSrc(src) {
  69. return getImage(src)
  70. },
  71. /** 搜索框 */
  72. search() {},
  73. toDetail(asset) {
  74. console.log('资产信息', asset);
  75. uni.navigateTo({
  76. url: '/pages/visitor/assetDetail/assetDetail?barCode=' + asset.barCode
  77. });
  78. }
  79. },
  80. onLoad() {
  81. this.getAssetList()
  82. }
  83. }
  84. </script>
  85. <style lang="scss">
  86. page{
  87. background-color: #f5f6fa;
  88. }
  89. .container{
  90. padding: 20rpx 24rpx;
  91. .study-box{
  92. margin-top: 20rpx;
  93. // min-height: 400rpx;
  94. background-color: #fff;
  95. border-radius: 20rpx;
  96. padding: 10rpx 20rpx;
  97. box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  98. .title{
  99. width: 100%;
  100. text-align: center;
  101. font-weight: bold;
  102. font-size: 36rpx;
  103. margin-bottom: 20rpx;
  104. }
  105. .study {
  106. line-height: 50rpx;
  107. }
  108. }
  109. .asset-box{
  110. margin-top: 40rpx;
  111. .title{
  112. font-weight: bold;
  113. font-size: 36rpx;
  114. margin-bottom: 20rpx;
  115. }
  116. .list{
  117. .asset {
  118. display: flex;
  119. background-color: #fff;
  120. align-items: center;
  121. height: 260rpx;
  122. border-radius: 20rpx;
  123. box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  124. padding: 30rpx;
  125. margin-bottom: 45rpx;
  126. .left {
  127. flex: 1;
  128. .image {
  129. width: 200rpx;
  130. }
  131. margin-right: 20rpx;
  132. }
  133. .right {
  134. flex: 4;
  135. .name {
  136. font-size: 42rpx;
  137. margin-bottom: 20rpx;
  138. overflow: hidden; /*超出部分隐藏*/
  139. white-space: nowrap; /*禁止换行*/
  140. text-overflow: ellipsis; /*省略号*/
  141. }
  142. .introduce {
  143. line-height: 50rpx;
  144. display: -webkit-box;
  145. -webkit-box-orient: vertical;
  146. -webkit-line-clamp: 4;
  147. overflow: hidden;
  148. }
  149. }
  150. }
  151. }
  152. }
  153. }
  154. </style>