123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790 |
- <template>
- <view class="content">
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item" :class="{current: tabCurrentIndex === index}"
- @click="tabClick(index)">
- {{item.text}}
- </view>
- </view>
- <swiper :current="tabCurrentIndex" class="swiper-box" duration="300" @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem,tabIndex) in navList" :key="tabIndex">
- <scroll-view class="list-scroll-content" scroll-y @scrolltolower="loadData">
- <!-- 空白页 -->
- <empty v-if="tabItem.loaded === true && tabItem.orderList.length === 0"></empty>
- <!-- 订单列表 -->
- <view v-for="(item,index) in tabItem.orderList" :key="index" class="order-item" @click="navTo('/pages/order/orderDetail?order_id='+item.order_id)">
- <view class="i-top b-b">
- <text class="time">{{item.createtime}}</text>
- <text class="state" :style="{color: item.stateTipColor}">{{item.stateTip + (item.refund_status_text ? ':'+item.refund_status_text : '')}} </text>
- <text v-if="item.state===9" class="del-btn yticon icon-lajitong" @click.stop="deleteOrder(index)"></text>
- </view>
- <view class="goods-box-single" v-for="(goodsItem, goodsIndex) in item.products"
- :key="goodsIndex">
- <image class="goods-img" :src="goodsItem.image" mode="aspectFill"></image>
- <view class="right">
- <text class="refund" v-if="goodsItem.refund">退款成功</text>
- <text class="title clamp">{{goodsItem.title}}</text>
- <text class="attr-box">{{goodsItem.spec}} x {{goodsItem.number}}</text>
- <text class="price">{{goodsItem.price}}</text>
- <button class="action-btn" v-if="item.have_received != 0 && goodsItem.evaluate == false && goodsItem.refund==false" @click.stop="button('evaluate', {order_id:item.order_id,id:goodsItem.id,image:goodsItem.image,title:goodsItem.title,spec:goodsItem.spec})">评价</button>
- </view>
- </view>
- <view class="price-box">
- 共
- <text class="num">{{quantity(item.products)}}</text>
- 件商品 合计
- <text class="price">{{item.total_price}}</text>
- <text v-if="item.discount_price > 0">(已优惠¥{{item.discount_price}})</text>
- <text v-if="item.delivery_price > 0">(含运费¥{{item.delivery_price}})</text>
- </view>
- <view class="action-box b-t" v-if="item.state != 9">
- <button class="action-btn" v-if="item.state == 1" @click.stop="button('cancel',item)">取消订单</button>
- <button class="action-btn recom" v-if="item.have_paid == 0" @click.stop="button('pay',item)">立即支付</button>
- <!-- <button class="action-btn" v-if="item.have_paid != 0 && item.have_delivered == 0">提醒发货</button> -->
- <button class="action-btn" v-if="item.have_paid != 0" @click.stop="button('delivery',item)">查看物流</button>
- <button class="action-btn" v-if="item.have_paid != 0 && item.have_received == 0" @click.stop="button('recerved',item)">确认收货</button>
- <!-- <button class="action-btn" v-if="item.have_received != 0 && item.have_commented != 0">追加评价</button> -->
- <button class="action-btn" v-if="item.have_paid != 0" @click.stop="button('refund', item)">申请售后</button>
- </view>
- <view class="action-box b-t" v-if="item.state == 9 && item.status == -1">
- <button class="action-btn" v-if="item.have_paid != 0" @click.stop="button('refund', item)">查看售后</button>
- </view>
- </view>
- <uni-load-more :status="tabItem.loadingType"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import empty from "@/components/empty";
- export default {
- components: {
- uniLoadMore,
- empty
- },
- data() {
- return {
- tabCurrentIndex: 0,
- navList: [{
- state: 0,
- text: '全部',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 1,
- text: '待付款',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 2,
- text: '待发货',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 3,
- text: '待收货',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 4,
- text: '评价',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 5,
- text: '售后',
- loadingType: 'more',
- orderList: [],
- page: 1
- }
- ],
- pageSize: 10
- };
- },
- onLoad(options) {
- /**
- * 修复app端点击除全部订单外的按钮进入时不加载数据的问题
- * 替换onLoad下代码即可
- */
- this.tabCurrentIndex = +options.state;
- // #ifndef MP
- this.loadData()
- // #endif
- // #ifdef MP
- if (options.state == 0) {
- this.loadData()
- }
- // #endif
- },
- onPullDownRefresh() {
- this.pullDownRefresh()
- },
- methods: {
- //获取订单列表
- async loadData(source) {
- //这里是将订单挂载到tab列表下
- let index = this.tabCurrentIndex;
- let navItem = this.navList[index];
- let state = navItem.state;
- if (source === 'tabChange' && navItem.loaded === true) {
- //tab切换只有第一次需要加载数据
- return;
- }
- if (navItem.loadingType === 'loading') {
- //防止重复加载
- return;
- }
- if (navItem.loadingType == 'noMore') {
- //没有更多数据
- return;
- }
- navItem.loadingType = 'loading';
- let result = await this.$api.request('/order/getOrders', 'GET', {
- type: state,
- page: navItem.page,
- pagesize: this.pageSize
- });
- uni.stopPullDownRefresh();
- if (!result) {
- navItem.loadingType = 'more';
- } else {
- //console.log(result)
- if (result.length >= this.pageSize) {
- //判断是否还有数据, 有改为 more, 没有改为noMore
- navItem.loadingType = 'more';
- } else {
- navItem.loadingType = 'noMore';
- }
- // 页数加一
- navItem.page++;
- result.forEach(item => {
- item = Object.assign(item, this.orderStateExp(item.state));
- navItem.orderList.push(item);
- });
- //loaded新字段用于表示数据加载完毕,如果为空可以显示空白页
- this.$set(navItem, 'loaded', true);
- }
- },
- //swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- this.loadData('tabChange');
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- //删除订单
- async deleteOrder(index) {
- let [error, res] = await uni.showModal({
- title: '确认删除订单'
- });
- if (res.confirm) {
- let order_id = this.navList[this.tabCurrentIndex].orderList[index].order_id;
- let result = await this.$api.request('/order/delete?order_id=' + order_id)
- if (result) {
- this.navList[this.tabCurrentIndex].orderList.splice(index, 1);
- }
- }
-
- },
- //取消订单
- async cancelOrder(item) {
- let that = this;
- let [error, res] = await uni.showModal({
- title: '确认取消订单',
- content: '取消之后不可恢复',
- });
- if (res.confirm) {
- let result = await that.$api.request('/order/cancel?order_id=' + item.order_id);
- if (result) {
- let {
- stateTip,
- stateTipColor
- } = that.orderStateExp(9);
- item = Object.assign(item, {
- state: 9,
- stateTip,
- stateTipColor
- });
- // 更新全部订单里面的状态
- let position = that.navList[0].orderList.findIndex(val => val.order_id === item.order_id);
- if (position !== -1) {
- that.navList[0].orderList[position] = item;
- }
- //取消订单后删除待付款中该项
- let list = that.navList[1].orderList;
- let index = list.findIndex(val => val.order_id === item.order_id);
- index !== -1 && list.splice(index, 1);
- }
- return true;
- }
- //this.$api.msg('取消失败');
- return false;
- },
- // 收货
- async receivedOrder(item) {
- let that = this;
- let [error, res] = await uni.showModal({
- title: '确认收货'
- });
- if (res.confirm == true) {
- let res = await that.$api.request('/order/received', 'GET', {
- order_id: item.order_id
- });
- if (res) {
- // 已确认收货
-
- let {
- stateTip,
- stateTipColor
- } = that.orderStateExp(4);
-
- // 更新全部订单里面的状态
- let position = that.navList[0].orderList.findIndex(val => val.order_id === item.order_id);
- if (position !== -1) {
- let item = that.navList[0].orderList[position];
- console.log(item);
- that.navList[0].orderList[position] = Object.assign(item, {
- state: 4,
- stateTip,
- stateTipColor,
- have_received: 1
- });
- }
-
- //收货订单后删除待收货中该项
- let list = that.navList[3].orderList;
- let index = list.findIndex(val => val.order_id === item.order_id);
- index !== -1 && list.splice(index, 1);
- }
- return true;
- }
- this.$api.msg('收货失败');
- return false;
- },
- // 订单状态文字和颜色
- orderStateExp(state) {
- let stateTip = '',
- stateTipColor = '#fa436a';
- switch (+state) {
- case 0:
- stateTip = '交易成功';
- break;
- case 1:
- stateTip = '待付款';
- break;
- case 2:
- stateTip = '待发货';
- break;
- case 3:
- stateTip = '待收货';
- break;
- case 4:
- stateTip = '待评价';
- break;
- case 5:
- stateTip = '售后';
- break;
- case 6:
- stateTip = '拒绝退款';
- break;
- case 9:
- stateTip = '订单已关闭';
- stateTipColor = '#909399';
- break;
- //更多自定义
- }
- return {
- stateTip,
- stateTipColor
- };
- },
- // 计算当前订单有多少个商品
- quantity(products) {
- let number = 0;
- for (let i in products) {
- number += parseInt(products[i].number);
- }
- return number;
- },
- navTo(url) {
- this.$api.navTo(url);
- },
- // 下面的一排按钮
- button(action, item) {
- switch (action) {
- case 'cancel':
- this.cancelOrder(item);
- break;
- case 'pay':
- this.navTo('/pages/money/pay?order_id=' + item.order_id + '&total=' + item.total_price);
- break;
- case 'delivery':
- this.navTo('/pages/public/webview?type=kd&number=' + item.extend.express_number);
- break;
- case 'recerved':
- this.receivedOrder(item);
- break;
- case 'evaluate':
- this.$api.navTo('/pages/order/evaluate?product_id='+item.id+'&order_id='+item.order_id+'&image='+item.image+'&title='+item.title+'&spec='+item.spec);
- break;
- case 'refund':
- this.$api.navTo('/pages/order/refund?order_id=' + item.order_id);
- break;
- }
- },
- pullDownRefresh() {
- this.navList = [];
- this.navList = [{
- state: 0,
- text: '全部',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 1,
- text: '待付款',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 2,
- text: '待发货',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 3,
- text: '待收货',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 4,
- text: '评价',
- loadingType: 'more',
- orderList: [],
- page: 1
- },
- {
- state: 5,
- text: '售后',
- loadingType: 'more',
- orderList: [],
- page: 1
- }
- ];
- this.loadData();
- }
- },
- }
- </script>
- <style lang="scss">
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- }
- .swiper-box {
- height: calc(100% - 40px);
- }
- .list-scroll-content {
- height: 100%;
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, .06);
- position: relative;
- z-index: 10;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: $font-color-dark;
- position: relative;
- &.current {
- color: $base-color;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid $base-color;
- }
- }
- }
- }
- .uni-swiper-item {
- height: auto;
- }
- .order-item {
- display: flex;
- flex-direction: column;
- padding-left: 30upx;
- background: #fff;
- margin-top: 16upx;
- .i-top {
- display: flex;
- align-items: center;
- height: 80upx;
- padding-right: 30upx;
- font-size: $font-base;
- color: $font-color-dark;
- position: relative;
- .time {
- flex: 1;
- }
- .state {
- color: $base-color;
- }
- .del-btn {
- padding: 10upx 0 10upx 36upx;
- font-size: $font-lg;
- color: $font-color-light;
- position: relative;
- &:after {
- content: '';
- width: 0;
- height: 30upx;
- border-left: 1px solid $border-color-dark;
- position: absolute;
- left: 20upx;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- /* 多条商品 */
- .goods-box {
- height: 160upx;
- padding: 20upx 0;
- white-space: nowrap;
- .goods-item {
- width: 120upx;
- height: 120upx;
- display: inline-block;
- margin-right: 24upx;
- }
- .goods-img {
- display: block;
- width: 100%;
- height: 100%;
- }
- }
- /* 单条商品 */
- .goods-box-single {
- display: flex;
- padding: 20upx 0;
- .goods-img {
- display: block;
- width: 120upx;
- height: 120upx;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- padding: 0 30upx 0 24upx;
- overflow: hidden;
- position: relative;
- .title {
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- line-height: 1;
- }
- .attr-box {
- font-size: $font-sm + 2upx;
- color: $font-color-light;
- padding: 10upx 12upx;
- }
- .price {
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
- margin: 0 2upx 0 8upx;
- }
- }
- .action-btn{
- width: 160rpx;
- height: 60rpx;
- padding: 0;
- text-align: center;
- line-height: 60rpx;
- font-size: 26rpx;
- color: #303133;
- background: #fff;
- border-radius: 100px;
- float: right;
- position: absolute;
- right: 30rpx;
- bottom: 0;
- }
- .refund{
- position: absolute;
- right: 30rpx;
- font-size: 28rpx;
- color: #fa436a;
- top: 35rpx;
- }
- }
- }
- .price-box {
- display: flex;
- justify-content: flex-end;
- align-items: baseline;
- padding: 20upx 30upx;
- font-size: $font-sm + 2upx;
- color: $font-color-light;
- .num {
- margin: 0 8upx;
- color: $font-color-dark;
- }
- .price {
- font-size: $font-lg;
- color: $font-color-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
- margin: 0 2upx 0 8upx;
- }
- }
- }
- .action-box {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100upx;
- position: relative;
- padding-right: 30upx;
- }
- .action-btn {
- width: 160upx;
- height: 60upx;
- margin: 0;
- margin-left: 24upx;
- padding: 0;
- text-align: center;
- line-height: 60upx;
- font-size: $font-sm + 2upx;
- color: $font-color-dark;
- background: #fff;
- border-radius: 100px;
- &:after {
- border-radius: 100px;
- }
- &.recom {
- background: #fff9f9;
- color: $base-color;
- &:after {
- border-color: #f7bcc8;
- }
- }
- }
- }
- /* load-more */
- .uni-load-more {
- display: flex;
- flex-direction: row;
- height: 80upx;
- align-items: center;
- justify-content: center
- }
- .uni-load-more__text {
- font-size: 28upx;
- color: #999
- }
- .uni-load-more__img {
- height: 24px;
- width: 24px;
- margin-right: 10px
- }
- .uni-load-more__img>view {
- position: absolute
- }
- .uni-load-more__img>view view {
- width: 6px;
- height: 2px;
- border-top-left-radius: 1px;
- border-bottom-left-radius: 1px;
- background: #999;
- position: absolute;
- opacity: .2;
- transform-origin: 50%;
- animation: load 1.56s ease infinite
- }
- .uni-load-more__img>view view:nth-child(1) {
- transform: rotate(90deg);
- top: 2px;
- left: 9px
- }
- .uni-load-more__img>view view:nth-child(2) {
- transform: rotate(180deg);
- top: 11px;
- right: 0
- }
- .uni-load-more__img>view view:nth-child(3) {
- transform: rotate(270deg);
- bottom: 2px;
- left: 9px
- }
- .uni-load-more__img>view view:nth-child(4) {
- top: 11px;
- left: 0
- }
- .load1,
- .load2,
- .load3 {
- height: 24px;
- width: 24px
- }
- .load2 {
- transform: rotate(30deg)
- }
- .load3 {
- transform: rotate(60deg)
- }
- .load1 view:nth-child(1) {
- animation-delay: 0s
- }
- .load2 view:nth-child(1) {
- animation-delay: .13s
- }
- .load3 view:nth-child(1) {
- animation-delay: .26s
- }
- .load1 view:nth-child(2) {
- animation-delay: .39s
- }
- .load2 view:nth-child(2) {
- animation-delay: .52s
- }
- .load3 view:nth-child(2) {
- animation-delay: .65s
- }
- .load1 view:nth-child(3) {
- animation-delay: .78s
- }
- .load2 view:nth-child(3) {
- animation-delay: .91s
- }
- .load3 view:nth-child(3) {
- animation-delay: 1.04s
- }
- .load1 view:nth-child(4) {
- animation-delay: 1.17s
- }
- .load2 view:nth-child(4) {
- animation-delay: 1.3s
- }
- .load3 view:nth-child(4) {
- animation-delay: 1.43s
- }
- @-webkit-keyframes load {
- 0% {
- opacity: 1
- }
- 100% {
- opacity: .2
- }
- }
- </style>
|