wangzhibo
6 天以前 7bd866831780abcf5a59c4cbb7d1be456eea7c99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
    <div class="pay-item">
        <el-tag v-if="scope.payType == 0" effect="dark" type="info">未支付</el-tag>
        <el-tag v-else-if="scope.payType == 1" effect="dark" color="#2aae67">微信</el-tag>
        <el-tag v-else-if="scope.payType == 2" effect="dark" color="#1678FF">支付宝</el-tag>
 
        <p :style="{ marginTop: '5px' }">{{ scope.payTime }}</p>
    </div>
</template>
 
<script lang="ts" setup name="order-pay-item">
import { type PropType } from "vue";
 
const props = defineProps({
    scope: {
        type: Object as PropType<Eps.OrderInfoEntity>,
        default: () => ({})
    }
});
</script>