emis-sapp/components/buns-locus-pos/buns-locus-pos.vue
2023-12-14 01:46:04 +08:00

69 lines
1.2 KiB
Vue

<template>
<u-steps direction="column" activeColor="#969799">
<u-steps-item v-for="(item, index) in list"
>
<template v-slot:icon>
<u-image width="60" height="60" :src="getCdnUrl(`${current == index + 1?'post/hwu-check.png':'post/hwu-un.png'}`)"></u-image>
</template>
<template v-slot:title>
<view class="clr-sub pl-20">
2023-04-30 15:25
</view>
</template>
<template v-slot:desc>
<view class="kydec mt-10 pl-20">
您的快件正在派送中,请您准备签收(快递员: 王麻子,联系电话: 13812345678)
</view>
</template>
</u-steps-item>
</u-steps>
</template>
<script>
import getCdnUrl from "@/common/getCdnUrl"
export default {
// computed: {
// filDataList() {
// return []
// },
// },
props: {
list: {
default () {
return []
}
},
current: {
default () {
return 1
}
}
},
data() {
return {
}
},
created() {
},
onHide() {
},
destroyed() {},
methods: {
getCdnUrl,
}
}
</script>
<style scoped lang="scss">
.kydec{
padding: 20rpx;
background: #F6F6F6;
border-radius: 20rpx;
word-wrap: break-word;
width: 580rpx;
}
</style>