wangzhibo
6 天以前 da0230346106bc810664488a2b152bc24f853a44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
    <div class="info-item">
        <p>标题:{{ scope.title }}</p>
        <p>单号:{{ scope.orderNum }}</p>
    </div>
</template>
 
<script lang="ts" setup name="order-info-item">
import { type PropType } from "vue";
 
const props = defineProps({
    scope: {
        type: Object as PropType<Eps.OrderInfoEntity>,
        default: () => ({})
    }
});
</script>
 
<style lang="scss" scoped>
.info-item {
    text-align: left;
    font-size: 12px;
}
</style>