AlreadyPicUp.vue
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!--已取件-->
<template>
<view class="item" v-if="item.taskType === 1 && item.status === 2">
<view class="titInfo">订单号:SD{{ item.orderId }}</view>
<view class="address">寄件人:{{ item.name }}</view>
<view class="address">取件地址:{{ item.address }}</view>
<view class="time">取件时间:{{ item.taskTime }}</view>
<view
class="time"
v-if="item.amount > 0 && item.status === 2 && item.paymentMethod === 1"
>运费:{{ item.amount }}元</view
>
<text
@click.stop="handleDetails($event, item)"
class="delete"
v-if="
item.status === 2 &&
item.paymentStatus === 1 &&
item.paymentMethod === 1
"
>
<button class="uni-btn btn-default">去收款</button>
</text>
</view>
</template>
<script setup>
// 获取父组件数据
const props = defineProps({
item: {
type: Object,
default: () => ({}),
},
});
const emit = defineEmits(""); //子组件向父组件事件传递
//进入已取件详情
const handleDetails = (e, item) => {
emit("handleDetails", e, item);
};
</script>