123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view class="cf-logistics">
- <pub-loading-view :loaded="loaded" height="100%">
- <view class="no-data" v-if="!dataList.no || dataList.statusList.length == 0">
- <image mode="heightFix" src="/static/image/no-data.png" />
- 暂无数据
- </view>
- <view v-else>
- <view class="cf-logistics-top">
- <view class="icon"><text class="iconfont"></text></view>
- {{dataList.no}}
- <view class="copy-icon" @click="onCopy(dataList.no)"> <text class="iconfont"></text></view>
- </view>
- <view class="logistics-list">
- <view class="logistics-item" :class="item.className" v-for="item in dataList.statusList" :key="item.id">
- <view class="logistics-item-left">
- <view class="icon" v-if='item.icon'>
- <text class="iconfont"></text>
- </view>
- <view class="icon" :class="item.className" v-else-if="item.className=='is-finish'">
- 收
- </view>
- <view class="dot" v-else></view>
- <view class="line"></view>
- </view>
- <view class="logistics-item-right">
- <view class="logistics-item-title" v-if="item.title">{{item.title}}</view>
- <view class="logistics-item-time">{{item.time}}</view>
- <view>{{item.message}}</view>
- </view>
- </view>
- </view>
- </view>
- </pub-loading-view>
- </view>
- </template>
- <script lang="ts" setup>
- import { ref, onMounted, PropType } from 'vue'
- const props = defineProps({
- dataList: {
- type: Object as PropType<any>,
- default: () => ({})
- },
- })
- const loaded = ref(false)
- const onCopy = (value : string) => {
- uni.setClipboardData({
- data: value, //要被复制的内容
- success: () => { //复制成功的回调函数
- uni.showToast({ //提示
- title: '复制成功'
- })
- }
- });
- }
- onMounted(() => {
- })
- </script>
- <style lang="scss" scoped>
- .cf-logistics {
- background: #fff;
- padding: $uni-spacing-col-s3 $page-row-spacing;
- height: 100%;
- box-sizing: border-box;
- overflow-y: auto;
- .icon {
- width: 64rpx;
- height: 64rpx;
- background: $uni-bg-icon;
- border-radius: 50%;
- @include flex-center;
- .iconfont {
- background: linear-gradient(180deg, #46ACFF 0%, $uni-color-primary 100%);
- background-clip: text;
- text-fill-color: transparent;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- .cf-logistics-top {
- @include flex;
- margin-bottom: 32rpx;
- .icon {
- background: $uni-color-primary-light;
- margin-right: 24rpx;
- }
- .copy-icon {
- margin-left: 16rpx;
- }
- }
- .logistics-list {
- overflow-y: auto;
- flex: 1;
- height: calc(100% - 96rpx);
- .logistics-item {
- color: $uni-text-color-grey;
- display: flex;
- min-height: 140rpx;
- .logistics-item-left {
- @include flex;
- flex-direction: column;
- margin-right: 24rpx;
- .icon {
- .iconfont {
- background: linear-gradient(180deg, #C2CFE7 0%, #899AB9 100%);
- background-clip: text;
- text-fill-color: transparent;
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- &.is-finish {
- background: $uni-color-primary;
- color: #fff;
- }
- }
- .dot {
- width: 24rpx;
- height: 24rpx;
- background: $uni-border-color;
- border-radius: 50%;
- margin: 0 20rpx;
- }
- .line {
- flex: 1;
- // width: 1px;
- border-left: 1px dashed $uni-border-color;
- margin: 12rpx 0;
- }
- }
- .logistics-item-right {
- margin-bottom: 32rpx;
- font-size: 24rpx;
- line-height: $uni-line-height-sm;
- .logistics-item-title {
- font-size: 28rpx;
- line-height: $uni-line-height-base;
- margin-bottom: 8rpx;
- }
- .logistics-item-time {
- margin-bottom: 8rpx;
- }
- }
- &.is-finish {
- .logistics-item-left {
- .line {
- border-left: 1px dashed $uni-color-primary;
- }
- }
- .logistics-item-right {
- color: $uni-text-color;
- .logistics-item-title {
- font-weight: 800;
- }
- }
- }
- &:last-child {
- .logistics-item-left {
- .line {
- display: none;
- }
- }
- }
- }
- }
- }
- </style>
|