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

19 lines
416 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'
2023-11-26 20:18:33 +08:00
const { customer } = defineProps<{
customer: CustomerApi.CustomerVO
}>()
2023-11-04 03:21:01 +08:00
</script>