|
@@ -1,84 +1,20 @@
|
|
|
<template>
|
|
|
- <div class="business-special-container layout-pd">
|
|
|
- <!-- 搜索 -->
|
|
|
- <el-card shadow="never">
|
|
|
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
|
|
|
- <el-form-item label="关键词" prop="Keyword">
|
|
|
- <el-input v-model="state.queryParams.Keyword" 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)" v-waves 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">
|
|
|
- <!-- 表格 -->
|
|
|
- <el-table :data="state.tableData" v-loading="state.loading" row-key="id" ref="multipleTableRef" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="55" />
|
|
|
- <el-table-column prop="no" label="工单编码" show-overflow-tooltip width="150"></el-table-column>
|
|
|
- <el-table-column width="100" label="省/市工单" prop="isProvince">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ row.isProvince ? '省工单' : '市工单' }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="actualHandleStepName" label="办理节点" show-overflow-tooltip width="150"></el-table-column>
|
|
|
- <el-table-column label="工单状态" show-overflow-tooltip width="100" prop="statusText"></el-table-column>
|
|
|
- <el-table-column label="标题" show-overflow-tooltip width="300">
|
|
|
- <template #default="{ row }">
|
|
|
- <order-detail :order="row" @updateList="queryList">{{ row.title }}</order-detail>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="受理时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.startTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="expiredTime" label="工单期满时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.expiredTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="办结时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.filedTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="orgLevelOneName" label="一级部门" show-overflow-tooltip width="170"></el-table-column>
|
|
|
- <el-table-column prop="actualHandleOrgName" label="接办对象" show-overflow-tooltip width="170"></el-table-column>
|
|
|
- <el-table-column prop="acceptType" label="受理类型" show-overflow-tooltip width="150"></el-table-column>
|
|
|
- <el-table-column prop="counterSignTypeText" label="是否会签" show-overflow-tooltip width="100"></el-table-column>
|
|
|
- <el-table-column prop="hotspotName" label="热点分类" show-overflow-tooltip width="200"></el-table-column>
|
|
|
- <el-table-column prop="tagNames" label="工单标签" show-overflow-tooltip width="200"></el-table-column>
|
|
|
- <el-table-column prop="employeeName" label="受理人" show-overflow-tooltip width="120">
|
|
|
- <template #default="{ row }">
|
|
|
- <span
|
|
|
- >{{ row.acceptorName }} <span v-if="row.acceptorStaffNo">[{{ row.acceptorStaffNo }}]</span>
|
|
|
- </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" width="170" fixed="right" align="center">
|
|
|
- <template #default="{ row }">
|
|
|
- <el-button link type="primary" @click="onSpecialApply(row)" title="特提申请" v-if="row.workflowId" v-auth="'business:special:apply'">
|
|
|
- 特提申请
|
|
|
- </el-button>
|
|
|
- <order-detail :order="row" @updateList="queryList" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <template #empty>
|
|
|
- <Empty />
|
|
|
- </template>
|
|
|
- </el-table>
|
|
|
- <!-- 分页 -->
|
|
|
- <pagination
|
|
|
- :total="state.total"
|
|
|
- v-model:page="state.queryParams.PageIndex"
|
|
|
- v-model:limit="state.queryParams.PageSize"
|
|
|
- @pagination="queryList"
|
|
|
- />
|
|
|
-
|
|
|
+ <div class="business-special-container layout-pd">
|
|
|
+ <!-- 搜索 -->
|
|
|
+ <el-card shadow="never">
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
|
|
|
+ <el-form-item label="关键词" prop="Keyword">
|
|
|
+ <el-input v-model="state.queryParams.Keyword" 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)" v-waves 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"
|
|
@@ -89,11 +25,6 @@
|
|
|
v-model:page-index="state.queryParams.PageIndex"
|
|
|
v-model:page-size="state.queryParams.PageSize"
|
|
|
>
|
|
|
- <template #tableHeader="scope">
|
|
|
- <el-button type="primary" @click="publishMultiple" v-auth="'todo:publish:multiple'" :disabled="!scope.isSelected">
|
|
|
- <SvgIcon name="iconfont icon-tianjiawenjian" class="mr5" />批量发布
|
|
|
- </el-button>
|
|
|
- </template>
|
|
|
<template #isProvince="{ row }">
|
|
|
<span>{{ row.isProvince ? '省工单' : '市工单' }}</span>
|
|
|
</template>
|
|
@@ -107,14 +38,16 @@
|
|
|
</template>
|
|
|
<!-- 表格操作 -->
|
|
|
<template #operation="{ row }">
|
|
|
- <el-button link type="primary" @click="approve(row)" title="退回审批" v-auth="'todo:return:audit'"> 退回审批 </el-button>
|
|
|
+ <el-button link type="primary" @click="onSpecialApply(row)" title="特提申请" v-if="row.workflowId" v-auth="'business:special:apply'">
|
|
|
+ 特提申请
|
|
|
+ </el-button>
|
|
|
<order-detail :order="row" @updateList="queryList" />
|
|
|
</template>
|
|
|
</ProTable>
|
|
|
- </el-card>
|
|
|
- <!-- 特提申请 -->
|
|
|
- <special-apply ref="specialApplyRef" @updateList="queryList" />
|
|
|
- </div>
|
|
|
+ </el-card>
|
|
|
+ <!-- 特提申请 -->
|
|
|
+ <special-apply ref="specialApplyRef" @updateList="queryList" />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script setup lang="tsx" name="orderSpecial">
|
|
|
import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
@@ -135,27 +68,23 @@ const columns = ref<any[]>([
|
|
|
{ type: 'selection', fixed: 'left', width: 55 },
|
|
|
{ prop: 'no', label: '工单编码', width: 150 },
|
|
|
{ prop: 'isProvince', label: '省/市工单', width: 100 },
|
|
|
- { prop: 'statusText', label: '发布状态', width: 100 },
|
|
|
- { prop: 'title', label: '工单标题', width: 300 },
|
|
|
- { prop: 'sourceChannel', label: '来源方式', width: 100 },
|
|
|
- { prop: 'acceptType', label: '受理类型', width: 150 },
|
|
|
- { prop: 'counterSignTypeText', label: '是否会签', width: 100 },
|
|
|
- { prop: 'actualHandleOrgName', label: '接办对象', width: 150 },
|
|
|
- { prop: 'employeeName', label: '受理人', width: 120 },
|
|
|
+ { prop: 'actualHandleStepName', label: '办理节点', width: 150 },
|
|
|
+ { prop: 'statusText', label: '工单状态', width: 100 },
|
|
|
+ { prop: 'title', label: '标题', width: 300 },
|
|
|
{
|
|
|
- prop: 'actualHandleTime',
|
|
|
- label: '接办时间',
|
|
|
+ prop: 'startTime',
|
|
|
+ label: '受理时间',
|
|
|
width: 170,
|
|
|
render: (scope) => {
|
|
|
- return <span>{formatDate(scope.row.actualHandleTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
+ return <span>{formatDate(scope.row.startTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- prop: 'startTime',
|
|
|
- label: '受理时间',
|
|
|
+ prop: 'expiredTime',
|
|
|
+ label: '工单期满时间',
|
|
|
width: 170,
|
|
|
render: (scope) => {
|
|
|
- return <span>{formatDate(scope.row.startTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
+ return <span>{formatDate(scope.row.expiredTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -166,60 +95,62 @@ const columns = ref<any[]>([
|
|
|
return <span>{formatDate(scope.row.filedTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
},
|
|
|
},
|
|
|
- { prop: 'operation', label: '操作', fixed: 'right', width: 140, align: 'center' },
|
|
|
+ { prop: 'orgLevelOneName', label: '一级部门', width: 170 },
|
|
|
+ { prop: 'actualHandleOrgName', label: '接办部门', width: 170 },
|
|
|
+ { prop: 'acceptType', label: '受理类型', width: 150 },
|
|
|
+ { prop: 'counterSignTypeText', label: '是否会签', width: 100 },
|
|
|
+ { prop: 'hotspotName', label: '热点分类', width: 200 },
|
|
|
+ { prop: 'tagNames', label: '工单标签', width: 200 },
|
|
|
+ { prop: 'employeeName', label: '受理人', width: 120 },
|
|
|
+ { prop: 'operation', label: '操作', fixed: 'right', width: 170, align: 'center' },
|
|
|
]);
|
|
|
const state = reactive({
|
|
|
- queryParams: {
|
|
|
- // 查询条件
|
|
|
- PageIndex: 1,
|
|
|
- PageSize: 10,
|
|
|
- Keyword: null, // 关键字
|
|
|
- },
|
|
|
- tableData: [], //表单
|
|
|
- loading: false, // 加载
|
|
|
- total: 0, // 总数
|
|
|
+ queryParams: {
|
|
|
+ // 查询条件
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 10,
|
|
|
+ Keyword: null, // 关键字
|
|
|
+ },
|
|
|
+ tableData: [], //表单
|
|
|
+ loading: false, // 加载
|
|
|
+ total: 0, // 总数
|
|
|
});
|
|
|
/** 获取列表 */
|
|
|
const queryList = throttle(() => {
|
|
|
- state.loading = true;
|
|
|
- orderListSpecial(state.queryParams)
|
|
|
- .then((res) => {
|
|
|
- state.tableData = res.result?.items ?? [];
|
|
|
- state.total = res.result?.total ?? 0;
|
|
|
- state.loading = false;
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.log(err);
|
|
|
- state.loading = false;
|
|
|
- });
|
|
|
+ state.loading = true;
|
|
|
+ orderListSpecial(state.queryParams)
|
|
|
+ .then((res) => {
|
|
|
+ state.tableData = res.result?.items ?? [];
|
|
|
+ state.total = res.result?.total ?? 0;
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.log(err);
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
}, 300);
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
const resetQuery = throttle((formEl: FormInstance | undefined) => {
|
|
|
- if (!formEl) return;
|
|
|
- formEl.resetFields();
|
|
|
- queryList();
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ queryList();
|
|
|
}, 300);
|
|
|
-// 表格多选
|
|
|
-const multipleTableRef = ref<RefType>();
|
|
|
-const multipleSelection = ref<any>([]);
|
|
|
-const handleSelectionChange = (val: any[]) => {
|
|
|
- multipleSelection.value = val;
|
|
|
-};
|
|
|
// 导出
|
|
|
const onExport = () => {
|
|
|
- console.log('导出');
|
|
|
+ console.log('导出');
|
|
|
};
|
|
|
// 特提申请
|
|
|
const specialApplyRef = ref<RefType>();
|
|
|
const onSpecialApply = (row: any) => {
|
|
|
- if(row.counterSignType || row.counterSignType === 0){ // 会签工单无法进行特提
|
|
|
+ if (row.counterSignType || row.counterSignType === 0) {
|
|
|
+ // 会签工单无法进行特提
|
|
|
ElMessage.warning('工单会签中,请先结束会签!');
|
|
|
return;
|
|
|
}
|
|
|
- specialApplyRef.value.openDialog(row); // 需要审核
|
|
|
+ specialApplyRef.value.openDialog(row); // 需要审核
|
|
|
};
|
|
|
onMounted(() => {
|
|
|
- queryList();
|
|
|
+ queryList();
|
|
|
});
|
|
|
</script>
|