|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<el-form :model="searchForm" label-width="0" inline>
|
|
|
|
<el-form-item>
|
|
|
|
<el-date-picker
|
|
|
|
v-model="searchForm.period"
|
|
|
|
type="month"
|
|
|
|
format="YYYY-MM"
|
|
|
|
value-format="YYYY-MM"
|
|
|
|
placeholder="选择年月"
|
|
|
|
:clearable="false"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-tree-select
|
|
|
|
v-model="searchForm.sourceId"
|
|
|
|
:data="props.sourceOptions"
|
|
|
|
:props="defaultProps"
|
|
|
|
check-strictly
|
|
|
|
filterable
|
|
|
|
node-key="sourceId"
|
|
|
|
placeholder="请选择渠道"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button @click="handleSearch">查询</el-button>
|
|
|
|
<el-button @click="handleReset">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
v-loading="loading"
|
|
|
|
:data="tableList"
|
|
|
|
border
|
|
|
|
stripe
|
|
|
|
:summary-method="getSummaries"
|
|
|
|
show-summary
|
|
|
|
>
|
|
|
|
<el-table-column prop="sourceName" label="渠道名称" />
|
|
|
|
<el-table-column prop="newClueSignNum" label="新线索当月成交数" sortable>
|
|
|
|
<template #header>
|
|
|
|
<Tooltip message="当月咨询且当月成交的线索数" /> <span>新线索当月成交数</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="newClueNum" label="新线索总数" sortable>
|
|
|
|
<template #header>
|
|
|
|
<Tooltip message="当月咨询的线索数" /> <span>新线索总数</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="rate" label="新线索当月成交率" sortable :formatter="parseRate" />
|
|
|
|
<el-table-column prop="reallyClueSignNum" sortable>
|
|
|
|
<template #header>
|
|
|
|
<Tooltip message="成交日期在本月的线索数" /> <span>当月总成交数</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="ChannelMonthly">
|
|
|
|
import * as reportApi from '@/api/home/reportChannel'
|
|
|
|
import { removeNullField } from '@/utils'
|
|
|
|
import { formatDate } from '@/utils/formatTime'
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
sourceOptions: {
|
|
|
|
type: Array,
|
|
|
|
default: () => []
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
children: 'children',
|
|
|
|
label: 'sourceName',
|
|
|
|
value: 'sourceId',
|
|
|
|
isLeaf: 'leaf'
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
getOptions()
|
|
|
|
handleReset()
|
|
|
|
handleSearch()
|
|
|
|
})
|
|
|
|
|
|
|
|
const searchForm = ref({})
|
|
|
|
|
|
|
|
function handleReset() {
|
|
|
|
searchForm.value = {
|
|
|
|
sourceId: undefined,
|
|
|
|
period: formatDate(new Date(), 'YYYY-MM')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getOptions() {}
|
|
|
|
|
|
|
|
const loading = ref(false)
|
|
|
|
const tableList = ref([])
|
|
|
|
async function handleSearch() {
|
|
|
|
loading.value = true
|
|
|
|
try {
|
|
|
|
const data = await reportApi.getList(removeNullField(searchForm.value))
|
|
|
|
tableList.value = data
|
|
|
|
} finally {
|
|
|
|
loading.value = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseRate(row) {
|
|
|
|
return Number(row.rate * 100).toFixed(2) + '%'
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSummaries({ columns, data }) {
|
|
|
|
let sums = []
|
|
|
|
columns.forEach((column, index) => {
|
|
|
|
if (index == 0) {
|
|
|
|
sums[index] = '合计'
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const values = data.map((item) => Number(item[column.property]))
|
|
|
|
if (!values.every((value) => Number.isNaN(value))) {
|
|
|
|
if (column.property == 'rate') {
|
|
|
|
const sum = data.reduce(
|
|
|
|
(pre, cur) => ({
|
|
|
|
clueNum: pre.clueNum + cur.newClueNum,
|
|
|
|
signNum: pre.signNum + cur.newClueSignNum
|
|
|
|
}),
|
|
|
|
{ clueNum: 0, signNum: 0 }
|
|
|
|
)
|
|
|
|
sums[index] = sum.clueNum > 0 ? ((sum.signNum * 100) / sum.clueNum).toFixed(2) + '%' : 0
|
|
|
|
} else {
|
|
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
|
|
const value = Number(curr)
|
|
|
|
if (!Number.isNaN(value)) {
|
|
|
|
return prev + curr
|
|
|
|
} else {
|
|
|
|
return prev
|
|
|
|
}
|
|
|
|
}, 0)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sums[index] = ''
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return sums
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|