ContactBasicInfo.vue 644 B

123456789101112131415161718192021222324
  1. <!--
  2. * @Author: zyna
  3. * @Date: 2023-11-11 14:50:11
  4. * @LastEditTime: 2023-11-11 14:52:47
  5. * @FilePath: \yudao-ui-admin-vue3\src\views\crm\contact\detail\ContactBasicInfo.vue
  6. * @Description:
  7. -->
  8. <template>
  9. <el-col>
  10. <el-row>
  11. <span class="text-xl font-bold">{{ contact.name }}</span>
  12. </el-row>
  13. </el-col>
  14. <el-col class="mt-10px">
  15. <!-- TODO 标签 -->
  16. <!-- <Icon icon="ant-design:tag-filled" />-->
  17. </el-col>
  18. </template>
  19. <script setup lang="ts">
  20. // TODO 芋艿:后面在 review 么?
  21. import * as ContactApi from '@/api/crm/contact'
  22. const { contact } = defineProps<{ contact: ContactApi.ContactVO }>()
  23. </script>