| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- <template>
- <view>
- <view class="top-tabbar">
- <view :class="state_active == 0 ? 'tab-item active' : 'tab-item'" @click="stateFunc(0)">全部订单</view>
- <view :class="state_active == 1 ? 'tab-item active' : 'tab-item'" @click="stateFunc(1)">待付款</view>
- <view :class="state_active == 2 ? 'tab-item active' : 'tab-item'" @click="stateFunc(2)">待发货</view>
- <view :class="state_active == 3 ? 'tab-item active' : 'tab-item'" @click="stateFunc(3)">待收货</view>
- <view :class="state_active == 4 ? 'tab-item active' : 'tab-item'" @click="stateFunc(4)">待评价</view>
- </view>
- <!--列表-->
- <scroll-view scroll-y="true" class="scroll-Y" :style="'height:' + scrollviewHigh + 'px;'" lower-threshold="50"
- @scrolltolower="scrolltolowerFunc">
- <view :class="topRefresh ? 'top-refresh open' : 'top-refresh'">
- <view class="circle" v-for="(circle, n) in 3" :key="n"></view>
- </view>
- <view class="order-list">
- <view class="item" v-for="(item, index) in listData" :key="index">
- <view class="order-head d-b-c">
- <view>
- <text class="state-text">{{ item.order_source_text }}</text>
- <text class="shop-name flex-1 fb">订单号:{{ item.order_no }}</text>
- </view>
- <view class="state">
- <text class="red">{{ item.state_text }}</text>
- </view>
- </view>
- <!--多个商品显示-->
- <view class="product-list pr" v-if="item.product.length > 1" @click="gotoOrder(item.order_id)">
- <scroll-view scroll-x="true">
- <view class="list d-s-c pr100">
- <view class="cover mr10" v-for="(img, num) in item.product" :key="num">
- <image :src="img.image.file_path" mode="aspectFit"></image>
- </view>
- </view>
- </scroll-view>
- <view class="total-count">
- <view class="left-shadow"></view>
- <view class="price f22">
- ¥
- <text class="f40">{{ item.order_price }}</text>
- </view>
- <view class="count">共{{ item.product.length }}件</view>
- </view>
- </view>
- <!--一个商品显示-->
- <view class="one-product d-s-c" v-else @click="gotoOrder(item.order_id)">
- <view class="cover" v-for="(img, num) in item.product" :key="num">
- <image :src="img.image.file_path" mode="aspectFit"></image>
- </view>
- <view class="pro-info flex-1">{{ item.product[0].product_name }}</view>
- <view class="total-count">
- <view class="left-shadow"></view>
- <view class="price f22">
- ¥
- <text class="f40">{{ item.pay_price }}</text>
- </view>
- <view class="count">共{{ item.product[0].total_num }}件</view>
- </view>
- </view>
- <view class="order-bts">
- <block v-if="item.order_status.value != 20">
- <!-- 未支付取消订单 -->
- <button @click="cancelOrder(item.order_id)" type="default" v-if="item.pay_status.value == 10">取消</button>
- <!-- 已支付取消订单 -->
- <block v-if="item.order_status.value != 21">
- <block v-if="item.pay_status.value == 20 && item.delivery_status.value == 10">
- <button @click="cancelOrder(item.order_id)" type="default">申请取消</button>
- </block>
- <!-- 订单核销码 -->
- <block v-if="item.pay_status.value == 20 && item.delivery_type.value == 20 && item.delivery_status.value == 10">
- <button @click="onQRCode(item.order_id)">核销码</button>
- </block>
- </block>
- <text v-else class="count">取消申请中</text>
- <!-- 订单付款 -->
- <block v-if="item.pay_status.value == 10"><button class="btn-red" @click="onPayOrder(item.order_id)">付款</button></block>
- <!-- 确认收货 -->
- <block v-if="item.delivery_status.value == 20 && item.receipt_status.value == 10"><button @click="orderReceipt(item.order_id)">确认收货</button></block>
- <!-- 订单评价 -->
- <button type="default" v-if="item.order_status.value == 30 && item.is_comment == 0" @click="gotoEvaluate(item.order_id)">评价</button>
- </block>
- <template v-if="item.assemble_status == 10 && item.order_source == 30">
- <button class="btn-red" @click="gotoAssembleShare(item.product[0].bill_source_id)">邀请好友拼单</button>
- </template>
- </view>
- </view>
- <view class="d-c-c p30" v-if="listData.length == 0 && !loading">
- <text class="iconfont icon-wushuju"></text>
- <text class="cont">亲,暂无相关记录哦</text>
- </view>
- <uni-load-more v-else :loadingType="loadingType"></uni-load-more>
- </view>
- </scroll-view>
- <!--支付选择-->
- <Popup :show="isPayPopup" msg="支付方式" @hidePopup="hidePopupFunc">
- <!--支付方式-->
- <view class="buy-checkout">
- <view :class="pay_type == 20 ? 'item active border-b-e' : 'item border-b-e'" @click="payTypeFunc(20)">
- <view class="d-s-c">
- <view class="icon-box d-c-c mr10"><span class="icon iconfont icon-weixin"></span></view>
- <text class="key">微信支付</text>
- </view>
- <view class="icon-box d-c-c"></view>
- </view>
- <view v-if="showAlipay" :class="pay_type == 30 ? 'item active border-b-e' : 'item border-b-e'" @click="payTypeFunc(30)">
- <view class="d-s-c">
- <view class="icon-box d-c-c mr10"><span class="icon iconfont icon-zhifubao"></span></view>
- <text class="key">支付宝支付</text>
- </view>
- <view class="icon-box d-c-c"></view>
- </view>
- <view :class="pay_type == 10 ? 'item active' : 'item'" @click="payTypeFunc(10)">
- <view class="d-s-c">
- <view class="icon-box d-c-c mr10"><span class="icon iconfont icon-yue"></span></view>
- <text class="key">余额支付</text>
- </view>
- <view class="icon-box d-c-c"></view>
- </view>
- </view>
- <view class="bts"></view>
- </Popup>
- <!--核销二维码-->
- <Popup :show="isCodeImg" type="middle" @hidePopup="hideCodePopupFunc">
- <view class="ww100 p20 box-s-b">
- <image class="ww100" :src="codeImg" mode="widthFix"></image>
- </view>
- </Popup>
- </view>
- </template>
- <script>
- import Popup from '@/components/uni-popup.vue';
- import uniLoadMore from '@/components/uni-load-more.vue';
- import {
- pay
- } from '@/common/pay.js';
- export default {
- components: {
- Popup,
- uniLoadMore
- },
- data() {
- return {
- /*手机高度*/
- phoneHeight: 0,
- /*可滚动视图区域高度*/
- scrollviewHigh: 0,
- /*状态选中*/
- state_active: 0,
- /*顶部刷新*/
- topRefresh: false,
- /*数据*/
- listData: [],
- /*数据类别*/
- dataType: 'all',
- /*是否显示支付类别弹窗*/
- isPayPopup: false,
- /*支付方式*/
- pay_type: 20,
- /*订单id*/
- order_id: 0,
- /*最后一页码数*/
- last_page: 0,
- /*当前页面*/
- page: 1,
- /*每页条数*/
- list_rows: 10,
- /*有没有等多*/
- no_more: false,
- /*是否正在加载*/
- loading: true,
- /*是否显示核销二维码*/
- isCodeImg: false,
- codeImg: '',
- /*是否显示支付宝支付,只有在h5,非微信内打开才显示*/
- showAlipay: false
- };
- },
- computed: {
- /*加载中状态*/
- loadingType() {
- if (this.loading) {
- return 1;
- } else {
- if (this.listData.length != 0 && this.no_more) {
- return 2;
- } else {
- return 0;
- }
- }
- }
- },
- onLoad(e) {
- if (typeof e.dataType != 'undefined') {
- this.dataType = e.dataType;
- }
- if (this.dataType == 'payment') {
- this.state_active = 1;
- } else if (this.dataType == 'received') {
- this.state_active = 3;
- } else if (this.dataType == 'comment') {
- this.state_active = 4;
- } else if (this.dataType == 'delivery') {
- this.state_active = 2;
- }
- },
- mounted() {
- this.init();
- /*获取订单列表*/
- this.getData();
- },
- methods: {
- /*初始化*/
- init() {
- let self = this;
- uni.getSystemInfo({
- success(res) {
- self.phoneHeight = res.windowHeight;
- // 计算组件的高度
- let view = uni.createSelectorQuery().select('.top-tabbar');
- view.boundingClientRect(data => {
- let h = self.phoneHeight - data.height;
- self.scrollviewHigh = h;
- }).exec();
- }
- });
- },
- /*状态切换*/
- stateFunc(e) {
- let self = this;
- if (self.state_active != e) {
- self.page = 1;
- self.loading = true;
- self.state_active = e;
- switch (e) {
- case 0:
- self.listData = [];
- self.dataType = 'all';
- break;
- case 1:
- self.listData = [];
- self.dataType = 'payment';
- break;
- case 2:
- self.listData = [];
- self.dataType = 'delivery';
- break;
- case 3:
- self.listData = [];
- self.dataType = 'received';
- break;
- case 4:
- self.listData = [];
- self.dataType = 'comment';
- break;
- }
- self.getData();
- }
- },
- /*可滚动视图区域到底触发*/
- scrolltolowerFunc() {
- let self = this;
- if (self.no_more) {
- return;
- }
- self.page++;
- if (self.page <= self.last_page) {
- self.getData();
- } else {
- self.no_more = true;
- }
- },
- /*获取数据*/
- getData() {
- let self = this;
- self.loading = true;
- let dataType = self.dataType;
- self._get(
- 'user.order/lists', {
- dataType: dataType,
- page: self.page,
- list_rows: self.list_rows
- },
- function(res) {
- self.loading = false;
- self.listData = self.listData.concat(res.data.list.data);
- self.last_page = res.data.list.last_page;
- if (res.data.list.last_page <= 1) {
- self.no_more = true;
- } else {
- self.no_more = false;
- }
- //#ifdef H5
- if (!self.isWeixin() && res.data.h5_alipay) {
- self.showAlipay = true;
- }
- //#endif
- }
- );
- },
- /*跳转页面*/
- gotoOrder(e) {
- this.gotoPage('/pages/order/order-detail?order_id=' + e);
- },
- /*隐藏支付方式*/
- hidePopupFunc() {
- this.isPayPopup = false;
- },
- /*去支付*/
- payTypeFunc(payType) {
- let self = this;
- self.isPayPopup = false;
- uni.showLoading({
- title: '加载中'
- });
- self._post(
- 'user.order/pay', {
- payType: payType,
- order_id: self.order_id,
- pay_source: self.getPlatform()
- },
- function(res) {
- pay(res, self);
- }
- );
- },
- /*支付方式选择*/
- onPayOrder(orderId) {
- let self = this;
- self.isPayPopup = true;
- self.order_id = orderId;
- },
- /*确认收货*/
- orderReceipt(order_id) {
- let self = this;
- wx.showModal({
- title: '提示',
- content: '您确定要收货吗?',
- success: function(o) {
- if (o.confirm) {
- uni.showLoading({
- title: '正在处理'
- });
- self._post(
- 'user.order/receipt', {
- order_id: order_id
- },
- function(res) {
- uni.hideLoading();
- uni.showToast({
- title: res.msg,
- duration: 2000,
- icon: 'success'
- });
- self.listData = [];
- self.getData();
- }
- );
- } else {
- uni.showToast({
- title: '取消收货',
- duration: 1000,
- icon: 'none'
- });
- }
- }
- });
- },
- /*取消订单*/
- cancelOrder(e) {
- let self = this;
- let order_id = e;
- wx.showModal({
- title: '提示',
- content: '您确定要取消吗?',
- success: function(o) {
- if (o.confirm) {
- uni.showLoading({
- title: '正在处理'
- });
- self._get(
- 'user.order/cancel', {
- order_id: order_id
- },
- function(res) {
- uni.hideLoading();
- uni.showToast({
- title: '操作成功',
- duration: 2000,
- icon: 'success'
- });
- self.listData = [];
- self.getData();
- }
- );
- }
- }
- });
- },
- /*去评论*/
- gotoEvaluate(e) {
- this.gotoPage('/pages/order/evaluate/evaluate?order_id=' + e);
- },
- /*核销码*/
- onQRCode(e) {
- let self = this;
- uni.showLoading({
- title: '加载中'
- });
- let order_id = e;
- self._get(
- 'user.order/qrcode', {
- order_id: order_id,
- source: self.getPlatform()
- },
- function(res) {
- uni.hideLoading();
- self.isCodeImg = true;
- self.codeImg = res.data.qrcode;
- }
- );
- },
- /*关闭核销二维码*/
- hideCodePopupFunc() {
- this.isCodeImg = false;
- },
- /*分享拼团*/
- gotoAssembleShare(e) {
- let url = '/pages/plus/assemble/fight-group-detail/fight-group-detail?assemble_bill_id=' + e;
- this.gotoPage(url);
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: #f2f2f2;
- }
- .top-tabbar {
- height: 96rpx;
- }
- .order-list .order-head .state-text {
- padding: 10rpx 12rpx;
- margin-right: 21rpx;
- border-radius: 4rpx;
- background: #FFE7E4;
- font-size: 22rpx;
- color: #F6220C;
- }
- .shop-name {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .order-list .item {
- margin-bottom: 30rpx;
- padding: 30rpx;
- background: #ffffff;
- }
- .order-list .product-list,
- .order-list .one-product {
- padding: 30rpx 0 27rpx 0;
- height: 150rpx;
- }
- .one-product .pro-info {
- padding: 0 21rpx 0 37rpx;
- display: -webkit-box;
- width: 361rpx;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- font-size: 26rpx;
- color: #333333;
- }
- .order-list .cover,
- .order-list .cover image {
- width: 150rpx;
- height: 150rpx;
- border-radius: 8rpx;
- }
- .order-list .total-count {
- padding-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-end;
- }
- .total-count .count {
- padding-top: 16rpx;
- color: #999999;
- font-size: 22rpx;
- }
- .product-list .total-count {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- background: rgba(255, 255, 255, 0.9);
- }
- .product-list .total-count .left-shadow {
- position: absolute;
- top: 0;
- bottom: 0;
- left: -24rpx;
- width: 24rpx;
- overflow: hidden;
- }
- .product-list .total-count .left-shadow::after {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 24rpx;
- right: -12rpx;
- display: block;
- content: '';
- background-image: radial-gradient(rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 80%);
- }
- .order-list .order-bts {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .order-list .order-bts button {
- margin: 0;
- padding: 0 30rpx;
- height: 60rpx;
- line-height: 60rpx;
- margin-left: 20rpx;
- font-size: 32rpx;
- border: 1px solid #F6220C;
- border-radius: 30px;
- background: #ffffff;
- white-space: nowrap;
- color: #F6220C;
- font-family: PingFang SC;
- }
- .order-list .order-bts button::after {
- display: none;
- }
- .order-list .order-bts button.btn-border-red {
- border: 1px solid $dominant-color;
- font-size: 24rpx;
- color: $dominant-color;
- }
- .order-list .order-bts button.btn-red {
- background: linear-gradient(90deg, #FF6B6B 4%, #F6220C 100%);
- border-radius: 30rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- color: #ffffff;
- border: none;
- }
- .buy-checkout {
- width: 100%;
- }
- .buy-checkout .item {
- min-height: 50rpx;
- line-height: 50rpx;
- padding: 20rpx;
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- }
- .buy-checkout .iconfont.icon-weixin {
- color: #04be01;
- font-size: 50rpx;
- }
- .buy-checkout .iconfont.icon-yue {
- color: #f0de7c;
- font-size: 50rpx;
- }
- .buy-checkout .item.active .iconfont.icon-xuanze {
- color: #04be01;
- }
- .item-dianpu {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- line-height: 30rpx;
- }
- .item-dianpu .icon-jiantou {
- font-size: 24rpx;
- color: #333333;
- }
- .item-d-l {
- display: flex;
- }
- .icon-dianpu1 {
- margin-right: 20rpx;
- color: #333333;
- font-size: 32rpx;
- }
- </style>
|