CustomerBasicInfo.vue 416 B

123456789101112131415161718
  1. <template>
  2. <el-col>
  3. <el-row>
  4. <span class="text-xl font-bold">{{ customer.name }}</span>
  5. </el-row>
  6. </el-col>
  7. <el-col class="mt-10px">
  8. <!-- TODO 标签 -->
  9. <!-- <Icon icon="ant-design:tag-filled" />-->
  10. </el-col>
  11. </template>
  12. <script setup lang="ts">
  13. import * as CustomerApi from '@/api/crm/customer'
  14. const { customer } = defineProps<{
  15. customer: CustomerApi.CustomerVO
  16. }>()
  17. </script>