File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
src/views/crm/customer/detail Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <el-col > 客户 </el-col >
3
2
<el-col >
4
3
<el-row >
5
4
<span class =" text-xl font-bold" >{{ customer.name }}</span >
6
5
</el-row >
7
6
</el-col >
8
7
<el-col class =" mt-10px" >
9
- <Icon icon =" ant-design:tag-filled" />
10
8
<!-- TODO 标签 -->
9
+ <!-- <Icon icon="ant-design:tag-filled" />-->
11
10
</el-col >
12
11
</template >
13
12
<script setup lang="ts">
14
13
import * as CustomerApi from ' @/api/crm/customer'
15
14
16
15
const { customer } = defineProps <{ customer: CustomerApi .CustomerVO }>()
17
16
</script >
18
- <style scoped lang="scss"></style >
Original file line number Diff line number Diff line change 4
4
<template #title >
5
5
<span class =" text-base font-bold" >基本信息</span >
6
6
</template >
7
- <el-descriptions :column =" 2 " >
7
+ <el-descriptions :column =" 4 " >
8
8
<el-descriptions-item label =" 客户名称" >
9
9
{{ customer.name }}
10
10
</el-descriptions-item >
71
71
<el-descriptions-item label =" 更新时间" >
72
72
{{ customer.updateTime ? formatDate(customer.updateTime) : '空' }}
73
73
</el-descriptions-item >
74
+ <!-- TODO wanwan:要不把“最后跟进时间”放到“下次联系时间”后面 -->
74
75
<el-descriptions-item label =" 最后跟进时间" >
75
76
{{ customer.contactLastTime ? formatDate(customer.contactLastTime) : '空' }}
76
77
</el-descriptions-item >
Original file line number Diff line number Diff line change 63
63
</el-descriptions-item >
64
64
</el-descriptions >
65
65
</ContentWrap >
66
+ <!-- TODO wanwan:这个 tab 拉满哈,可以更好看; -->
66
67
<el-col :span =" 18" >
67
68
<el-tabs >
68
69
<el-tab-pane label =" 详细资料" >
70
+ <!-- TODO wanwan:这个 ml-2 是不是可以优化下,不要整个左移,而是里面的内容有个几 px 的偏移,不顶在框里 -->
69
71
<CustomerDetails class =" ml-2" :customer =" customer" />
70
72
</el-tab-pane >
71
73
<el-tab-pane label =" 活动" lazy > 活动</el-tab-pane >
@@ -150,5 +152,3 @@ onMounted(() => {
150
152
getCustomerData (id )
151
153
})
152
154
</script >
153
-
154
- <style scoped lang="scss"></style >
You can’t perform that action at this time.
0 commit comments