vue3/src/views/crm/contact/detail/ContactBasicInfo.vue

25 lines
644 B
Vue
Raw Normal View History

2023-11-11 23:35:18 +08:00
<!--
* @Author: zyna
* @Date: 2023-11-11 14:50:11
* @LastEditTime: 2023-11-11 14:52:47
* @FilePath: \yudao-ui-admin-vue3\src\views\crm\contact\detail\ContactBasicInfo.vue
2023-11-18 21:08:00 +08:00
* @Description:
2023-11-11 23:35:18 +08:00
-->
<template>
<el-col>
<el-row>
<span class="text-xl font-bold">{{ contact.name }}</span>
</el-row>
</el-col>
<el-col class="mt-10px">
<!-- TODO 标签 -->
<!-- <Icon icon="ant-design:tag-filled" />-->
</el-col>
</template>
<script setup lang="ts">
2023-11-18 21:08:00 +08:00
// TODO 芋艿:后面在 review 么?
2023-11-11 23:35:18 +08:00
import * as ContactApi from '@/api/crm/contact'
const { contact } = defineProps<{ contact: ContactApi.ContactVO }>()
</script>