collect.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <view class="content">
  3. <view class="tabs hflex acenter jbetween">
  4. <block v-for="(item,index) in tabs" :key="index">
  5. <view class="tabs_item" :class="active == item.id? 'active': ''" @click="changeTabs(item.id)">{{item.text}}</view>
  6. </block>
  7. </view>
  8. <view class="">
  9. <view v-if="active == 1">
  10. <block v-for="(item,index) in pageList" :key="index">
  11. <view class="order_box" @click="toDetail(item.index)">
  12. <view class="order_top hflex acenter">
  13. <image src="/static/images/comment/order_type1.png" v-if="item.type == 0" class="order_img"></image>
  14. <image src="/static/images/comment/order_type2.png" v-if="item.type == 1" class="order_img"></image>
  15. <image src="/static/images/comment/order_type3.png" v-if="item.type == 2" class="order_img"></image>
  16. <image src="/static/images/comment/order_type4.png" v-if="item.type == 3" class="order_img"></image>
  17. <view class="order_title">{{item.name}}</view>
  18. </view>
  19. <view class="">
  20. <u-read-more closeText="展开更多" :shadowStyle="shadowStyle" ref="uReadMore" :toggle="true" openText="收起" showHeight="150" backgroundImage="none">
  21. <block v-for="(item2,inx) in item.order" :key="inx" @load="load">
  22. <view class="order_item">
  23. <view class="item_name">{{item2.name}}</view>
  24. <view class="hflex acenter ">
  25. <view class="text_style1 padR-20" >规格:{{item2.norm}}</view>
  26. <view class="text_style1">数量:{{item2.num}}</view>
  27. </view>
  28. </view>
  29. </block>
  30. </u-read-more>
  31. </view>
  32. <view class="hflex acenter jbetween order_bottom">
  33. <view class="text_style1">发布时间</view>
  34. <view class="text_style1">{{item.date}}</view>
  35. </view>
  36. </view>
  37. </block>
  38. </view>
  39. <view v-if="active == 2" style="background-color: #fff;min-height: calc(100vh - 80rpx);">
  40. <block v-for="(item,index) in pageList1" :key="index">
  41. <view class="item_box hflex acenter jbetween">
  42. <view class="img_box">
  43. <image :src="item.img" class="img"></image>
  44. </view>
  45. <view class="vflex img_right">
  46. <view class="hflex acenter jbetween">
  47. <view class="item_name">{{item.name}}</view>
  48. <view class="item_type">{{item.cc}}</view>
  49. </view>
  50. <view class="text_style1">{{item.zhcc}} | {{item.cz}} | {{item.jxg}}</view>
  51. <view class="text_style1">{{item.juli}} | {{item.addr}}</view>
  52. </view>
  53. </view>
  54. </block>
  55. </view>
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. import $api from '@/static/js/api.js'
  61. var that = ''
  62. export default {
  63. data() {
  64. return {
  65. tabs: [
  66. {
  67. id: 1,
  68. text: '采购订单'
  69. },
  70. {
  71. id: 2,
  72. text: '船厂'
  73. },
  74. ],
  75. active: 1,
  76. pageList: [
  77. ],
  78. shadowStyle: {
  79. backgroundImage: "none",
  80. },
  81. }
  82. },
  83. onLoad() {
  84. that = this
  85. that.getList()
  86. },
  87. methods: {
  88. getList() {
  89. $api.req({
  90. url: '/data/api.auth.Center/mycollection',
  91. method: 'POST',
  92. data: {
  93. type: that.active + 2
  94. }
  95. }, function(res) {
  96. if(res.code == 1) {
  97. that.pageList = res.data.data
  98. }
  99. })
  100. },
  101. // 切换tabs
  102. changeTabs(id) {
  103. that.active = id
  104. that.getList()
  105. },
  106. load() {
  107. this.$refs.uReadMore.init();
  108. },
  109. },
  110. }
  111. </script>
  112. <style lang="scss" scoped>
  113. .content {
  114. background: #F4F4F4;
  115. .tabs {
  116. width: 100%;
  117. background-color: #fff;
  118. box-sizing: border-box;
  119. padding: 14rpx 30rpx;
  120. // margin: 14rpx 0 46rpx;
  121. .tabs_item {
  122. width: 45%;
  123. text-align: center;
  124. font-size: 32rpx;
  125. color: #222;
  126. font-weight: 400;
  127. }
  128. .active {
  129. font-weight: 500;
  130. position: relative;
  131. }
  132. .active::after {
  133. position: absolute;
  134. content: "";
  135. width: 48rpx;
  136. height: 8rpx;
  137. background-color: #506Dff;
  138. border-radius: 4rpx;
  139. bottom: -14rpx;
  140. left: 42%;
  141. }
  142. }
  143. .box {
  144. width: 100%;
  145. background-color: #fff;
  146. box-sizing: border-box;
  147. padding: 14rpx 30rpx;
  148. margin: 20rpx 0 0;
  149. }
  150. .order_box {
  151. width: 100%;
  152. margin: 20rpx 0 ;
  153. background: #FFFFFF;
  154. border-radius: 10px;
  155. box-sizing: border-box;
  156. padding: 28rpx 20rpx;
  157. .order_top {
  158. width: 100%;
  159. /* .order_type {
  160. width: 108rpx;
  161. height: 36rpx;
  162. text-align: center;
  163. line-height: 36rpx;
  164. font-size: 20rpx;
  165. color: #fff;
  166. margin-right: 5rpx;
  167. border-radius: 4rpx;
  168. }
  169. .type1 {
  170. background-color: #506dff;
  171. } */
  172. .order_img {
  173. width: 108rpx;
  174. height: 36rpx;
  175. margin-right: 5rpx;
  176. }
  177. .order_title {
  178. font-size: 32rpx;
  179. font-weight: 500;
  180. color: #222222;
  181. }
  182. }
  183. .order_item {
  184. width: 100%;
  185. padding: 20rpx 0;
  186. border-bottom: 1rpx solid #F4F4F4;
  187. }
  188. .item_name {
  189. font-size: 28rpx;
  190. font-weight: 400;
  191. color: #222222;
  192. padding: 20rpx 0;
  193. }
  194. .order_bottom {
  195. width: 100%;
  196. padding: 20rpx 0 0;
  197. .more {
  198. // width: 140rpx;
  199. // height: 48rpx;
  200. box-sizing: border-box;
  201. padding: 10rpx 20rpx;
  202. border-radius: 24rpx;
  203. border: 1px solid #979797;
  204. font-size: 20rpx;
  205. font-weight: 400;
  206. color: #888888;
  207. }
  208. }
  209. .padR-20 {
  210. padding-right: 20rpx;
  211. }
  212. }
  213. .text_style1 {
  214. font-size: 24rpx;
  215. font-weight: 400;
  216. color: #888888;
  217. }
  218. .item_box {
  219. width: 690rpx;
  220. margin: 0 auto;
  221. padding: 28rpx 0;
  222. border-bottom: 1rpx solid #F4F4F4;
  223. .img_box {
  224. width: 136rpx;
  225. height: 136rpx;
  226. .img {
  227. width: 136rpx;
  228. height: 136rpx;
  229. border-radius: 8rpx;
  230. }
  231. }
  232. .img_right {
  233. width: calc(100% - 136rpx);
  234. padding-left: 20rpx;
  235. .item_name {
  236. font-size: 30rpx;
  237. font-weight: 500;
  238. color: #333333;
  239. line-height: 42rpx;
  240. }
  241. .item_type {
  242. background: #506DFF;
  243. border-radius: 2px;
  244. box-sizing: border-box;
  245. padding: 8rpx 10rpx;
  246. font-size: 20rpx;
  247. font-weight: 400;
  248. color: #FFFFFF;
  249. }
  250. }
  251. }
  252. .item_box:nth-last-child(1) {
  253. border: none;
  254. }
  255. }
  256. </style>