ludu-admin-vue3/src/views/crm/customer/detail/CustomerBasicInfo.vue

17 lines
414 B
Vue
Raw Normal View History

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