Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6acfc77d
authored
Apr 15, 2024
by
puhui999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRM: 完善销售漏斗
parent
25122530
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
8 deletions
+25
-8
src/api/crm/statistics/funnel.ts
+4
-4
src/views/crm/statistics/funnel/components/BusinessSummary.vue
+2
-2
src/views/crm/statistics/funnel/components/FunnelBusiness.vue
+19
-2
No files found.
src/api/crm/statistics/funnel.ts
View file @
6acfc77d
...
...
@@ -3,13 +3,13 @@ import request from '@/config/axios'
export
interface
CrmStatisticFunnelRespVO
{
customerCount
:
number
// 客户数
businessCount
:
number
// 商机数
w
inCount
:
number
// 赢单数
businessW
inCount
:
number
// 赢单数
}
export
interface
CrmStatisticsBusinessSummaryByDateRespVO
{
time
:
string
// 时间
businessCreateCount
:
number
// 商机数
businessDealCount
:
number
// 商机金额
totalPrice
:
number
|
string
// 商机金额
}
// 客户分析 API
...
...
@@ -22,9 +22,9 @@ export const StatisticFunnelApi = {
})
},
// 2. 获取商机结束状态统计
getBusiness
EndStatusSummary
:
(
params
:
any
)
=>
{
getBusiness
SummaryByEndStatus
:
(
params
:
any
)
=>
{
return
request
.
get
({
url
:
'/crm/statistics-funnel/get-business-
end-status-summary
'
,
url
:
'/crm/statistics-funnel/get-business-
summary-by-end-status
'
,
params
})
},
...
...
src/views/crm/statistics/funnel/components/BusinessSummary.vue
View file @
6acfc77d
...
...
@@ -118,7 +118,7 @@ const queryParams0 = reactive({
const
loading
=
ref
(
false
)
// 加载中
const
list
=
ref
([])
// 列表的数据
const
total
=
ref
(
0
)
/** 将传进来的值赋值给
formData
*/
/** 将传进来的值赋值给
queryParams0
*/
watch
(
()
=>
props
.
queryParams
,
(
data
)
=>
{
...
...
@@ -216,7 +216,7 @@ const fetchAndFill = async () => {
}
if
(
echartsOption
.
series
&&
echartsOption
.
series
[
1
]
&&
echartsOption
.
series
[
1
][
'data'
])
{
echartsOption
.
series
[
1
][
'data'
]
=
businessSummaryByDate
.
map
(
(
s
:
CrmStatisticsBusinessSummaryByDateRespVO
)
=>
s
.
businessDealCount
(
s
:
CrmStatisticsBusinessSummaryByDateRespVO
)
=>
s
.
totalPrice
)
}
...
...
src/views/crm/statistics/funnel/components/FunnelBusiness.vue
View file @
6acfc77d
...
...
@@ -4,6 +4,10 @@
<el-card
shadow=
"never"
>
<el-row>
<el-col
:span=
"24"
>
<el-button-group
class=
"mb-10px"
>
<el-button
type=
"primary"
@
click=
"handleActive(true)"
>
客户视角
</el-button>
<el-button
type=
"primary"
@
click=
"handleActive(false)"
>
动态视角
</el-button>
</el-button-group>
<el-skeleton
:loading=
"loading"
animated
>
<Echart
:height=
"500"
:options=
"echartsOption"
/>
</el-skeleton>
...
...
@@ -35,6 +39,7 @@ import { FunnelChart } from 'echarts/charts'
defineOptions
({
name
:
'FunnelBusiness'
})
const
props
=
defineProps
<
{
queryParams
:
any
}
>
()
// 搜索参数
const
active
=
ref
(
true
)
const
loading
=
ref
(
false
)
// 加载中
const
list
=
ref
<
CrmStatisticFunnelRespVO
[]
>
([])
// 列表的数据
...
...
@@ -101,6 +106,11 @@ const echartsOption = reactive<EChartsOption>({
]
}) as EChartsOption
const handleActive = async (val: boolean) => {
active.value = val
await loadData()
}
/** 获取统计数据 */
const loadData = async () => {
loading.value = true
...
...
@@ -117,13 +127,20 @@ const loadData = async () => {
) {
// tips:写死 value 值是为了保持漏斗顺序不变
const list: { value: number; name: string }[] = []
if (active.value) {
list.push({ value: 60, name: `客户-${data.customerCount || 0}个` })
list.push({ value: 40, name: `商机-${data.businessCount || 0}个` })
list.push({ value: 20, name: `赢单-${data.winCount || 0}个` })
list.push({ value: 20, name: `赢单-${data.businessWinCount || 0}个` })
} else {
list.push({ value: data.customerCount || 0, name: `客户-${data.customerCount || 0}个` })
list.push({ value: data.businessCount || 0, name: `商机-${data.businessCount || 0}个` })
list.push({ value: data.businessWinCount || 0, name: `赢单-${data.businessWinCount || 0}个` })
}
echartsOption.series[0]['
data
'
]
=
list
}
// 2.2 获取商机结束状态统计
list
.
value
=
await
StatisticFunnelApi
.
getBusiness
EndStatusSummary
(
props
.
queryParams
)
list
.
value
=
await
StatisticFunnelApi
.
getBusiness
SummaryByEndStatus
(
props
.
queryParams
)
loading
.
value
=
false
}
defineExpose
({
loadData
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment