|
@@ -25,6 +25,9 @@
|
|
v-model:page-index="state.queryParams.PageIndex"
|
|
v-model:page-index="state.queryParams.PageIndex"
|
|
v-model:page-size="state.queryParams.PageSize"
|
|
v-model:page-size="state.queryParams.PageSize"
|
|
>
|
|
>
|
|
|
|
+ <template #expiredStatus="{ row }">
|
|
|
|
+ <span :class="'overdue-status-' + row.expiredStatus" :title="row.expiredStatusText"></span>
|
|
|
|
+ </template>
|
|
<template #isProvince="{ row }">
|
|
<template #isProvince="{ row }">
|
|
<span>{{ row.isProvince ? '省工单' : '市工单' }}</span>
|
|
<span>{{ row.isProvince ? '省工单' : '市工单' }}</span>
|
|
</template>
|
|
</template>
|
|
@@ -38,15 +41,15 @@
|
|
</template>
|
|
</template>
|
|
<!-- 表格操作 -->
|
|
<!-- 表格操作 -->
|
|
<template #operation="{ row }">
|
|
<template #operation="{ row }">
|
|
- <el-button link type="primary" @click="onSpecialApply(row)" title="特提申请" v-if="row.workflowId" v-auth="'business:special:apply'">
|
|
|
|
- 特提申请
|
|
|
|
|
|
+ <el-button link type="primary" @click="onprogressDetail(row)" title="审批明细">
|
|
|
|
+ 审批明细
|
|
</el-button>
|
|
</el-button>
|
|
<order-detail :order="row" @updateList="queryList" />
|
|
<order-detail :order="row" @updateList="queryList" />
|
|
</template>
|
|
</template>
|
|
</ProTable>
|
|
</ProTable>
|
|
</el-card>
|
|
</el-card>
|
|
- <!-- 特提申请 -->
|
|
|
|
- <special-apply ref="specialApplyRef" @updateList="queryList" />
|
|
|
|
|
|
+ <!-- 审批明细 -->
|
|
|
|
+ <audit-record ref="auditRecordRef" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script setup lang="tsx" name="orderSpecial">
|
|
<script setup lang="tsx" name="orderSpecial">
|
|
@@ -57,8 +60,8 @@ import { formatDate } from '@/utils/formatTime';
|
|
import { useRouter } from 'vue-router';
|
|
import { useRouter } from 'vue-router';
|
|
import { orderListSpecial } from '@/api/business/special';
|
|
import { orderListSpecial } from '@/api/business/special';
|
|
// 引入组件
|
|
// 引入组件
|
|
-const SpecialApply = defineAsyncComponent(() => import('@/views/business/special/components/Special-apply.vue')); // 忒提申请
|
|
|
|
const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
|
|
const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
|
|
|
|
+const AuditRecord = defineAsyncComponent(() => import('@/components/AuditRecord/index.vue')); // 审核记录
|
|
// 定义变量内容
|
|
// 定义变量内容
|
|
const ruleFormRef = ref<RefType>(); // 表单ref
|
|
const ruleFormRef = ref<RefType>(); // 表单ref
|
|
const router = useRouter(); // 路由
|
|
const router = useRouter(); // 路由
|
|
@@ -66,42 +69,25 @@ const proTableRef = ref<RefType>(); // 表格ref
|
|
// 表格配置项
|
|
// 表格配置项
|
|
const columns = ref<any[]>([
|
|
const columns = ref<any[]>([
|
|
{ type: 'selection', fixed: 'left', width: 55 },
|
|
{ type: 'selection', fixed: 'left', width: 55 },
|
|
|
|
+ { prop: 'expiredStatus', label: '超期状态', align: 'center' },
|
|
{ prop: 'no', label: '工单编码', width: 150 },
|
|
{ prop: 'no', label: '工单编码', width: 150 },
|
|
{ prop: 'isProvince', label: '省/市工单', width: 100 },
|
|
{ prop: 'isProvince', label: '省/市工单', width: 100 },
|
|
- { prop: 'actualHandleStepName', label: '办理节点', width: 150 },
|
|
|
|
{ prop: 'statusText', label: '工单状态', width: 100 },
|
|
{ prop: 'statusText', label: '工单状态', width: 100 },
|
|
|
|
+ { prop: 'actualHandleStepName', label: '申请节点', width: 150 },
|
|
|
|
+ { prop: 'actualHandleStepName', label: '特提节点', width: 150 },
|
|
{ prop: 'title', label: '标题', width: 300 },
|
|
{ prop: 'title', label: '标题', width: 300 },
|
|
|
|
+ { prop: 'orgLevelOneName', label: '申请部门', width: 170 },
|
|
|
|
+ { prop: 'orgLevelOneName', label: '申请人', width: 170 },
|
|
{
|
|
{
|
|
prop: 'startTime',
|
|
prop: 'startTime',
|
|
- label: '受理时间',
|
|
|
|
|
|
+ label: '申请时间',
|
|
width: 170,
|
|
width: 170,
|
|
render: (scope) => {
|
|
render: (scope) => {
|
|
return <span>{formatDate(scope.row.startTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
return <span>{formatDate(scope.row.startTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
- {
|
|
|
|
- prop: 'expiredTime',
|
|
|
|
- label: '工单期满时间',
|
|
|
|
- width: 170,
|
|
|
|
- render: (scope) => {
|
|
|
|
- return <span>{formatDate(scope.row.expiredTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- prop: 'filedTime',
|
|
|
|
- label: '办结时间',
|
|
|
|
- width: 170,
|
|
|
|
- render: (scope) => {
|
|
|
|
- return <span>{formatDate(scope.row.filedTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- { prop: 'orgLevelOneName', label: '一级部门', width: 170 },
|
|
|
|
- { prop: 'actualHandleOrgName', label: '接办部门', width: 170 },
|
|
|
|
{ prop: 'acceptType', label: '受理类型', width: 150 },
|
|
{ prop: 'acceptType', label: '受理类型', width: 150 },
|
|
- { prop: 'counterSignTypeText', label: '是否会签', width: 100 },
|
|
|
|
{ prop: 'hotspotName', label: '热点分类', width: 200 },
|
|
{ prop: 'hotspotName', label: '热点分类', width: 200 },
|
|
- { prop: 'tagNames', label: '工单标签', width: 200 },
|
|
|
|
- { prop: 'employeeName', label: '受理人', width: 120 },
|
|
|
|
{ prop: 'operation', label: '操作', fixed: 'right', width: 170, align: 'center' },
|
|
{ prop: 'operation', label: '操作', fixed: 'right', width: 170, align: 'center' },
|
|
]);
|
|
]);
|
|
const state = reactive({
|
|
const state = reactive({
|
|
@@ -136,19 +122,14 @@ const resetQuery = throttle((formEl: FormInstance | undefined) => {
|
|
formEl.resetFields();
|
|
formEl.resetFields();
|
|
queryList();
|
|
queryList();
|
|
}, 300);
|
|
}, 300);
|
|
-// 导出
|
|
|
|
-const onExport = () => {
|
|
|
|
- console.log('导出');
|
|
|
|
-};
|
|
|
|
-// 特提申请
|
|
|
|
-const specialApplyRef = ref<RefType>();
|
|
|
|
-const onSpecialApply = (row: any) => {
|
|
|
|
- if (row.counterSignType || row.counterSignType === 0) {
|
|
|
|
- // 会签工单无法进行特提
|
|
|
|
- ElMessage.warning('工单会签中,请先结束会签!');
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- specialApplyRef.value.openDialog(row); // 需要审核
|
|
|
|
|
|
+// 审批明细
|
|
|
|
+const auditRecordRef = ref<RefType>(); // 流转记录
|
|
|
|
+const onprogressDetail = (row: any) => {
|
|
|
|
+ const params = {
|
|
|
|
+ dialogTitle: '审批明细',
|
|
|
|
+ ...row
|
|
|
|
+ };
|
|
|
|
+ auditRecordRef.value.openDialog(params);
|
|
};
|
|
};
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
queryList();
|
|
queryList();
|