orderForm.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <view>
  3. <u-navbar @leftClick="rightClick" bgColor="#f4f4f4" :autoBack="true">
  4. <view class="tab" slot="center">
  5. <view
  6. style="
  7. width: 450rpx;
  8. margin-right: 150rpx;
  9. background-color: #fff;
  10. border-radius: 50rpx;
  11. "
  12. >
  13. <u--input
  14. placeholder="搜索我的订单"
  15. border="surround"
  16. shape="circle"
  17. v-model="keywords"
  18. @change="searchOrder"
  19. class="inp"
  20. ></u--input>
  21. </view>
  22. </view>
  23. </u-navbar>
  24. <view class="content">
  25. <view class="top-tab">
  26. <view
  27. :class="{ commodity: follow == '' }"
  28. class="tab"
  29. @click="tabSwitch('')"
  30. >
  31. 全部
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 'unpaid' }"
  35. class="tab"
  36. @click="tabSwitch('unpaid')"
  37. >
  38. 待付款
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 'unreview' }"
  42. class="tab"
  43. @click="tabSwitch('unreview')"
  44. >
  45. 拼团中
  46. </view>
  47. <view
  48. :class="{ commodity: follow == 'undelivered' }"
  49. class="tab"
  50. @click="tabSwitch('undelivered')"
  51. >
  52. 待发货
  53. </view>
  54. <view
  55. :class="{ commodity: follow == 'delivered' }"
  56. class="tab"
  57. @click="tabSwitch('delivered')"
  58. >
  59. 待收货
  60. </view>
  61. <view
  62. :class="{ commodity: follow == 'finished' }"
  63. class="tab"
  64. @click="tabSwitch('finished')"
  65. >
  66. 已完成
  67. </view>
  68. <view
  69. :class="{ commodity: follow == 'refund' }"
  70. class="tab"
  71. @click="tabSwitch('refund')"
  72. >
  73. 退款/售后
  74. </view>
  75. </view>
  76. <view v-for="(item, index) in orderList" :key="index">
  77. <view v-if="follow != 'refund'">
  78. <OrderInofrmation
  79. :itemInfo="item"
  80. @toDetail="toDetail"
  81. @cancellationOrder="cancellationOrder"
  82. @confirm="confirm"
  83. @toPay="toPay"
  84. @toEvaluate="toEvaluate"
  85. @unreviewAfter="unreviewAfter"
  86. />
  87. </view>
  88. <view v-else>
  89. <RefundCard
  90. :itemInfo="item"
  91. :refundDetail="refundDetail"
  92. @toRefundDetail="toRefundDetail"
  93. @unreviewAfter="unreviewAfter"
  94. />
  95. </view>
  96. </view>
  97. </view>
  98. <AgreePopup :agreeShow="agreeShow" @close="close" :title="title" />
  99. </view>
  100. </template>
  101. <script>
  102. import OrderInofrmation from "./component/orderInofrmation.vue";
  103. import RefundCard from "./component/refundCard.vue";
  104. import AgreePopup from "../mineComponent/agreePopup.vue";
  105. export default {
  106. components: {
  107. OrderInofrmation,
  108. RefundCard,
  109. AgreePopup,
  110. },
  111. data() {
  112. return {
  113. orderList: [],
  114. follow: "",
  115. refundDetail: {
  116. status: 1,
  117. },
  118. page: 1,
  119. total: 0,
  120. status: "",
  121. agreeShow: false,
  122. title: "",
  123. cancellation: {},
  124. keywords: "", //搜索关键字
  125. };
  126. },
  127. computed: {
  128. i18n() {
  129. return this.$t("index");
  130. },
  131. },
  132. onLoad(option) {
  133. this.follow = option.followId;
  134. },
  135. methods: {
  136. rightClick() {
  137. console.log(111);
  138. },
  139. //切换搜索订单状态
  140. tabSwitch(num) {
  141. this.page = 1;
  142. this.follow = num;
  143. this.getOrderList(1);
  144. },
  145. //跳转订单详情
  146. toDetail(value) {
  147. uni.navigateTo({
  148. url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.order.id}`,
  149. });
  150. },
  151. //跳转评价
  152. toEvaluate(value) {
  153. uni.navigateTo({
  154. url: `/pageD/evaluate/evaluate?orderId=${value.order.id}`,
  155. });
  156. },
  157. //拼团中售后
  158. unreviewAfter(value) {
  159. uni.navigateTo({
  160. url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
  161. });
  162. },
  163. //确认收货
  164. confirm(value) {
  165. this.agreeShow = true;
  166. this.title = "是否确认收货";
  167. this.cancellation = value;
  168. },
  169. //跳转支付
  170. toPay(value) {
  171. uni.navigateTo({
  172. url: `/pageA/payorder?sum=${value.order.amount}&orderid=${value.order.id}`,
  173. });
  174. },
  175. //关闭确认弹窗
  176. close(value) {
  177. this.agreeShow = false;
  178. if (value) {
  179. if (this.title == "是否确认取消订单") {
  180. uni.$u.http
  181. .post(`/api/order/cancel/${this.cancellation.order.id}`)
  182. .then((res) => {
  183. uni.showToast({
  184. title: "订单已取消",
  185. icon: "none",
  186. });
  187. this.getOrderList(1);
  188. });
  189. } else if (this.title == "是否确认收货") {
  190. uni.$u.http
  191. .post(`/api/order/receive/${this.cancellation.order.id}`)
  192. .then((res) => {
  193. uni.showToast({
  194. title: "订单已收货",
  195. icon: "none",
  196. });
  197. this.getOrderList(1);
  198. });
  199. }
  200. }
  201. },
  202. //搜索
  203. searchOrder(e) {
  204. this.keywords = e;
  205. console.log(e);
  206. this.getOrderList(1);
  207. },
  208. //取消订单
  209. cancellationOrder(item) {
  210. this.agreeShow = true;
  211. this.cancellation = item;
  212. this.title = "是否确认取消订单";
  213. // uni.$u.http.post(`/api/order/cancel/${item.order.id}`).then((res) => {
  214. // console.log(res);
  215. // });
  216. },
  217. //售后订单详情
  218. toRefundDetail(value) {
  219. uni.navigateTo({
  220. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  221. });
  222. },
  223. getOrderList(value) {
  224. uni.$u.http
  225. .get(
  226. `/api/order/order_list?status=${this.follow}&page=${this.page}&limit=10&keywords=${this.keywords}`
  227. )
  228. .then((res) => {
  229. //确定是触底还是点击tab栏
  230. if (value) {
  231. this.orderList = res.data;
  232. } else {
  233. if (this.orderList.length == 0) {
  234. this.orderList = res.data;
  235. } else {
  236. this.orderList = this.orderList.concat(res.data);
  237. }
  238. }
  239. this.total = res.total;
  240. });
  241. },
  242. },
  243. onShow() {
  244. this.page = 0;
  245. this.getOrderList(1);
  246. },
  247. onReachBottom() {
  248. //商品总数量小于当前获取到的商品数量
  249. if (this.total > this.orderList.length) {
  250. this.page++;
  251. this.getOrderList(0);
  252. }
  253. },
  254. mounted() {},
  255. };
  256. </script>
  257. <style lang="scss" scoped>
  258. .inp {
  259. background-color: #fff;
  260. border-radius: 40rpx;
  261. width: 402rpx;
  262. padding: 0 20rpx;
  263. height: 68rpx;
  264. }
  265. .content {
  266. padding: 0 24rpx 50rpx;
  267. }
  268. .top-tab {
  269. margin-top: 180rpx;
  270. display: flex;
  271. justify-content: space-between;
  272. overflow-y: auto;
  273. // flex-shrink: 1;
  274. width: 100vw;
  275. .tab {
  276. margin-right: 40rpx;
  277. font-size: 26rpx;
  278. color: rgba(34, 34, 34, 0.8);
  279. flex-shrink: 0;
  280. height: 44rpx;
  281. display: flex;
  282. align-items: flex-end;
  283. }
  284. .commodity {
  285. position: relative;
  286. font-weight: 600;
  287. font-size: 32rpx;
  288. }
  289. .commodity::before {
  290. content: "";
  291. display: block;
  292. height: 8rpx;
  293. width: 100%;
  294. background: linear-gradient(to right, #f83224, #fff);
  295. position: absolute;
  296. bottom: 5rpx;
  297. opacity: 0.8;
  298. }
  299. }
  300. </style>