Files
frontend-app/pages/mine_package/mine_order/components/salesStatus.vue
T

57 lines
1.2 KiB
Vue
Raw Normal View History

2025-08-31 23:59:51 +08:00
<template>
<!-- 退货退款进度icon -->
<view class="status_box">
<image class="status_img" :src="`https://cex-pub.s3.ap-southeast-1.amazonaws.com/static/mine-purse/icon_arrow_black_${status == 4 ? 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>