index.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="order">
  3. <view class="fixed-box">
  4. <capsule :showBorder="true" bgColor="#FFFFFF">
  5. <template v-slot:top>
  6. <view class="order-box">订单列表</view>
  7. </template>
  8. </capsule>
  9. <view class="order-top">
  10. <view
  11. class="search-box"
  12. @click="navigateTo('/order_module/searchOrder/index')"
  13. >
  14. <view class="search-icon">
  15. <tui-icon name="search-2" :size="18" color="#999999"></tui-icon>
  16. </view>
  17. <text>请输入订单号/手机号</text>
  18. </view>
  19. <view class="order-state">
  20. <scroll-view scroll-x="true" class="scroll-X">
  21. <view
  22. class="scroll-item"
  23. v-for="(item, index) in orderState"
  24. :key="index"
  25. :class="item.state == orderIdx ? 'act' : ''"
  26. @click="changeState(item.state)"
  27. >{{ item.title }}</view
  28. >
  29. </scroll-view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="order-container" v-if="orderList.length > 0">
  34. <view class="order-list">
  35. <view
  36. class="order-item"
  37. v-for="item in orderList"
  38. :key="item.orderId"
  39. @click="goOrderDetail(item)"
  40. >
  41. <view class="order-number">
  42. <view class="number">订单编号:{{ item.orderFormid }}</view>
  43. <view class="number-icon">
  44. <text>详情</text>
  45. <tui-icon
  46. name="arrowright"
  47. :size="20"
  48. color="#999999"
  49. style="padding: 0"
  50. ></tui-icon>
  51. </view>
  52. </view>
  53. <view class="text-info">用户昵称:{{ item.customerName }}</view>
  54. <view class="text-info">用户手机号:{{ item.customerPhone }}</view>
  55. <view class="commodity-list">
  56. <view
  57. class="commodity-item"
  58. v-for="item2 in item.products"
  59. :key="item2.orderProductId"
  60. >
  61. <view class="item-left">
  62. <view class="left-image">
  63. <image :src="item2.image" />
  64. </view>
  65. <view class="left-text">
  66. <view class="text-title">{{ item2.productName }}</view>
  67. <template v-if="item2.productName == '扫码付款商品'">
  68. <view class="text-price">扫码付款商品</view>
  69. </template>
  70. <template v-else>
  71. <view class="text-price">小份</view>
  72. <view class="text-price">x1</view>
  73. </template>
  74. </view>
  75. </view>
  76. <view class="item-right">¥{{ item2.productPrice }}</view>
  77. </view>
  78. </view>
  79. <view class="gifts">
  80. <view class="gifs-left">赠送代金券</view>
  81. <view class="gifs-right">¥{{ item.presenterVoucher }}</view>
  82. </view>
  83. <view class="all-price">总价¥{{ item.price }}</view>
  84. <view class="border-box"></view>
  85. <view class="order-state">
  86. <text v-if="item.state == 1">待付款</text>
  87. <text v-if="item.state == 2">待发货</text>
  88. <text v-if="item.state == 3">待收货</text>
  89. <text v-if="item.state == 4">已完成</text>
  90. <text v-if="item.state == 5">交易关闭(已取消)</text>
  91. <text v-if="item.state == 6">待成团</text>
  92. <text v-if="item.state == 7">待售后</text>
  93. <text v-if="item.state == 8" :style="{ color: '#EA1717' }"
  94. >待核销(未付款)</text
  95. >
  96. <text v-if="item.state == 9">待核销(已付款)</text>
  97. <text v-if="item.state == 10">已核销</text>
  98. </view>
  99. </view>
  100. </view>
  101. </view>
  102. <view class="order-empty" v-else>
  103. <image src="@/static/image/order/empty.png" />
  104. <view class="empty-title">暂无订单信息...</view>
  105. <!-- <view class="empty-info">有订单信息您会在这边看到的</view> -->
  106. </view>
  107. </view>
  108. </template>
  109. <script>
  110. import { orderGetAll } from "@/config/index.js";
  111. export default {
  112. created() {
  113. this.getOrderList();
  114. },
  115. data() {
  116. return {
  117. orderState: [
  118. {
  119. title: "全部",
  120. state: "",
  121. },
  122. {
  123. title: "未付款",
  124. state: 8,
  125. },
  126. {
  127. title: "已付款",
  128. state: 9,
  129. },
  130. {
  131. title: "已核销",
  132. state: 10,
  133. },
  134. {
  135. title: "已取消",
  136. state: 5,
  137. },
  138. {
  139. title: "售后订单",
  140. },
  141. ],
  142. orderIdx: 0,
  143. // 请求订单参数
  144. serachParams: {
  145. afterState: "",
  146. dates: [],
  147. page: 1,
  148. pageSize: 10,
  149. search: "",
  150. searchType: "1",
  151. state: "",
  152. },
  153. orderList: [],
  154. total:0
  155. };
  156. },
  157. methods: {
  158. // 状态修改
  159. changeState(state) {
  160. this.orderIdx = state;
  161. this.serachParams.state = state;
  162. this.orderList = [];
  163. // 请求新的数据
  164. this.getOrderList();
  165. },
  166. // 获取订单列表
  167. async getOrderList(flag) {
  168. this.$loading.show("加载中!");
  169. try {
  170. if (flag) {
  171. let { data } = await orderGetAll(this.serachParams);
  172. this.orderList = [...this.orderList, ...data.list];
  173. } else {
  174. let { data } = await orderGetAll(this.serachParams);
  175. this.orderList = data.list;
  176. this.total = data.total;
  177. }
  178. } catch (error) {
  179. } finally {
  180. this.$loading.hide();
  181. }
  182. },
  183. // 去到订单详情
  184. goOrderDetail(item) {
  185. this.navigateTo(
  186. `/order_module/orderDetail/index?orderId=${item.orderId}`
  187. );
  188. },
  189. },
  190. // 触底加载
  191. onReachBottom() {
  192. if(this.orderList.length >= this.total){
  193. this.$showToast("没有更多数据了");
  194. return
  195. }
  196. this.serachParams.page++;
  197. this.getOrderList();
  198. },
  199. };
  200. </script>
  201. <style lang="scss" scoped>
  202. @import "./index.scss";
  203. </style>