oneMarket.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view>
  3. <navigation-bar :title="title" background-color="#fff" front-color="#000000" :left-button="null" />
  4. <u-list v-if="active==1" class="list" width="100%" @scrolltolower="scrolltolower">
  5. <u-list-item v-for="(item, index) in goods" :key="index">
  6. <view class="card" @click="toDetails(item.id)">
  7. <view class="card-body">
  8. <image
  9. src="https://img11.360buyimg.com/n7/jfs/t1/94448/29/2734/524808/5dd4cc16E990dfb6b/59c256f85a8c3757.jpg"
  10. mode="aspectFill" class="img"></image>
  11. <view class="txt">
  12. <view style="font-size: 30rpx;height: 140rpx;">{{item.goodsName}}</view>
  13. <view class="piece">{{item.price}} 元</view>
  14. </view>
  15. </view>
  16. </view>
  17. </u-list-item>
  18. </u-list>
  19. <order v-if="active==3"></order>
  20. <view class="tab">
  21. <view :class="active==item.id ? 'active-btn' : 'tabBtn'" v-for="item in tabList" :key="item.id" @click="tabClick(item.id)">{{item.name}}</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. loadmoreStatus: 'loadmore',
  30. goods: [],
  31. active: 1,
  32. title: '一级市场',
  33. tabList: [
  34. {
  35. id: 1,
  36. name: "市场"
  37. },
  38. {
  39. id: 2,
  40. name: "购物车"
  41. },
  42. {
  43. id: 3,
  44. name: "订单列表"
  45. }
  46. ]
  47. }
  48. },
  49. onLoad() {
  50. this.getGoodsList()
  51. },
  52. // onShow() {
  53. // var a = document.getElementsByClassName('uni-page-head-hd')[0]
  54. // a.style.display = 'none';
  55. // },
  56. methods: {
  57. getGoodsList() {
  58. this.http.request({
  59. url: '/level-one-server/TbGoodsTransit/getTransitList',
  60. success: res => {
  61. this.goods = res.data.data;
  62. this.goods.forEach((item, index) => {
  63. if (index === this.goods.length - 1) {
  64. this.loadmoreStatus = 'nomore'
  65. } else {
  66. this.loadmoreStatus = 'loadmore'
  67. }
  68. })
  69. }
  70. });
  71. },
  72. scrolltolower() {
  73. this.getGoodsList()
  74. },
  75. toDetails(id) {
  76. this.$common.to('/pages/goodsDetails/goodsDetails?id=' + id)
  77. },
  78. change(index) {
  79. console.log(index)
  80. this.active = index
  81. },
  82. tabClick(id) {
  83. this.active = id
  84. if(id==1) {
  85. this.title='一级市场'
  86. }else if(id==2) {
  87. this.title='购物车'
  88. } else{
  89. this.title='订单列表'
  90. }
  91. }
  92. }
  93. }
  94. </script>
  95. <style>
  96. .list {
  97. height: auto;
  98. border-radius: 10rpx;
  99. background-color: #fff;
  100. }
  101. .card {
  102. padding: 10rpx;
  103. }
  104. .card-body {
  105. display: flex;
  106. height: 300rpx;
  107. width: 100%;
  108. /* border: #888 1rpx solid; */
  109. box-shadow: 1rpx 1rpx #888;
  110. border-radius: 10rpx;
  111. }
  112. .img {
  113. height: 300rpx;
  114. width: 300rpx;
  115. margin-right: 10rpx;
  116. }
  117. .txt {
  118. padding: 10rpx;
  119. width: 300rpx;
  120. }
  121. .piece {
  122. margin: 50rpx 10rpx;
  123. color: red;
  124. position: relative;
  125. top: 50rpx;
  126. /* left: 5rpx; */
  127. }
  128. .tab{
  129. position: absolute;
  130. bottom: 1rpx;
  131. width: 100%;
  132. height: 100rpx;
  133. display: flex;
  134. align-items: center;
  135. justify-content: center;
  136. border-top: #CFCFCF 1rpx solid;
  137. }
  138. .tabBtn{
  139. width: 35%;
  140. height: 100%;
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. margin: 0 30rpx;
  145. }
  146. .active-btn{
  147. width: 35%;
  148. height: 100%;
  149. display: flex;
  150. align-items: center;
  151. justify-content: center;
  152. color: #fff;
  153. background-color: #00BFFF;
  154. }
  155. </style>