57 lines
1.2 KiB
Vue
57 lines
1.2 KiB
Vue
<template>
|
|
<!-- 退货退款进度icon -->
|
|
<view class="status_box">
|
|
<image class="status_img" :src="`https://static.tbmall.xin/static/mine-purse/icon_arrow_black_${(status == 4 || status == 6) ? 2 :status == 5 ? 3 : 1}.png`"></image>
|
|
<view class="status_name">{{ topTitle }}</view>
|
|
<view class="status_tip">{{ topLabel }}</view>
|
|
<view class="line"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'salesStatus',
|
|
props: {
|
|
topLabel: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
topTitle: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
status: {
|
|
type: Number,
|
|
default: 0
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.status_box {
|
|
|
|
text-align: center;
|
|
.status_img {
|
|
width: 108rpx;
|
|
height: 108rpx;
|
|
}
|
|
.status_name {
|
|
margin-top: 20rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
}
|
|
.status_tip {
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
margin: 20rpx 0;
|
|
}
|
|
.line {
|
|
width: 100%;
|
|
height: 16rpx;
|
|
background-color: #f5f5f7;
|
|
margin-bottom: 48rpx;
|
|
}
|
|
}
|
|
</style>
|