123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <template>
- <view>
- <u-navbar @leftClick="rightClick" bgColor="#f4f4f4">
- <view class="tab" slot="center">
- <view
- style="
- width: 450rpx;
- margin-right: 150rpx;
- background-color: #fff;
- border-radius: 50rpx;
- "
- >
- <u--input
- :placeholder="i18n.searchOrder"
- border="surround"
- shape="circle"
- v-model="keywords"
- @change="searchOrder"
- class="inp"
- ></u--input>
- </view>
- </view>
- </u-navbar>
- <view class="content">
- <view class="top-tab">
- <view
- :class="{ commodity: follow == '' }"
- class="tab"
- @click="tabSwitch('')"
- >
- {{ i18n.whole }}
- </view>
- <view
- :class="{ commodity: follow == 'unpaid' }"
- class="tab"
- @click="tabSwitch('unpaid')"
- >
- {{ i18n.pendingPayment }}
- </view>
- <view
- :class="{ commodity: follow == 'unreview' }"
- class="tab"
- @click="tabSwitch('unreview')"
- >
- {{ i18n.joiningGroups }}
- </view>
- <view
- :class="{ commodity: follow == 'undelivered' }"
- class="tab"
- @click="tabSwitch('undelivered')"
- >
- {{ i18n.toBeShipped }}
- </view>
- <view
- :class="{ commodity: follow == 'undifference' }"
- class="tab"
- @click="tabSwitch('undifference')"
- >
- {{ i18n.differenzaPrezzo }}
- </view>
- <view
- :class="{ commodity: follow == 'delivered' }"
- class="tab"
- @click="tabSwitch('delivered')"
- >
- {{ i18n.toBeReceived }}
- </view>
- <view
- :class="{ commodity: follow == 'finished' }"
- class="tab"
- @click="tabSwitch('finished')"
- >
- {{ i18n.completato }}
- </view>
- <view
- :class="{ commodity: follow == 'closed' }"
- class="tab"
- @click="tabSwitch('closed')"
- >
- {{ i18n.annullato }}
- </view>
- <view
- :class="{ commodity: follow == 'refund' }"
- class="tab"
- @click="tabSwitch('refund')"
- >
- {{ i18n.refundService }}
- </view>
- </view>
- <view v-for="(item, index) in orderList" :key="index">
- <view v-if="follow != 'refund'">
- <OrderInofrmation
- ref="orderInformation"
- :itemInfo="item"
- :language="language"
- @toDetail="toDetail"
- @cancellationOrder="cancellationOrder"
- @confirm="confirm"
- @toPay="toPay"
- @toEvaluate="toEvaluate"
- @unreviewAfter="unreviewAfter"
- @toLogistics="toLogistics"
- @againOrder="againOrder"
- @deleteOrder="deleteOrder"
- />
- </view>
- <view v-else>
- <RefundCard
- :itemInfo="item"
- :refundDetail="refundDetail"
- :language="language"
- @toRefundDetail="toRefundDetail"
- @unreviewAfter="unreviewAfter"
- @deleteAfterOrder="deleteAfterOrder"
- />
- </view>
- </view>
- </view>
- <AgreePopup :agreeShow="agreeShow" @close="close" :title="title" />
- </view>
- </template>
- <script>
- import OrderInofrmation from "./component/orderInofrmation.vue";
- import RefundCard from "./component/refundCard.vue";
- import AgreePopup from "../mineComponent/agreePopup.vue";
- export default {
- components: {
- OrderInofrmation,
- RefundCard,
- AgreePopup,
- },
- data() {
- return {
- orderList: [],
- follow: "",
- refundDetail: {
- status: 1,
- },
- page: 1,
- total: 0,
- status: "",
- agreeShow: false,
- title: "",
- cancellation: {},
- keywords: "", //搜索关键字
- language: this._language, //当前用户选择的语言
- };
- },
- computed: {
- i18n() {
- return this.$t("index");
- },
- },
- onLoad(option) {
- this.follow = option.followId;
- },
- methods: {
- rightClick() {
- console.log(111);
- uni.switchTab({
- url: "/pages/mine/mine",
- });
- },
- //切换搜索订单状态
- tabSwitch(num) {
- this.follow = num;
- this.page = 1;
- this.getOrderList(1);
- },
- //跳转订单详情
- toDetail(value) {
- uni.navigateTo({
- url: `/pageC/orderFormDetail/orderFormDetail?orderId=${value.order.id}`,
- });
- },
- //查看物流进度
- toLogistics(value) {
- uni.navigateTo({
- url: `/pageD/logisticsProgress/logisticsProgress?source_type=order&source_id=${value.order.id}&orderStatus=${value.order.status}&orderNumber=${value.order.order_no}`,
- });
- },
- //跳转评价
- toEvaluate(value) {
- uni.navigateTo({
- url: `/pageD/evaluate/evaluate?orderId=${value.order.id}`,
- });
- },
- //拼团中售后
- unreviewAfter(value) {
- uni.navigateTo({
- url: `/pageC/applicationRefund/applicationRefund?orderId=${value.id}`,
- });
- },
- //确认收货
- confirm(value) {
- this.agreeShow = true;
- this.title = this.i18n.confirmGoods;
- this.cancellation = value;
- },
- //跳转支付
- toPay(value) {
- uni.navigateTo({
- url: `/pageA/payorder?sum=${value.order.amount}&orderid=${value.order.id}`,
- });
- },
- //再来一单 or 再次购买
- againOrder(item) {
- uni.navigateTo({
- url: `/pageD/newBulitOrder/newBulitOrder?orderId=${item.order.id}`,
- });
- },
- //删除订单
- deleteOrder(item) {
- uni.$u.http
- .post(`/api/order/order_del`, { order_id: item.order.id })
- .then((res) => {
- this.getOrderList(1);
- this.$refs.orderInformation.more();
- uni.showToast({
- title: this.i18n.successfullydelete,
- icon: "none",
- });
- });
- },
- //关闭确认弹窗
- close(value) {
- this.agreeShow = false;
- if (value) {
- if (this.title == "是否确认取消订单") {
- uni.$u.http
- .post(`/api/order/cancel/${this.cancellation.order.id}`)
- .then((res) => {
- uni.showToast({
- title: this.i18n.cancelOrder,
- icon: "none",
- });
- this.getOrderList(1);
- });
- } else if (this.title == "是否确认收货") {
- uni.$u.http
- .post(`/api/order/receive/${this.cancellation.order.id}`)
- .then((res) => {
- uni.showToast({
- title: this.i18n.takeOrder,
- icon: "none",
- });
- this.getOrderList(1);
- });
- }
- }
- },
- //搜索
- searchOrder(e) {
- this.keywords = e;
- console.log(e);
- this.page = 1;
- this.getOrderList(1);
- },
- //取消订单
- cancellationOrder(item) {
- this.agreeShow = true;
- this.cancellation = item;
- this.title = "是否确认取消订单";
- // uni.$u.http.post(`/api/order/cancel/${item.order.id}`).then((res) => {
- // console.log(res);
- // });
- },
- //售后订单详情
- toRefundDetail(value) {
- if (value.refund) {
- uni.navigateTo({
- url: `/pageC/refundDetail/refundDetail?orderId=${value.refund.id}`,
- });
- }
- },
- //删除售后订单
- deleteAfterOrder(item) {
- uni.$u.http
- .post(`api/order/refund_order_del`, {
- order_refund_id: item.refund.id,
- })
- .then((res) => {
- this.getOrderList(1);
- uni.showToast({
- title: this.i18n.successfullydelete,
- icon: "none",
- });
- });
- },
- getOrderList(value) {
- uni.$u.http
- .get(
- `/api/order/order_list?status=${this.follow}&page=${this.page}&limit=10&keywords=${this.keywords}`
- )
- .then((res) => {
- //确定是触底还是点击tab栏
- if (value) {
- this.orderList = res.data;
- } else {
- if (this.orderList.length == 0) {
- this.orderList = res.data;
- } else {
- this.orderList = this.orderList.concat(res.data);
- }
- }
- this.total = res.total;
- });
- },
- },
- onShow() {
- this.page = 0;
- this.getOrderList(1);
- },
- onReachBottom() {
- //商品总数量小于当前获取到的商品数量
- if (this.total > this.orderList.length) {
- this.page++;
- this.getOrderList(0);
- }
- },
- mounted() {},
- };
- </script>
- <style lang="scss" scoped>
- .inp {
- background-color: #fff;
- border-radius: 40rpx;
- width: 402rpx;
- padding: 0 20rpx;
- height: 68rpx;
- }
- .content {
- padding: 0 24rpx 50rpx;
- }
- .top-tab {
- margin-top: 180rpx;
- display: flex;
- justify-content: space-between;
- overflow-y: auto;
- // flex-shrink: 1;
- width: 100vw;
- .tab {
- margin-right: 40rpx;
- font-size: 26rpx;
- color: rgba(34, 34, 34, 0.8);
- flex-shrink: 0;
- height: 44rpx;
- display: flex;
- align-items: flex-end;
- }
- .commodity {
- position: relative;
- font-weight: 600;
- font-size: 32rpx;
- }
- .commodity::before {
- content: "";
- display: block;
- height: 8rpx;
- width: 100%;
- background: linear-gradient(to right, #f83224, #fff);
- position: absolute;
- bottom: 5rpx;
- opacity: 0.8;
- }
- }
- </style>
|