|
@@ -1,40 +1,21 @@
|
|
|
<template>
|
|
|
<div class="statistics-order-dispatch-container layout-padding">
|
|
|
<div class="layout-padding-auto layout-padding-view pd20">
|
|
|
- <ProTable
|
|
|
- ref="proTableRef"
|
|
|
- :columns="columns"
|
|
|
- :data="state.tableData"
|
|
|
- @updateTable="queryList"
|
|
|
- :loading="state.loading"
|
|
|
- show-summary
|
|
|
- border
|
|
|
- :pagination="false"
|
|
|
- :summary-method="getSummaries"
|
|
|
- :toolButton="['refresh', 'setting', 'exportAll']"
|
|
|
- :exportMethod="departmentDispatchExport"
|
|
|
- :exportParams="requestParams"
|
|
|
- >
|
|
|
- <template #table-search>
|
|
|
- <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="UserName">
|
|
|
- <el-input v-model="state.queryParams.UserName" placeholder="派单员姓名" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <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-form-item>
|
|
|
- </el-form>
|
|
|
- </template>
|
|
|
- <template #description>
|
|
|
+ <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="UserName">
|
|
|
+ <el-input v-model="state.queryParams.UserName" placeholder="派单员姓名" clearable @keyup.enter="handleQuery" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <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 circle title="口径说明"><SvgIcon name="ele-QuestionFilled" /></el-button>
|
|
|
+ <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>
|
|
@@ -43,8 +24,65 @@
|
|
|
<el-descriptions-item label="重办信件量">重办的工单数量</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
</el-popover>
|
|
|
- </template>
|
|
|
- </ProTable>
|
|
|
+ </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,useKey:true }"
|
|
|
+ ref="tableRef"
|
|
|
+ height="auto"
|
|
|
+ auto-resize
|
|
|
+ show-overflow
|
|
|
+ :scrollY="{ enabled: true, gt: 20 ,mode: 'wheel' }"
|
|
|
+ id="statisticsOrderDispatch"
|
|
|
+ :custom-config="{
|
|
|
+ storage: true,
|
|
|
+ }"
|
|
|
+ showHeaderOverflow
|
|
|
+ :params="{ exportMethod: departmentDispatchExport, exportParams: requestParams }"
|
|
|
+ show-footer
|
|
|
+ :footer-method="footerMethod"
|
|
|
+ >
|
|
|
+ <vxe-column field="userName" title="派单人员"></vxe-column>
|
|
|
+ <vxe-column field="sendOrderNum" title="派单量" sortable>
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button type="primary" link @click="linkDetail(scope)">
|
|
|
+ {{ scope.row.sendOrderNum }}
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column field="noSendOrderNum" title="待派单件" sortable>
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button type="primary" link @click="linkDetail(scope)">
|
|
|
+ {{ scope.row.noSendOrderNum }}
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column field="reSendOrderNum" title="重办信件" sortable>
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button type="primary" link @click="linkDetail(scope)">
|
|
|
+ {{ scope.row.reSendOrderNum }}
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column field="chainRate" title="派单准确率">
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -54,34 +92,9 @@ import { FormInstance } from 'element-plus';
|
|
|
import { departmentDispatch, departmentDispatchExport } from '@/api/statistics/order';
|
|
|
import { defaultDate } from "@/utils/constants";
|
|
|
import { useRouter } from "vue-router";
|
|
|
+import XEUtils from 'xe-utils';
|
|
|
|
|
|
const StatisticalTime = defineAsyncComponent(() => import('@/components/StatisticalTime/index.vue')); // 日期类型选择组件
|
|
|
-// 表格配置项
|
|
|
-const columns = ref<any[]>([
|
|
|
- { prop: 'userName', label: '派单人员', align: 'center' },
|
|
|
- { prop: 'sendOrderNum', label: '派单量', align: 'center', sortable: true ,render: (scope) => {
|
|
|
- return (
|
|
|
- <el-button type="primary" link onClick={() => linkDetail(scope)}>
|
|
|
- {scope.row.sendOrderNum}
|
|
|
- </el-button>
|
|
|
- );
|
|
|
- },},
|
|
|
- { prop: 'noSendOrderNum', label: '待派单件', align: 'center', sortable: true,render: (scope) => {
|
|
|
- return (
|
|
|
- <el-button type="primary" link onClick={() => linkDetail(scope)}>
|
|
|
- {scope.row.noSendOrderNum}
|
|
|
- </el-button>
|
|
|
- );
|
|
|
- }, },
|
|
|
- { prop: 'reSendOrderNum', label: '重办信件', align: 'center', sortable: true,render: (scope) => {
|
|
|
- return (
|
|
|
- <el-button type="primary" link onClick={() => linkDetail(scope)}>
|
|
|
- {scope.row.reSendOrderNum}
|
|
|
- </el-button>
|
|
|
- );
|
|
|
- }, },
|
|
|
- { prop: 'chainRate', label: '派单准确率', align: 'center' },
|
|
|
-]);
|
|
|
// 定义变量内容
|
|
|
const ruleFormRef = ref<RefType>(); // 表单ref
|
|
|
const state = reactive<any>({
|
|
@@ -127,35 +140,6 @@ const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
statisticalTimeRef.value.reset();
|
|
|
queryList();
|
|
|
}
|
|
|
-// 合计
|
|
|
-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 (['name'].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 router = useRouter();
|
|
|
const linkDetail = (scope: any) => {
|
|
@@ -169,7 +153,25 @@ const linkDetail = (scope: any) => {
|
|
|
},
|
|
|
});
|
|
|
};
|
|
|
+// 计算合计
|
|
|
+const footerMethod = ({ columns, data }) => {
|
|
|
+ return [
|
|
|
+ columns.map((column: any, columnIndex: number) => {
|
|
|
+ if (columnIndex === 0) {
|
|
|
+ return '合计';
|
|
|
+ }
|
|
|
+ if (['sendOrderNum', 'noSendOrderNum', 'reSendOrderNum'].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);
|
|
|
+ }
|
|
|
});
|
|
|
</script>
|