| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <template>
- <view class="content">
- <view class="navbar flex">
- <view class="nav-item" v-for="(navitem,index) in navList" :class="{'action': index == currentIndex}"
- @click="navClick(index)">
- {{navitem.tit}}
- </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 @click="goToOrderDetail(item)" v-for="(item, index) in tabItem.orderList" :key="index" class="order-item">
- <view class="i-top b-b">
- <text class="time">订单编号:{{ item.order_id }}</text>
- <text class="state" :style="{ color: item.stateTipColor }">{{ item._status._title }}</text>
- <text v-if="item.status === 4" class="del-btn iconfont icondelete" @click="deleteOrder(index)"></text>
- </view>
- <scroll-view v-if="item.cartInfo.length > 1" class="goods-box" scroll-x>
- <view v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex" class="goods-item">
- <image class="goods-img" :src="goodsItem.productInfo.image" mode="aspectFill"></image>
- </view>
- </scroll-view>
- <view class="goods-box-single" v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
- <image class="goods-img" :src="goodsItem.productInfo.image" mode="scaleToFill"></image>
- <view class="right">
- <view class="flex-start" style="justify-content: space-between;">
- <text class="title clamp">{{ goodsItem.productInfo.store_name }}</text>
- <text class="price">{{ moneyNum(goodsItem.truePrice) }}</text>
- </view>
- <view class="row flex">
- <text class="row_title">{{ goodsItem.productInfo.attrInfo ? goodsItem.productInfo.attrInfo.suk : '' }}</text>
- <text class="attr-box"> x {{ goodsItem.cart_num }}</text>
- </view>
- </view>
- </view>
-
- <view class="price-box">
- 共
- <text class="num">{{ item.cartInfo.length }}</text>
- 件商品 合计
- <text class="price">{{ moneyNum(item.pay_price)}}</text>
- (含邮费
- <text class="price">{{ moneyNum(item.pay_postage)}}</text>
- )
- </view>
- <view class="action-box b-t" v-if="item.status != 5">
- <button v-if="item._status._title == '未支付'" class="action-btn" @click.stop="cancelOrder(item)">取消订单</button>
- <button v-if="item._status._title == '未支付'" @click.stop="orderPay(item)" class="action-btn recom">付款</button>
- <button v-if="item._status._title == '待评价'" class="action-btn">评价</button>
- <button v-if="item._status._title == '待收货'" @click.stop="orderTake(item, index)" class="action-btn">确认收货</button>
- <!-- <button v-if="item._status._title == '未发货'" class="action-btn" @click.stop="orderRefund(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 {
- currentIndex: 0,
- navList: [{
- status: 'today',
- tit: '当天预约',
- orderList: [],
- page: 1,
- limit: 10,
- loadingType: 'more',
- loaded: false,
- },
- {
- status: 1,
- tit: '待支付',
- orderList: [],
- page: 1,
- limit: 10,
- loadingType: 'more',
- loaded: false,
- },
- ],
- }
- },
- onLoad() {
-
- },
- methods: {
- navClick(index) {
- this.currentIndex = index
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .navbar {
- background-color: #fff;
- height: 40px;
-
- .nav-item {
- width: 50%;
- text-align: center;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
-
- .action {
- font-weight: bold;
- position: relative;
- color: #FF4C4C;
- &::after {
- content: '';
- width: 84rpx;
- height: 4rpx;
- background: #FF4C4C;
- border-radius: 2px;
- position: absolute;
- bottom: -20rpx;
- left: 0;
- right: 0;
- margin: auto;
- }
- }
- }
- .swiper-box {
- height: calc(100% - 40px);
- }
- .list-scroll-content {
- height: 100%;
- }
- .order-item {
- display: flex;
- flex-direction: column;
- padding-left: 30rpx;
- background: #fff;
- margin-top: 16rpx;
- .i-top {
- display: flex;
- align-items: center;
- height: 80rpx;
- padding-right: 30rpx;
- font-size: $font-base;
- color: $font-color-dark;
- position: relative;
- .time {
- flex: 1;
- }
- .state {
- color: $base-color;
- }
- .del-btn {
- padding: 10rpx 0 10rpx 36rpx;
- font-size: $font-lg;
- color: $font-color-light;
- position: relative;
- &:after {
- content: '';
- width: 0;
- height: 30rpx;
- border-left: 1px solid $border-color-dark;
- position: absolute;
- left: 20rpx;
- top: 50%;
- transform: translateY(-50%);
- }
- }
- }
- /* 多条商品 */
- .goods-box {
- height: 160rpx;
- padding: 20rpx 0;
- white-space: nowrap;
- .goods-item {
- width: 120rpx;
- height: 120rpx;
- display: inline-block;
- margin-right: 24rpx;
- }
- .goods-img {
- display: block;
- width: 100%;
- height: 100%;
- }
- }
- /* 单条商品 */
- .goods-box-single {
- display: flex;
- padding: 20rpx 0;
- .goods-img {
- display: block;
- width: 120rpx;
- height: 120rpx;
- }
- .right {
- flex: 1;
- display: flex;
- flex-direction: column;
- padding: 0 30rpx 0 24rpx;
- overflow: hidden;
- .row{
- margin-top: 10rpx;
- }
- .row_title{
- padding:5rpx 10rpx;
- background-color: #dddddd;
- border-radius: 10rpx;
- font-size: 22rpx;
- color: #ffffff;
- }
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- line-height: 1;
- width: 80%;
- }
- .attr-box {
- display: flex;
- justify-content: flex-end;
- font-size: $font-sm + 2rpx;
- color: $font-color-light;
- }
- .price {
- display: inline;
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
-
- }
- }
- }
- }
- .price-box {
- display: flex;
- justify-content: flex-end;
- align-items: baseline;
- padding: 20rpx 30rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-light;
- .num {
- margin: 0 8rpx;
- color: $font-color-dark;
- }
- .price {
- font-size: $font-lg;
- color: $font-color-dark;
- &:before {
- content: '¥';
- font-size: $font-sm;
- margin: 0 2rpx 0 8rpx;
- }
- }
- }
- .action-box {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100rpx;
- position: relative;
- padding-right: 30rpx;
- }
- .action-btn {
- width: 160rpx;
- height: 60rpx;
- margin: 0;
- margin-left: 24rpx;
- padding: 0;
- text-align: center;
- line-height: 60rpx;
- font-size: $font-sm + 2rpx;
- color: $font-color-dark;
- background: #fff;
- border-radius: 100px;
- &:after {
- border-radius: 100px;
- }
- &.recom {
- color: $base-color;
- &:after {
- border-color: $base-color;
- }
- }
- &.evaluate {
- color: $color-yellow;
- &:after {
- border-color: $color-yellow;
- }
- }
- }
- }
- </style>
|