oneMarket.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <view>
  3. <!-- <image src="../../static/images/top-bg.png"></image> -->
  4. <!-- <navigation-bar :title="title" background-color="#fff" front-color="#000000" :left-button="null" /> -->
  5. <uni-nav-bar color="#fff" height="60" left-icon="back" @clickLeft="back()" right-icon="list" :border="false" backgroundColor="#0081ff" :title="title" />
  6. </u-navbar>
  7. <u-list v-if="active==1" class="list" width="100%" @scrolltolower="scrolltolower">
  8. <u-list-item v-for="(item, index) in goods" :key="index">
  9. <view class="item-box">
  10. <view class="goods-item">
  11. <u-row>
  12. <u-col span="5" @click="toDetails(item.id)">
  13. <u--image :showLoading="true" src="" width="270rpx" height="220rpx"></u--image>
  14. </u-col>
  15. <u-col span="7">
  16. <view class="t1 txt" @click="toDetails(item.id)">
  17. <text>{{item.goodsName}}</text>
  18. <!-- <text>[老板力荐]鲜活小龙虾(帮剪头去虾线)约250g/份</text> -->
  19. </view>
  20. <view class="txt">
  21. <text v-if="item.grossWeight">{{item.grossWeight}}吨</text>
  22. </view>
  23. <view class="txt" v-if="item.tradeAreaName">
  24. <u-tag style="width: 250rpx" :text="item.tradeAreaName" plain size="mini"></u-tag>
  25. </view>
  26. <view class="t4">
  27. <view class="price">¥{{item.price}}</view>
  28. <view class="car">
  29. <u-icon color="#fff" name="shopping-cart-fill" size="30"></u-icon>
  30. </view>
  31. </view>
  32. </u-col>
  33. </u-row>
  34. </view>
  35. </view>
  36. </u-list-item>
  37. </u-list>
  38. <order v-if="active==3"></order>
  39. <view class="tab">
  40. <view :class="active==item.id ? 'active-btn' : 'tabBtn'" v-for="item in tabList" :key="item.id"
  41. @click="tabClick(item.id)">{{item.name}}</view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. loadmoreStatus: 'loadmore',
  50. goods: [],
  51. active: 1,
  52. title: '一级市场',
  53. tabList: [{
  54. id: 1,
  55. name: "市场"
  56. },
  57. {
  58. id: 2,
  59. name: "购物车"
  60. },
  61. {
  62. id: 3,
  63. name: "订单列表"
  64. }
  65. ]
  66. }
  67. },
  68. onLoad() {
  69. this.getGoodsList()
  70. },
  71. // onShow() {
  72. // var a = document.getElementsByClassName('uni-page-head-hd')[0]
  73. // a.style.display = 'none';
  74. // },
  75. methods: {
  76. getGoodsList() {
  77. this.http.request({
  78. url: '/level-one-server/TbGoodsTransit/getTransitList',
  79. success: res => {
  80. this.goods = res.data.data;
  81. this.goods.forEach((item, index) => {
  82. if (index === this.goods.length - 1) {
  83. this.loadmoreStatus = 'nomore'
  84. } else {
  85. this.loadmoreStatus = 'loadmore'
  86. }
  87. })
  88. }
  89. });
  90. },
  91. scrolltolower() {
  92. this.getGoodsList()
  93. },
  94. toDetails(id) {
  95. this.$common.to('/pages/goodsDetails/goodsDetails?id=' + id)
  96. },
  97. change(index) {
  98. console.log(index)
  99. this.active = index
  100. },
  101. tabClick(id) {
  102. this.active = id
  103. if (id == 1) {
  104. this.title = '一级市场'
  105. } else if (id == 2) {
  106. this.title = '购物车'
  107. } else {
  108. this.title = '订单列表'
  109. }
  110. },
  111. back() {
  112. uni.navigateBack({
  113. delta: 1
  114. })
  115. },
  116. rightClick() {
  117. console.log('rightClick');
  118. },
  119. }
  120. }
  121. </script>
  122. <style>
  123. page {
  124. background-image: url(../../static/images/top-bg.png);
  125. background-size: 100% 400rpx;
  126. background-repeat: no-repeat;
  127. background-position: top;
  128. background-color: #f3f4f6;
  129. }
  130. .list {
  131. height: auto;
  132. border-radius: 10rpx;
  133. margin: 15rpx;
  134. }
  135. .tab {
  136. position: fixed;
  137. bottom: 1rpx;
  138. width: 100%;
  139. height: 100rpx;
  140. display: flex;
  141. align-items: center;
  142. justify-content: center;
  143. border-top: #CFCFCF 1rpx solid;
  144. }
  145. .goods-item {
  146. margin-bottom: 8rpx;
  147. }
  148. .item-box {
  149. height: 230rpx;
  150. width: 90%;
  151. padding: 20rpx;
  152. background-color: #fff;
  153. border: 1rpx #FFF solid;
  154. margin: 10rpx 0rpx;
  155. border-radius: 10rpx;
  156. }
  157. .txt{
  158. /* height: 50rpx; */
  159. margin-bottom: 20rpx;
  160. }
  161. .t1{
  162. font-size: 32rpx;
  163. font-weight: bold;
  164. word-wrap: break-word;
  165. position: relative;
  166. top: 1rpx;
  167. right: 5rpx;
  168. }
  169. .t4{
  170. display: flex;
  171. position: relative;
  172. bottom: 1rpx;
  173. right: 5rpx;
  174. }
  175. .price{
  176. color: #ef732a;
  177. width: 400rpx;
  178. font-weight: bold;
  179. }
  180. .car{
  181. background-color: #0081ff;
  182. width: 60rpx;
  183. height: 60rpx;
  184. border-radius: 30rpx;
  185. text-align: center;
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. }
  190. .tabBtn {
  191. width: 35%;
  192. height: 100%;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. margin: 0 30rpx;
  197. }
  198. .active-btn {
  199. width: 35%;
  200. height: 100%;
  201. display: flex;
  202. align-items: center;
  203. justify-content: center;
  204. color: #fff;
  205. background-color: #00BFFF;
  206. }
  207. </style>