goodsOrders.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view>
  3. <u-list class="list" width="100%" @scrolltolower="scrolltolower">
  4. <u-list-item v-for="(item, index) in orders" :key="index">
  5. <view class="item-box">
  6. <view class="goods-item">
  7. <u-row>
  8. <u-col span="5" @click="toDetails(item.id)">
  9. <u--image :showLoading="true" src="" width="270rpx" height="220rpx"></u--image>
  10. </u-col>
  11. <u-col span="7">
  12. <view class="t1 txt" @click="toDetails(item.id)">
  13. <text>{{item.goodsName}}</text>
  14. </view>
  15. <view class="txt">
  16. <text v-if="item.grossWeight">{{item.grossWeight}}</text>
  17. </view>
  18. <view class="txt" v-if="item.tradeAreaName">
  19. <u-tag style="width: 250rpx" :text="item.tradeAreaName" plain size="mini"></u-tag>
  20. </view>
  21. <view class="t4">
  22. <view class="price">{{item.price}}</view>
  23. <!-- 接受 商铺确认情况[0=待确认,1=已确认,2=拒绝]-->
  24. <view class="edit" @click="orderConfirm(item.id,1)">
  25. <u-icon color="#fff" name="edit-pen-fill" size="30"></u-icon>
  26. </view>
  27. <!-- 拒绝 -->
  28. <view class="delete" @click="orderConfirm(item.id,2)">
  29. <u-icon color="#fff" name="edit-pen-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. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. loadmoreStatus: 'loadmore',
  45. form: {},
  46. orders: [],
  47. }
  48. },
  49. onLoad() {
  50. this.getOrderTransitList()
  51. },
  52. methods: {
  53. // 订单列表
  54. getOrderTransitList() {
  55. this.form = {
  56. isOrders: 1,//是否已被下单[0=未被下单,1=已被下单]
  57. enterpriseConfirm: 0,//商铺确认情况[0=待确认,1=已确认,2=拒绝]
  58. goodsStatus: 1,//商品状态(0=下架,1=在售)
  59. }
  60. this.http.request({
  61. url: '/level-one-server/app/TbGoodsTransit/getTransitList',
  62. data: this.form,
  63. method: 'POST',
  64. success: resp => {
  65. console.log('resp',resp)
  66. this.orders = resp.data.data;
  67. this.orders.forEach((item, index) => {
  68. if (index === this.orders.length - 1) {
  69. this.loadmoreStatus = 'nomore'
  70. } else {
  71. this.loadmoreStatus = 'loadmore'
  72. }
  73. })
  74. }
  75. });
  76. },
  77. // 商家确认
  78. orderConfirm(id,status) {
  79. this.form = {
  80. id: id,
  81. //isOrders: 0,//是否已被下单[0=未被下单,1=已被下单]
  82. enterpriseConfirm: status,//商铺确认情况[0=待确认,1=已确认,2=拒绝]
  83. //goodsStatus: 1,//商品状态(0=下架,1=在售)
  84. }
  85. this.http.request({
  86. url: '/level-one-server/app/TbGoodsTransit/update',
  87. data: this.form,
  88. method: 'POST',
  89. success: resp => {
  90. console.log('resp',resp)
  91. uni.showToast({ title: '操作成功' });
  92. }
  93. });
  94. },
  95. scrolltolower() {
  96. this.getOrderTransitList()
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. .list {
  103. height: auto;
  104. border-radius: 10rpx;
  105. margin: 15rpx;
  106. }
  107. .goods-item {
  108. margin-bottom: 8rpx;
  109. }
  110. .item-box {
  111. height: 230rpx;
  112. width: 90%;
  113. padding: 20rpx;
  114. background-color: #fff;
  115. border: 1rpx #FFF solid;
  116. margin: 10rpx 0rpx;
  117. border-radius: 10rpx;
  118. }
  119. .txt {
  120. /* height: 50rpx; */
  121. margin-bottom: 20rpx;
  122. }
  123. .t1 {
  124. font-size: 32rpx;
  125. font-weight: bold;
  126. word-wrap: break-word;
  127. position: relative;
  128. top: 1rpx;
  129. right: 5rpx;
  130. }
  131. .t4 {
  132. display: flex;
  133. position: relative;
  134. bottom: 1rpx;
  135. right: 5rpx;
  136. }
  137. .price {
  138. color: #ef732a;
  139. width: 400rpx;
  140. font-weight: bold;
  141. }
  142. .edit {
  143. background-color: #0081ff;
  144. width: 60rpx;
  145. height: 60rpx;
  146. border-radius: 30rpx;
  147. text-align: center;
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. }
  152. .delete {
  153. background-color: indianred;
  154. width: 60rpx;
  155. height: 60rpx;
  156. border-radius: 30rpx;
  157. text-align: center;
  158. display: flex;
  159. align-items: center;
  160. justify-content: center;
  161. }
  162. </style>