123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <template>
- <div class="statistics-call-talk-time-container layout-padding">
- <div class="layout-padding-auto layout-padding-view pd20">
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
- <el-form-item prop="crTime">
- <statistical-time v-model="state.queryParams.crTime" @change="handleQuery" ref="statisticalTimeRef" :disabled="state.loading"/>
- </el-form-item>
- <el-form-item label="热线号码" prop="source">
- <el-select v-model="state.queryParams.source" placeholder="请选择热线号码" clearable @change="handleQuery">
- <el-option v-for="item in state.callForwardingSource" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName" />
- </el-select>
- </el-form-item>
- <el-form-item label-width="0">
- <el-button type="primary" @click="handleQuery" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
- <el-button @click="resetQuery(ruleFormRef)" class="default-button" :loading="state.loading">
- <SvgIcon name="ele-Refresh" class="mr5" />重置
- </el-button>
- <el-popover :width="500" trigger="click">
- <template #reference>
- <el-button type="primary" title="口径说明"><SvgIcon name="ele-QuestionFilled" class="mr5"/>口径说明</el-button>
- </template>
- <el-descriptions title="" :column="1" border style="max-height: 400px; overflow: auto">
- <el-descriptions-item label="时间段">以每小时为时间段</el-descriptions-item>
- <el-descriptions-item label="呼入总量">呼入总数量</el-descriptions-item>
- <el-descriptions-item label="有效接通">呼入时长大于15秒的接通量</el-descriptions-item>
- <el-descriptions-item label="接通秒挂">(无效接通):呼入时长小于15秒的接通量</el-descriptions-item>
- <el-descriptions-item label="挂机量">呼入未接通量</el-descriptions-item>
- <el-descriptions-item label="队列挂断">在队列等待中挂断</el-descriptions-item>
- <el-descriptions-item label="IVR挂断">语音提示等待中挂断</el-descriptions-item>
- </el-descriptions>
- </el-popover>
- <el-button type="primary" @click="onDetail" :loading="state.loading"> 通话时段分析 </el-button>
- </el-form-item>
- </el-form>
- <vxe-toolbar
- ref="toolbarRef"
- :loading="state.loading"
- custom
- :refresh="{
- queryMethod: handleQuery
- }"
- :tools="[{ toolRender: { name: 'exportAll' } }]"
- >
- </vxe-toolbar>
- <div style="overflow: hidden; width: 100%; height: 100%; flex: 1">
- <vxe-table
- border
- :loading="state.loading"
- :data="state.tableData"
- :column-config="{ resizable: true }"
- :row-config="{ isCurrent: true, isHover: true, height: 30, keyField: 'id',useKey: true }"
- ref="tableRef"
- height="auto"
- auto-resize
- show-overflow
- :scrollY="{ enabled: true, gt: 100 }"
- id="statisticsCallTalkTime"
- :custom-config="{ storage: true }"
- showHeaderOverflow
- :params="{ exportMethod: callPeriodExport, exportParams: requestParams }"
- show-footer
- :footer-method="footerMethod"
- >
- <vxe-column field="hourTo" title="时间段"></vxe-column>
- <vxe-column field="count" title="呼入总量">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.count}}
- </el-button>
- </template>
- </vxe-column>
- <vxe-column field="effectiveCount" title="有效接通">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.effectiveCount}}
- </el-button>
- </template>
- </vxe-column>
- <vxe-column field="connectByeCount" title="接通秒挂">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.connectByeCount}}
- </el-button>
- </template>
- </vxe-column>
- <vxe-column field="noConnectByeCount" title="未接通秒挂">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.noConnectByeCount}}
- </el-button>
- </template>
- </vxe-column>
- <vxe-column field="queueByeCount" title="队列挂断">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.queueByeCount}}
- </el-button>
- </template>
- </vxe-column>
- <vxe-column field="ivrByeCount" title="IVR挂断">
- <template #default="scope">
- <el-button type="primary" link @click="linkDetail(scope)">
- {{scope.row.ivrByeCount}}
- </el-button>
- </template>
- </vxe-column>
- </vxe-table>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="tsx" name="statisticsCallTalkTime">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { FormInstance } from 'element-plus';
- import { callPeriod, callPeriodBase, callPeriodExport } from '@/api/statistics/call';
- import { defaultDate } from '@/utils/constants';
- import { useRouter } from 'vue-router';
- import Other from '@/utils/other';
- import XEUtils from 'xe-utils';
- const StatisticalTime = defineAsyncComponent(() => import('@/components/StatisticalTime/index.vue')); // 日期类型选择组件
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const state = reactive<any>({
- queryParams: {
- // 查询条件
- Keyword: null, // 关键词
- crTime: defaultDate, //
- source: null,
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- callForwardingSource: [],
- });
- /** 搜索按钮操作 */
- const handleQuery = () => {
- // state.queryParams.PageIndex = 1;
- queryList();
- };
- /** 获取列表 */
- const requestParams = ref<EmptyObjectType>({});
- const queryList = () => {
- state.loading = true;
- requestParams.value = Other.deepClone(state.queryParams);
- requestParams.value.StartTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[0];
- requestParams.value.EndTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[1];
- Reflect.deleteProperty(requestParams.value, 'crTime');
- callPeriod(requestParams.value)
- .then((res: any) => {
- state.tableData = res.result;
- state.loading = false;
- })
- .catch(() => {
- state.loading = false;
- });
- };
- /** 重置按钮操作 */
- const statisticalTimeRef = ref<RefType>();
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- statisticalTimeRef.value.reset();
- queryList();
- };
- // 通话时段分析
- const router = useRouter();
- const onDetail = () => {
- const StartTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[0];
- const EndTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[1];
- router.push({
- name: 'statisticsCallDetailTalkTime',
- query: {
- showSearch: 'true',
- StartTime,
- EndTime,
- },
- });
- };
- // 查看详情
- const linkDetail = (scope: any) => {
- const StartTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[0];
- const EndTime = state.queryParams.crTime === null ? null : state.queryParams.crTime[1];
- router.push({
- name: 'statisticsCallDetailTalkTime',
- query: {
- type: scope.column.property,
- StartTime,
- EndTime,
- startHourTo: scope.row.startHourTo,
- },
- });
- };
- // 获取基础信息
- const getBaseInfo = async () => {
- try {
- const { result } = await callPeriodBase();
- state.callForwardingSource = result.callForwardingSource ?? [];
- } catch (e) {
- console.log(e);
- }
- };
- // 计算合计
- const footerMethod = ({ columns, data }) => {
- return [
- columns.map((column: any, columnIndex: number) => {
- if (columnIndex === 0) {
- return '合计';
- }
- if (['count', 'effectiveCount', 'connectByeCount','noConnectByeCount','queueByeCount','ivrByeCount'].includes(column.property)) {
- return XEUtils.sum(data, column.property);
- }
- }),
- ];
- };
- const toolbarRef = ref<RefType>();
- const tableRef = ref<RefType>();
- onMounted(() => {
- queryList();
- if (tableRef.value && toolbarRef.value) {
- tableRef.value.connect(toolbarRef.value);
- }
- getBaseInfo();
- });
- </script>
|