order.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view>
  3. <u-tabs lineWidth="50" :list="list" itemStyle="height:60rpx;width: 100rpx;" :is-scroll="false" :current="current"
  4. @change="change"></u-tabs>
  5. <u-list style="margin-top: 10rpx" @scrolltolower="scrolltolower">
  6. <u-list-item v-for="(item, index) in orderList" :key="index">
  7. <view class="item-box">
  8. <view class="goods-item">
  9. <u-row>
  10. <u-col span="10">
  11. {{item.shopName}}
  12. </u-col>
  13. <u-col span="2" v-if="item.finishStatus">
  14. 已完成
  15. </u-col>
  16. <u-col span="2" v-else-if="item.resaleStatus">
  17. 转售中
  18. </u-col>
  19. <u-col span="2" v-else>
  20. 待确认
  21. </u-col>
  22. </u-row>
  23. </view>
  24. <view class="goods-item">
  25. <u-row>
  26. <u-col span="4">
  27. <u--image :showLoading="true" :src="src" width="230rpx" height="210rpx"></u--image>
  28. </u-col>
  29. <u-col span="5">
  30. <u--text lines="1" size="18" :text="item.goodsNames"></u--text>
  31. <u--text prefixIcon="map" style="margin-top: 40rpx;" lineHeight="70" iconStyle="font-size: 20px" lines="1" :text="item.tradeAreaName"></u--text>
  32. </u-col>
  33. <u-col span="3">
  34. <u--text color="#FF4500" align="center" lineHeight="50" size="20" lines="1" :text="`¥${item.totalPrice}`"></u--text>
  35. <u--text lines="1" align="center" :text="`${item.totalWeight}吨`"></u--text>
  36. </u-col>
  37. </u-row>
  38. </view>
  39. <view class="goods-item">
  40. <u-row>
  41. <u-col span="9">
  42. {{item.tradeTime}}
  43. </u-col>
  44. <u-col span="3">
  45. <u-button type="error" size="mini" text="通知商家"></u-button>
  46. </u-col>
  47. </u-row>
  48. </view>
  49. </view>
  50. </u-list-item>
  51. </u-list>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. list: [{
  59. name: '全部'
  60. }, {
  61. name: '待确认'
  62. }, {
  63. name: '申报中'
  64. }, {
  65. name: '已完成'
  66. }, {
  67. name: '转售中'
  68. }, {
  69. name: '已取消'
  70. }],
  71. current: 0,
  72. orderList: [],
  73. status: 0
  74. }
  75. },
  76. onLoad() {
  77. this.getOrderList()
  78. },
  79. methods: {
  80. change(item) {
  81. this.current = item.index
  82. },
  83. getOrderList() {
  84. this.http.request({
  85. url: '/level-one-server/app/TbOrder/getList',
  86. success: res => {
  87. this.orderList = res.data.data;
  88. }
  89. });
  90. }
  91. }
  92. }
  93. </script>
  94. <style lang="scss">
  95. page{
  96. padding: 15rpx;
  97. }
  98. .goods-item{
  99. margin-bottom: 8rpx;
  100. }
  101. .item-box{
  102. height: 300rpx;
  103. padding: 10rpx;
  104. border: 1rpx #888 solid;
  105. margin: 10rpx 0rpx;
  106. border-radius: 10rpx;
  107. }
  108. </style>