📈 CRM:code review 联系人商机功能

This commit is contained in:
YunaiV
2023-12-06 19:26:39 +08:00
parent d6291382e8
commit ce79dd68a3
7 changed files with 82 additions and 56 deletions

View File

@ -65,13 +65,13 @@
</el-collapse>
</template>
<script setup lang="ts">
// TODO 芋艿:后面在 review 么?
import * as ContactApi from '@/api/crm/contact'
import { DICT_TYPE } from '@/utils/dict'
import { formatDate } from '@/utils/formatTime'
const { contact } = defineProps<{ contact: ContactApi.ContactVO }>()
const { contact } = defineProps<{
contact: ContactApi.ContactVO
}>()
// 展示的折叠面板
const activeNames = ref(['basicInfo', 'systemInfo'])
</script>
<style scoped lang="scss"></style>