123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <div class="statistics-department-satisfaction-detail-list-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="TypeId">
- <el-select v-model="state.queryParams.TypeId" placeholder="请选择来电主体" @change="handleQuery">
- <el-option :value="0" label="全部" />
- <el-option :value="1" label="市民" />
- <el-option :value="2" label="企业" />
- </el-select>
- </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>
- <vxe-toolbar
- ref="toolbarRef"
- :loading="state.loading"
- custom
- :refresh="{
- queryMethod: handleQuery,
- }"
- :tools="[{ toolRender: { name: 'exportCurrent' } }, { toolRender: { name: 'exportAll' } }]"
- >
- <template #buttons>
- <el-button type="primary" @click="onJbExport" :disabled="isChecked" :loading="state.loading"
- ><SvgIcon name="iconfont icon-daochu" class="mr5" />交办单导出
- </el-button>
- </template>
- </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: 100 }"
- id="statisticsDepartmentDetailHandleList"
- :custom-config="{
- storage: true,
- }"
- showHeaderOverflow
- :sort-config="{ remote: true }"
- @sort-change="sortChange"
- :params="{ exportMethod: departmentOrderListExport, exportParams: requestParams }"
- @checkbox-all="selectAllChangeEvent"
- @checkbox-change="selectChangeEvent"
- >
- <vxe-column type="checkbox" width="50" align="center"></vxe-column>
- <vxe-column field="expiredStatusText" title="状态" width="60" align="center">
- <template #default="{ row }">
- <span :class="'overdue-status-' + row.expiredStatus" :title="row.expiredStatusText"></span>
- </template>
- </vxe-column>
- <vxe-column field="no" title="工单编码" width="140"></vxe-column>
- <vxe-column field="isProvinceText" title="省/市工单" width="90"></vxe-column>
- <vxe-column field="currentStepName" title="当前节点" width="100"></vxe-column>
- <vxe-column field="statusText" title="工单状态" width="100">
- <template #default="{ row }">
- <el-text type="danger" tag="b" v-if="[1, 2, 3, 9, 101, 102, 103, 104, 105, 200].includes(row.status)">{{ row.statusText }}</el-text>
- <span v-else>{{ row.statusText }}</span>
- </template>
- </vxe-column>
- <vxe-column field="title" title="工单标题" width="200">
- <template #default="{ row }">
- <order-detail :order="row" @updateList="queryList(true)">{{ row.title }}</order-detail>
- </template>
- </vxe-column>
- <vxe-column field="creationTime" title="受理时间" width="160" sortable>
- <template #default="{ row }">
- {{ formatDate(row.creationTime, 'YYYY-mm-dd HH:MM:SS') }}
- </template>
- </vxe-column>
- <vxe-column field="expiredTime" title="期满时间" width="160" sortable>
- <template #default="{ row }">
- {{ formatDate(row.expiredTime, 'YYYY-mm-dd HH:MM:SS') }}
- </template>
- </vxe-column>
- <vxe-column field="filedTime" title="办结时间" width="160" sortable>
- <template #default="{ row }">
- {{ formatDate(row.filedTime, 'YYYY-mm-dd HH:MM:SS') }}
- </template>
- </vxe-column>
- <vxe-column field="orgLevelOneName" title="一级部门" width="140"></vxe-column>
- <vxe-column field="actualHandleOrgName" title="接办部门" width="140"></vxe-column>
- <vxe-column field="acceptType" title="受理类型" width="110"></vxe-column>
- <vxe-column field="sourceChannel" title="来源渠道" width="100"></vxe-column>
- <vxe-column field="hotspotSpliceName" title="热点全称" width="150"></vxe-column>
- <vxe-column field="hotspotName" title="热点分类" width="150"></vxe-column>
- <vxe-column field="oneHotspotName" title="一级热点" width="150"></vxe-column>
- <vxe-column field="twoHotspotName" title="二级热点" width="150"></vxe-column>
- <vxe-column field="threeHotspotName" title="三级热点" width="150"></vxe-column>
- <vxe-column field="fourHotspotName" title="四级热点" width="150"></vxe-column>
- <vxe-column field="fiveHotspotName" title="五级热点" width="150"></vxe-column>
- <vxe-column field="acceptorName" title="受理人" width="100"></vxe-column>
- </vxe-table>
- </div>
- <pagination
- @pagination="queryList"
- :total="state.total"
- v-model:current-page="state.queryParams.PageIndex"
- v-model:page-size="state.queryParams.PageSize"
- :disabled="state.loading"
- />
- </div>
- </div>
- </template>
- <script setup lang="tsx" name="statisticsDepartmentDetailHandleList">
- import { onMounted, reactive, ref, defineAsyncComponent, computed } from 'vue';
- import { ElMessage, ElMessageBox, FormInstance } from 'element-plus';
- import { departmentOrderDetailExport, departmentOrderList, departmentOrderListExport } from '@/api/statistics/department';
- import { formatDate } from '@/utils/formatTime';
- import { defaultDateTime } from '@/utils/constants';
- import { listBaseData } from '@/api/judicial';
- import Other from '@/utils/other';
- import { exportJbOrder } from '@/api/business/order';
- import { downloadZip, exportAssignment } from '@/utils/tools';
- // 引入组件
- const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
- const StatisticalTime = defineAsyncComponent(() => import('@/components/StatisticalTime/index.vue')); // 日期类型选择组件
- const pagination = defineAsyncComponent(() => import('@/components/ProTable/components/Pagination.vue')); // 分页
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const state = reactive<any>({
- queryParams: {
- // 查询条件
- PageIndex: 1,
- PageSize: 20,
- crTime: defaultDateTime,
- StartTime: null,
- EndTime: null,
- TypeId: 0,
- SortField: null,
- SortRule: null,
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- });
- // 排序
- 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 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'); // 删除无用的参数
- departmentOrderList(requestParams.value)
- .then((res: any) => {
- state.tableData = res.result?.items ?? [];
- state.total = res.result.total ?? 0;
- 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 getBaseData = async () => {
- try {
- const res: any = await listBaseData();
- const mappings: any = {
- acceptTypeOptions: 'acceptTypeOptions',
- channelOptions: 'channelOptions',
- orgsOptions: 'orgsOptions',
- pushTypeOptions: 'pushTypeOptions',
- orderStatusOptions: 'orderStatusOptions',
- identityTypeOptions: 'identityTypeOptions',
- currentStepOptions: 'currentStepOptions',
- };
- for (const key in mappings) {
- state[key] = res.result?.[mappings[key]] ?? [];
- }
- } catch (error) {
- console.log(error);
- }
- };
- // 交办单导出
- const onJbExport = () => {
- const ids = checkTable.value.map((item: any) => item.id);
- exportAssignment(ids);
- };
- const checkTable = ref<EmptyArrayType>([]);
- const selectAllChangeEvent = ({ checked }) => {
- if (tableRef.value) {
- const records = tableRef.value.getCheckboxRecords();
- checkTable.value = records;
- console.log(checked ? '所有勾选事件' : '所有取消事件', records);
- }
- };
- const selectChangeEvent = ({ checked }) => {
- if (tableRef.value) {
- const records = tableRef.value.getCheckboxRecords();
- checkTable.value = records;
- console.log(checked ? '勾选事件' : '取消事件', records);
- }
- };
- const isChecked = computed(() => {
- return !Boolean(checkTable.value.length);
- });
- const toolbarRef = ref<RefType>();
- const tableRef = ref<RefType>();
- onMounted(() => {
- queryList();
- if (tableRef.value && toolbarRef.value) {
- tableRef.value.connect(toolbarRef.value);
- }
- getBaseData();
- });
- </script>
|