sl-express/project-wl-kuaidiyuan-uniap.../pages/search/components/Canceled.vue

25 lines
585 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--已取消-->
<template>
<view class="expressage" v-if="item.taskType === 1 && item.status === 3">
<view class="cancelList">
<view class="item">
<view>寄件人{{ item.name }}</view>
<view>取件地址{{ item.address }}</view>
<view>取消原因{{ item.cancelReason }}</view>
<view>原因描述{{ item.cancelReasonDescription }}</view>
</view>
</view>
</view>
</template>
<script setup>
// 获取父组件数据
const props = defineProps({
item: {
type: Object,
default: () => ({}),
},
});
</script>