|
@@ -0,0 +1,196 @@
|
|
|
+<template>
|
|
|
+ <div class="statistics-department-satisfaction-detail-container layout-pd">
|
|
|
+ <!-- 搜索 -->
|
|
|
+ <el-card shadow="never">
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
|
|
|
+ <el-form-item label="部门名称" prop="OrgName">
|
|
|
+ <el-input v-model="state.queryParams.OrgName" placeholder="部门名称" clearable @keyup.enter="queryList" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="时间段" prop="crTime">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="state.queryParams.crTime"
|
|
|
+ type="datetimerange"
|
|
|
+ unlink-panels
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始时间"
|
|
|
+ end-placeholder="结束时间"
|
|
|
+ :shortcuts="shortcuts"
|
|
|
+ @change="queryList"
|
|
|
+ value-format="YYYY-MM-DD[T]HH:mm:ss"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="类型" prop="TypeId">
|
|
|
+ <el-select v-model="state.queryParams.TypeId" placeholder="类型" @change="queryList">
|
|
|
+ <el-option label="办件结果" value="1" />
|
|
|
+ <el-option label="办件态度" value="2" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="电话线路" prop="LineNum">
|
|
|
+ <el-input v-model="state.queryParams.LineNum" placeholder="电话线路" clearable @keyup.enter="queryList" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" @click="queryList" :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-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+ <el-card shadow="never">
|
|
|
+ <ProTable
|
|
|
+ ref="proTableRef"
|
|
|
+ :columns="columns"
|
|
|
+ :data="state.tableData"
|
|
|
+ @updateTable="queryList"
|
|
|
+ :loading="state.loading"
|
|
|
+ show-summary
|
|
|
+ border
|
|
|
+ :pagination="false"
|
|
|
+ :summary-method="getSummaries"
|
|
|
+ >
|
|
|
+ <template #orgName="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetailOrg(row)">{{ row.orgName }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #verySatisfiedCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.verySatisfiedKey,row,'非常满意')">{{ row.verySatisfiedCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #satisfiedCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.satisfiedKey,row,'满意')">{{ row.satisfiedCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #generalSatisfiedCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.generalSatisfiedKey,row)">{{ row.generalSatisfiedCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #noSatisfiedCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.noSatisfiedKey,row)">{{ row.noSatisfiedCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #veryNoSatisfiedCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.veryNoSatisfiedKey,row)">{{ row.veryNoSatisfiedCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #noEvaluateCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.noEvaluateKey,row)">{{ row.noEvaluateCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #noPutThroughCount="{ row }">
|
|
|
+ <el-button link type="primary" @click="onDetail(row.noPutThroughKey,row)">{{ row.noPutThroughCount }}</el-button>
|
|
|
+ </template>
|
|
|
+ </ProTable>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup lang="tsx" name="statisticsDepartmentSatisfactionDetail">
|
|
|
+import { onMounted, reactive, ref } from 'vue';
|
|
|
+import { ElButton, FormInstance } from 'element-plus';
|
|
|
+import { throttle } from '@/utils/tools';
|
|
|
+import { departmentSatisfaction } from '@/api/statistics/department';
|
|
|
+import { shortcuts } from '@/utils/constants';
|
|
|
+import dayjs from 'dayjs';
|
|
|
+
|
|
|
+// 表格配置项
|
|
|
+const columns = ref<any[]>([
|
|
|
+ { type: 'index', fixed: 'left', width: 55, label: '序号', align: 'center' },
|
|
|
+ { prop: 'orgName', label: '部门名称', minWidth: 200 },
|
|
|
+ { prop: 'orgTypeText', label: '部门类别', minWidth: 120 },
|
|
|
+ { prop: 'totalSumCount', label: '小计' },
|
|
|
+ { prop: 'totalSumRate', label: '总满意率', minWidth: 120 },
|
|
|
+ { prop: 'verySatisfiedCount', label: '非常满意', minWidth: 120 },
|
|
|
+ { prop: 'verySatisfiedRate', label: '非常满意率', minWidth: 120 },
|
|
|
+ { prop: 'satisfiedCount', label: '满意', minWidth: 120 },
|
|
|
+ { prop: 'satisfiedRate', label: '满意率', minWidth: 120 },
|
|
|
+ { prop: 'generalSatisfiedCount', label: '视为满意', minWidth: 120 },
|
|
|
+ { prop: 'generalSatisfiedRate', label: '视为满意率', minWidth: 120 },
|
|
|
+ { prop: 'noSatisfiedCount', label: '默认满意', minWidth: 120 },
|
|
|
+ { prop: 'noSatisfiedRate', label: '默认满意率', minWidth: 120 },
|
|
|
+ { prop: 'veryNoSatisfiedCount', label: '不满意', minWidth: 120 },
|
|
|
+ { prop: 'veryNoSatisfiedRate', label: '不满意率', minWidth: 120 },
|
|
|
+ { prop: 'noEvaluateCount', label: '未作评价', minWidth: 120 },
|
|
|
+ { prop: 'noEvaluateRate', label: '未作评价率', minWidth: 120 },
|
|
|
+ { prop: 'noPutThroughCount', label: '未接通', minWidth: 120 },
|
|
|
+ { prop: 'noPutThroughRate', label: '未接通率', minWidth: 120 },
|
|
|
+]);
|
|
|
+// 定义变量内容
|
|
|
+const ruleFormRef = ref<RefType>(); // 表单ref
|
|
|
+const state = reactive({
|
|
|
+ queryParams: {
|
|
|
+ // 查询条件
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 10,
|
|
|
+ TypeId: '1', //
|
|
|
+ LineNum: null,
|
|
|
+ crTime: [dayjs().startOf('day').format('YYYY-MM-DD HH:mm:ss'), dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss')], // 时间默认今天开始到今天结束
|
|
|
+ },
|
|
|
+ tableData: [], //表单
|
|
|
+ loading: false, // 加载
|
|
|
+ total: 0, // 总数
|
|
|
+});
|
|
|
+/** 获取列表 */
|
|
|
+const queryList = throttle(() => {
|
|
|
+ state.loading = true;
|
|
|
+ let StartDate = null;
|
|
|
+ let EndDate = null;
|
|
|
+ if (state.queryParams?.crTime) {
|
|
|
+ StartDate = state.queryParams?.crTime[0];
|
|
|
+ EndDate = state.queryParams?.crTime[1];
|
|
|
+ }
|
|
|
+ const request = {
|
|
|
+ StartDate,
|
|
|
+ EndDate,
|
|
|
+ TypeId: state.queryParams.TypeId,
|
|
|
+ PageIndex: state.queryParams.PageIndex,
|
|
|
+ PageSize: state.queryParams.PageSize,
|
|
|
+ LineNum: state.queryParams.LineNum,
|
|
|
+ };
|
|
|
+ departmentSatisfaction(request)
|
|
|
+ .then((res: any) => {
|
|
|
+ state.tableData = res.result ?? [];
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+}, 300);
|
|
|
+/** 重置按钮操作 */
|
|
|
+const resetQuery = throttle((formEl: FormInstance | undefined) => {
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ queryList();
|
|
|
+}, 300);
|
|
|
+// 合计
|
|
|
+const getSummaries = (param: any) => {
|
|
|
+ const { columns, data } = param;
|
|
|
+ const sums: string[] = [];
|
|
|
+ columns.forEach((column: { property: string }, index: number) => {
|
|
|
+ if (index === 0) {
|
|
|
+ sums[index] = '合计';
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const values = data.map((item: { [x: string]: any }) => Number(item[column.property]));
|
|
|
+ if (['orgName'].includes(column.property)) {
|
|
|
+ //百分比不能计算
|
|
|
+ sums[index] = '';
|
|
|
+ return '';
|
|
|
+ } else if (!values.every((value: unknown) => Number.isNaN(value))) {
|
|
|
+ sums[index] = `${values.reduce((prev: any, curr: any) => {
|
|
|
+ const value = Number(curr);
|
|
|
+ if (!Number.isNaN(value)) {
|
|
|
+ return prev + curr;
|
|
|
+ } else {
|
|
|
+ return prev;
|
|
|
+ }
|
|
|
+ }, 0)}`;
|
|
|
+ } else {
|
|
|
+ sums[index] = ' ';
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return sums;
|
|
|
+};
|
|
|
+// 点击部门名称
|
|
|
+const onDetailOrg = (row: any) => {
|
|
|
+ console.log(row);
|
|
|
+};
|
|
|
+// 点击数字
|
|
|
+const onDetail = (key: string,row) => {
|
|
|
+ console.log(key,row);
|
|
|
+};
|
|
|
+onMounted(() => {
|
|
|
+ queryList();
|
|
|
+});
|
|
|
+</script>
|