You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.9 KiB
104 lines
2.9 KiB
<script>
|
|
import countDown from '@/components/countDown';
|
|
export default {
|
|
components: { countDown },
|
|
inject: ['intoPage', 'goMenuPage'],
|
|
props: {
|
|
orderMenu: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
orderStyle: {
|
|
type: Number | String,
|
|
default: 0
|
|
},
|
|
notPayOrder: {
|
|
type: Object,
|
|
default: () => {}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<view class="">
|
|
<view class="pt-34 pr-24 pb-32 pl-24 bgfot rd-16rpx mt-20 order-wrapper ml-20 mr-20">
|
|
<view class="flex-between-center">
|
|
<text class="fs-30 fw-500 lh-42rpx colorfff">订单中心</text>
|
|
<view class="flex-y-center text--w111-999" @click="intoPage('/pages/goods/order_list/index')">
|
|
<text class="fs-26 lh-26rpx">查看全部</text>
|
|
<text class="iconfont icon-ic_rightarrow fs-24"></text>
|
|
</view>
|
|
</view>
|
|
<view class="flex-between-center mt-30" :class="{ theme: orderStyle == 2 }">
|
|
<view class="w-128 flex-col flex-center item" v-for="item in orderMenu" :key="item.title" @click="intoPage(item.url)">
|
|
<text :class="item.icon" class="iconfont fs-48"></text>
|
|
<text class="fs-26 lh-36rpx colorhui1 pt-22">{{ item.title }}</text>
|
|
<!-- <uni-badge class="uni-badge-left-margin" v-if="item.num > 0" :text="item.num"></uni-badge> -->
|
|
</view>
|
|
</view>
|
|
<view class="w-full h-120 rd-16rpx bg--w111-f5f5f5 mt-32 p-10 flex-between-center" v-if="notPayOrder=='10'" @click="intoPage('/pages/goods/order_list/index?status=0')">
|
|
<view class="flex-y-center">
|
|
<image :src="notPayOrder.img" class="w-100 h-100 rd-12rpx"></image>
|
|
<view class="ml-16">
|
|
<view class="fs-24 lh-34rpx text--w111-333 fw-500">等待付款</view>
|
|
<view class="fs-22 lh-30rpx text--w111-333 mt-12 flex-y-center">
|
|
还剩
|
|
<!-- <text class="text-primary-con SemiBold">23:57:16</text> -->
|
|
<countDown
|
|
:is-day="false"
|
|
tip-text=" "
|
|
day-text=" "
|
|
hour-text=":"
|
|
minute-text=":"
|
|
second-text=" "
|
|
:datatime="notPayOrder.stop_time"
|
|
bgColor="#F5F5F5"
|
|
colors="var(--view-theme)"
|
|
dotColor="var(--view-theme)"
|
|
@endTime="getMenuData"
|
|
></countDown>
|
|
订单自动关闭
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="w-136 h-56 rd-30rpx flex-center fs-24 fw-500 text-primary-con con_border mr-14">去支付</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.order-wrapper {
|
|
.uni-badge-left-margin {
|
|
position: absolute;
|
|
top: -12rpx;
|
|
right: 24rpx;
|
|
.uni-badge--error {
|
|
background-color: #fff !important;
|
|
}
|
|
/deep/ .uni-badge--error {
|
|
background-color: var(--view-theme) !important;
|
|
}
|
|
.uni-badge {
|
|
color: var(--view-theme);
|
|
border: 1px solid var(--view-theme);
|
|
z-index: 29;
|
|
}
|
|
}
|
|
.con_border {
|
|
color: var(--view-theme);
|
|
border: 1px solid var(--view-theme);
|
|
}
|
|
.image {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
}
|
|
.theme .iconfont {
|
|
color: #F8BF1F;
|
|
}
|
|
.item {
|
|
position: relative;
|
|
}
|
|
}
|
|
</style> |