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

19 lines
466 B
Vue
Raw Normal View History

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