orderForm.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. <template>
  2. <view>
  3. <u-navbar @leftClick="rightClick" bgColor="#f4f4f4">
  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="i18n.searchOrder"
  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. {{ i18n.whole }}
  32. </view>
  33. <view
  34. :class="{ commodity: follow == 'unpaid' }"
  35. class="tab"
  36. @click="tabSwitch('unpaid')"
  37. >
  38. {{ i18n.pendingPayment }}
  39. </view>
  40. <view
  41. :class="{ commodity: follow == 'unreview' }"
  42. class="tab"
  43. @click="tabSwitch('unreview')"
  44. >
  45. {{ i18n.joiningGroups }}
  46. </view>
  47. <view
  48. :class="{ commodity: follow == 'undelivered' }"
  49. class="tab"
  50. @click="tabSwitch('undelivered')"
  51. >
  52. {{ i18n.toBeShipped }}
  53. </view>
  54. <view
  55. :class="{ commodity: follow == 'undifference' }"
  56. class="tab"
  57. @click="tabSwitch('undifference')"
  58. >
  59. {{ i18n.differenzaPrezzo }}
  60. </view>
  61. <view
  62. :class="{ commodity: follow == 'delivered' }"
  63. class="tab"
  64. @click="tabSwitch('delivered')"
  65. >
  66. {{ i18n.toBeReceived }}
  67. </view>
  68. <view
  69. :class="{ commodity: follow == 'finished' }"
  70. class="tab"
  71. @click="tabSwitch('finished')"
  72. >
  73. {{ i18n.completato }}
  74. </view>
  75. <view
  76. :class="{ commodity: follow == 'closed' }"
  77. class="tab"
  78. @click="tabSwitch('closed')"
  79. >
  80. {{ i18n.annullato }}
  81. </view>
  82. <view
  83. :class="{ commodity: follow == 'refund' }"
  84. class="tab"
  85. @click="tabSwitch('refund')"
  86. >
  87. {{ i18n.refundService }}
  88. </view>
  89. </view>
  90. <view v-for="(item, index) in orderList" :key="index">
  91. <view v-if="follow != 'refund'">
  92. <OrderInofrmation
  93. ref="orderInformation"
  94. :itemInfo="item"
  95. :language="language"
  96. @toDetail="toDetail"
  97. @cancellationOrder="cancellationOrder"
  98. @confirm="confirm"
  99. @toPay="toPay"
  100. @toEvaluate="toEvaluate"
  101. @unreviewAfter="unreviewAfter"
  102. @toLogistics="toLogistics"
  103. @againOrder="againOrder"
  104. @deleteOrder="deleteOrder"
  105. />
  106. </view>
  107. <view v-else>
  108. <RefundCard
  109. :itemInfo="item"
  110. :refundDetail="refundDetail"
  111. :language="language"
  112. @toRefundDetail="toRefundDetail"
  113. @unreviewAfter="unreviewAfter"
  114. @deleteAfterOrder="deleteAfterOrder"
  115. />
  116. </view>
  117. </view>
  118. </view>
  119. <AgreePopup :agreeShow="agreeShow" @close="close" :title="title" />
  120. </view>
  121. </template>
  122. <script>
  123. import OrderInofrmation from "./component/orderInofrmation.vue";
  124. import RefundCard from "./component/refundCard.vue";
  125. import AgreePopup from "../mineComponent/agreePopup.vue";
  126. export default {
  127. components: {
  128. OrderInofrmation,
  129. RefundCard,
  130. AgreePopup,
  131. },
  132. data() {
  133. return {
  134. orderList: [],
  135. follow: "",
  136. refundDetail: {
  137. status: 1,
  138. },
  139. page: 1,
  140. total: 0,
  141. status: "",
  142. agreeShow: false,
  143. title: "",
  144. cancellation: {},
  145. keywords: "", //搜索关键字
  146. language: this._language, //当前用户选择的语言
  147. };
  148. },
  149. computed: {
  150. i18n() {
  151. return this.$t("index");
  152. },
  153. },
  154. onLoad(option) {
  155. this.follow = option.followId;
  156. },
  157. methods: {
  158. rightClick() {
  159. console.log(111);
  160. uni.switchTab({
  161. url: "/pages/mine/mine",
  162. });
  163. },
  164. //切换搜索订单状态
  165. tabSwitch(num) {
  166. this.page = 1;
  167. this.follow = num;
  168. this.getOrderList(1);
  169. },
  170. //跳转订单详情
  171. toDetail(value) {
  172. uni.navigateTo({
  173. url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.order.id}`,
  174. });
  175. },
  176. //查看物流进度
  177. toLogistics(value) {
  178. uni.navigateTo({
  179. url: `/pageD/logisticsProgress/logisticsProgress?source_type=order&source_id=${value.order.id}`,
  180. });
  181. },
  182. //跳转评价
  183. toEvaluate(value) {
  184. uni.navigateTo({
  185. url: `/pageD/evaluate/evaluate?orderId=${value.order.id}`,
  186. });
  187. },
  188. //拼团中售后
  189. unreviewAfter(value) {
  190. uni.navigateTo({
  191. url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
  192. });
  193. },
  194. //确认收货
  195. confirm(value) {
  196. this.agreeShow = true;
  197. this.title = this.i18n.confirmGoods;
  198. this.cancellation = value;
  199. },
  200. //跳转支付
  201. toPay(value) {
  202. uni.navigateTo({
  203. url: `/pageA/payorder?sum=${value.order.amount}&orderid=${value.order.id}`,
  204. });
  205. },
  206. //再来一单 or 再次购买
  207. againOrder(item) {
  208. uni.navigateTo({
  209. url: `/pageD/newBulitOrder/newBulitOrder?orderId=${item.order.id}`,
  210. });
  211. },
  212. //删除订单
  213. deleteOrder(item) {
  214. uni.$u.http
  215. .post(`/api/order/order_del`, { order_id: item.order.id })
  216. .then((res) => {
  217. this.getOrderList(1);
  218. this.$refs.orderInformation.more();
  219. uni.showToast({
  220. title: this.i18n.successfullydelete,
  221. icon: "none",
  222. });
  223. });
  224. },
  225. //关闭确认弹窗
  226. close(value) {
  227. this.agreeShow = false;
  228. if (value) {
  229. if (this.title == "是否确认取消订单") {
  230. uni.$u.http
  231. .post(`/api/order/cancel/${this.cancellation.order.id}`)
  232. .then((res) => {
  233. uni.showToast({
  234. title: this.i18n.cancelOrder,
  235. icon: "none",
  236. });
  237. this.getOrderList(1);
  238. });
  239. } else if (this.title == "是否确认收货") {
  240. uni.$u.http
  241. .post(`/api/order/receive/${this.cancellation.order.id}`)
  242. .then((res) => {
  243. uni.showToast({
  244. title: this.i18n.takeOrder,
  245. icon: "none",
  246. });
  247. this.getOrderList(1);
  248. });
  249. }
  250. }
  251. },
  252. //搜索
  253. searchOrder(e) {
  254. this.keywords = e;
  255. console.log(e);
  256. this.page = 1;
  257. this.getOrderList(1);
  258. },
  259. //取消订单
  260. cancellationOrder(item) {
  261. this.agreeShow = true;
  262. this.cancellation = item;
  263. this.title = "是否确认取消订单";
  264. // uni.$u.http.post(`/api/order/cancel/${item.order.id}`).then((res) => {
  265. // console.log(res);
  266. // });
  267. },
  268. //售后订单详情
  269. toRefundDetail(value) {
  270. if (value.refund) {
  271. uni.navigateTo({
  272. url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
  273. });
  274. }
  275. },
  276. //删除售后订单
  277. deleteAfterOrder(item) {
  278. uni.$u.http
  279. .post(`api/order/refund_order_del`, {
  280. order_refund_id: item.refund.id,
  281. })
  282. .then((res) => {
  283. this.getOrderList(1);
  284. uni.showToast({
  285. title: this.i18n.successfullydelete,
  286. icon: "none",
  287. });
  288. });
  289. },
  290. getOrderList(value) {
  291. uni.$u.http
  292. .get(
  293. `/api/order/order_list?status=${this.follow}&page=${this.page}&limit=10&keywords=${this.keywords}`
  294. )
  295. .then((res) => {
  296. //确定是触底还是点击tab栏
  297. if (value) {
  298. this.orderList = res.data;
  299. } else {
  300. if (this.orderList.length == 0) {
  301. this.orderList = res.data;
  302. } else {
  303. this.orderList = this.orderList.concat(res.data);
  304. }
  305. }
  306. this.total = res.total;
  307. });
  308. },
  309. },
  310. onShow() {
  311. this.page = 0;
  312. this.getOrderList(1);
  313. },
  314. onReachBottom() {
  315. //商品总数量小于当前获取到的商品数量
  316. if (this.total > this.orderList.length) {
  317. this.page++;
  318. this.getOrderList(0);
  319. }
  320. },
  321. mounted() {},
  322. };
  323. </script>
  324. <style lang="scss" scoped>
  325. .inp {
  326. background-color: #fff;
  327. border-radius: 40rpx;
  328. width: 402rpx;
  329. padding: 0 20rpx;
  330. height: 68rpx;
  331. }
  332. .content {
  333. padding: 0 24rpx 50rpx;
  334. }
  335. .top-tab {
  336. margin-top: 180rpx;
  337. display: flex;
  338. justify-content: space-between;
  339. overflow-y: auto;
  340. // flex-shrink: 1;
  341. width: 100vw;
  342. .tab {
  343. margin-right: 40rpx;
  344. font-size: 26rpx;
  345. color: rgba(34, 34, 34, 0.8);
  346. flex-shrink: 0;
  347. height: 44rpx;
  348. display: flex;
  349. align-items: flex-end;
  350. }
  351. .commodity {
  352. position: relative;
  353. font-weight: 600;
  354. font-size: 32rpx;
  355. }
  356. .commodity::before {
  357. content: "";
  358. display: block;
  359. height: 8rpx;
  360. width: 100%;
  361. background: linear-gradient(to right, #f83224, #fff);
  362. position: absolute;
  363. bottom: 5rpx;
  364. opacity: 0.8;
  365. }
  366. }
  367. </style>