|
@@ -0,0 +1,196 @@
|
|
|
+<template>
|
|
|
+ <div class="statistics-order-center-count-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="Keyword">
|
|
|
+ <el-input v-model="state.queryParams.Keyword" 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 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="有效件-转办信件">工单已办理</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="有效件-待转办信件">工单已保存未办理</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="所有信件">有效件(中心归档件+转办信件+待转办信件+无效信件+重复信件</el-descriptions-item>
|
|
|
+ </el-descriptions>
|
|
|
+ </el-popover>
|
|
|
+ </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
|
|
|
+ :scrollY="{ enabled: true, gt: 100 }"
|
|
|
+ show-overflow
|
|
|
+ id="statisticsOrderCenter"
|
|
|
+ :custom-config="{ storage: true }"
|
|
|
+ show-footer
|
|
|
+ :params="{ exportMethod: callAgentHandleZGExport, exportParams: requestParams }"
|
|
|
+ :sort-config="{ remote: true }"
|
|
|
+ @sort-change="sortChange"
|
|
|
+ :footer-data="state.footerData"
|
|
|
+ >
|
|
|
+ <vxe-column field="userName" title="姓名"></vxe-column>
|
|
|
+ <vxe-colgroup title="有效件" align="center">
|
|
|
+ <vxe-column title="中心归档件" field="centreArchive" sortable>
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'centreArchive')">{{ row.centreArchive }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #footer="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'centreArchive', true)">{{ row.centreArchive }}</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column title="转办信件" field="centreCareOf" sortable>
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'centreCareOf')">{{ row.centreCareOf }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #footer="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'centreCareOf', true)">{{ row.centreCareOf }}</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column title="待转办信件" field="noCentreCareOf" sortable>
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'noCentreCareOf')">{{ row.noCentreCareOf }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #footer="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'noCentreCareOf', true)">{{ row.noCentreCareOf }}</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-colgroup>
|
|
|
+ <vxe-column field="subtotal" title="所有信件" sortable>
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'subtotal')">{{ row.subtotal }}</el-button>
|
|
|
+ </template>
|
|
|
+ <template #footer="{ row }">
|
|
|
+ <el-button link type="primary" @click="linkDetail(row, 'subtotal', true)">{{ row.subtotal }}</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup lang="tsx" name="statisticsOrderCenter">
|
|
|
+import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
+import { FormInstance } from 'element-plus';
|
|
|
+import { defaultDate } from '@/utils/constants';
|
|
|
+import Other from '@/utils/other';
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
+import { callAgentHandleZG, callAgentHandleZGExport } from '@/api/statistics/call';
|
|
|
+
|
|
|
+const StatisticalTime = defineAsyncComponent(() => import('@/components/StatisticalTime/index.vue')); // 日期类型选择组件
|
|
|
+// 定义变量内容
|
|
|
+const ruleFormRef = ref<RefType>(); // 表单ref
|
|
|
+const state = reactive<any>({
|
|
|
+ queryParams: {
|
|
|
+ // 查询条件
|
|
|
+ Keyword: null, // 关键词
|
|
|
+ crTime: defaultDate,
|
|
|
+ SortField: null,
|
|
|
+ SortRule: null,
|
|
|
+ },
|
|
|
+ tableData: [], //表单
|
|
|
+ loading: false, // 加载
|
|
|
+ total: 0, // 总数
|
|
|
+ footerData: [],
|
|
|
+});
|
|
|
+/** 搜索按钮操作 */
|
|
|
+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');
|
|
|
+ callAgentHandleZG(requestParams.value)
|
|
|
+ .then((res: any) => {
|
|
|
+ state.tableData = res.result?.list ?? [];
|
|
|
+ state.footerData = [res.result?.total] ?? [];
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+};
|
|
|
+// 排序
|
|
|
+const sortChange = (val: any) => {
|
|
|
+ state.queryParams.SortField = val.order ? val.field : null;
|
|
|
+ // 0 升序 1 降序
|
|
|
+ state.queryParams.SortRule = val.order ? (val.order == 'desc' ? 1 : 0) : null;
|
|
|
+ queryList();
|
|
|
+};
|
|
|
+/** 重置按钮操作 */
|
|
|
+const statisticalTimeRef = ref<RefType>();
|
|
|
+const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ statisticalTimeRef.value.reset();
|
|
|
+ queryList();
|
|
|
+};
|
|
|
+// 跳转明细
|
|
|
+const router = useRouter();
|
|
|
+const linkDetail = (row: any, FieldName: string, isFooterData?: boolean) => {
|
|
|
+ if (isFooterData) {
|
|
|
+ router.push({
|
|
|
+ path: '/statistics/order/detailCenterCountZG',
|
|
|
+ query: {
|
|
|
+ StartTime: requestParams.value.StartTime,
|
|
|
+ EndTime: requestParams.value.EndTime,
|
|
|
+ FieldName,
|
|
|
+ tagsViewName: '话务员办件统计明细',
|
|
|
+ },
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ router.push({
|
|
|
+ path: '/statistics/order/detailCenterCountZG',
|
|
|
+ query: {
|
|
|
+ StartTime: requestParams.value.StartTime,
|
|
|
+ EndTime: requestParams.value.EndTime,
|
|
|
+ FieldName,
|
|
|
+ tagsViewName: '话务员办件统计明细',
|
|
|
+ UserId: row.userId,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+const toolbarRef = ref<RefType>();
|
|
|
+const tableRef = ref<RefType>();
|
|
|
+onMounted(() => {
|
|
|
+ queryList();
|
|
|
+ if (tableRef.value && toolbarRef.value) {
|
|
|
+ tableRef.value.connect(toolbarRef.value);
|
|
|
+ }
|
|
|
+});
|
|
|
+</script>
|