ludu-admin-vue3/src/views/crm/customer/detail/CustomerBasicInfo.vue
2023-11-29 13:55:53 +08:00

19 lines
416 B
Vue

<template>
<el-col>
<el-row>
<span class="text-xl font-bold">{{ customer.name }}</span>
</el-row>
</el-col>
<el-col class="mt-10px">
<!-- TODO 标签 -->
<!-- <Icon icon="ant-design:tag-filled" />-->
</el-col>
</template>
<script setup lang="ts">
import * as CustomerApi from '@/api/crm/customer'
const { customer } = defineProps<{
customer: CustomerApi.CustomerVO
}>()
</script>