|
@@ -1,171 +1,177 @@
|
|
|
<template>
|
|
|
- <div class="business-publish-container layout-pd">
|
|
|
- <!-- 搜索 -->
|
|
|
- <el-card shadow="never">
|
|
|
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent class="mt15" label-width="100px">
|
|
|
- <el-row :gutter="10">
|
|
|
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
- <el-form-item label="关键词" prop="Keyword">
|
|
|
- <el-input v-model="state.queryParams.Keyword" placeholder="工单编码/标题" clearable @keyup.enter="queryList" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
- <el-form-item label=" ">
|
|
|
- <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-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
- </el-card>
|
|
|
- <el-card shadow="never">
|
|
|
- <!-- 功能按钮 -->
|
|
|
- <div class="mb20">
|
|
|
- <el-button type="primary" @click="publishMultiple" v-auth="'business:publish:multiple'" :disabled="!multipleSelection.length">
|
|
|
- <SvgIcon name="iconfont icon-tianjiawenjian" class="mr5" />批量发布
|
|
|
- </el-button>
|
|
|
- </div>
|
|
|
- <!-- 表格 -->
|
|
|
- <el-table :data="state.tableData" v-loading="state.loading" row-key="id" ref="multipleTableRef" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="55" :selectable="selectable"/>
|
|
|
- <el-table-column prop="no" label="工单编码" show-overflow-tooltip width="150"></el-table-column>
|
|
|
- <el-table-column prop="no" label="是否会签件" show-overflow-tooltip width="100"></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 label="工单标题" show-overflow-tooltip width="300">
|
|
|
- <template #default="{ row }">
|
|
|
- <span class="color-primary">{{ row.title }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="startTime" 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>{{ row.acceptorName}} <span v-if="row.acceptorStaffNo">[{{row.acceptorStaffNo}}]</span> </span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="hotspotName" label="热点分类" show-overflow-tooltip width="200"></el-table-column>
|
|
|
- <el-table-column prop="acceptType" label="受理类型" show-overflow-tooltip width="150"></el-table-column>
|
|
|
- <el-table-column prop="actualHandleOrgName" label="接办部门" show-overflow-tooltip width="170"></el-table-column>
|
|
|
- <el-table-column prop="actualHandleTime" label="接办时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.actualHandleTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="statusText" label="状态" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column label="操作" width="120" fixed="right" align="center">
|
|
|
- <template #default="{ row }">
|
|
|
- <el-button link type="primary" @click="publish(row)" title="发布工单" v-auth="'business:publish:backlog:publish'"> 发布 </el-button>
|
|
|
- <el-button link type="primary" @click="OnOrderRedo(row)" title="重办工单" v-auth="'business:publish:backlog:redo'"> 重办 </el-button>
|
|
|
- </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"
|
|
|
- />
|
|
|
- </el-card>
|
|
|
- <!-- 工单发布详情 -->
|
|
|
- <order-publish ref="orderPublishRef" @updateList="queryList" />
|
|
|
- <!-- 流程审批 -->
|
|
|
- <process-approval ref="processApprovalRef" @orderProcessSuccess="queryList" />
|
|
|
- </div>
|
|
|
+ <div class="business-publish-container layout-pd">
|
|
|
+ <!-- 搜索 -->
|
|
|
+ <el-card shadow="never">
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent class="mt15" label-width="100px">
|
|
|
+ <el-row :gutter="10">
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
+ <el-form-item label="关键词" prop="Keyword">
|
|
|
+ <el-input v-model="state.queryParams.Keyword" placeholder="工单编码/标题" clearable @keyup.enter="queryList" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
|
|
|
+ <el-form-item label=" ">
|
|
|
+ <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-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+ <el-card shadow="never">
|
|
|
+ <!-- 功能按钮 -->
|
|
|
+ <div class="mb20">
|
|
|
+ <el-button type="primary" @click="publishMultiple" v-auth="'business:publish:multiple'" :disabled="!multipleSelection.length">
|
|
|
+ <SvgIcon name="iconfont icon-tianjiawenjian" class="mr5" />批量发布
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <!-- 表格 -->
|
|
|
+ <el-table :data="state.tableData" v-loading="state.loading" row-key="id" ref="multipleTableRef" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" :selectable="selectable" />
|
|
|
+ <el-table-column prop="no" label="工单编码" show-overflow-tooltip width="150"></el-table-column>
|
|
|
+ <el-table-column prop="no" label="是否会签件" show-overflow-tooltip width="100"></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 label="工单标题" show-overflow-tooltip width="300">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <span class="color-primary">{{ row.title }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="startTime" 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
|
|
|
+ >{{ row.acceptorName }} <span v-if="row.acceptorStaffNo">[{{ row.acceptorStaffNo }}]</span>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="hotspotName" label="热点分类" show-overflow-tooltip width="200"></el-table-column>
|
|
|
+ <el-table-column prop="acceptType" label="受理类型" show-overflow-tooltip width="150"></el-table-column>
|
|
|
+ <el-table-column prop="actualHandleOrgName" label="接办部门" show-overflow-tooltip width="170"></el-table-column>
|
|
|
+ <el-table-column prop="actualHandleTime" label="接办时间" show-overflow-tooltip width="170">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <span>{{ formatDate(row.actualHandleTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="statusText" label="状态" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column label="操作" width="120" fixed="right" align="center">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="publish(row)" title="发布工单" v-auth="'business:publish:backlog:publish'"> 发布 </el-button>
|
|
|
+ <el-button link type="primary" @click="OnOrderRedo(row)" title="重办工单" v-auth="'business:publish:backlog:redo'"> 重办 </el-button>
|
|
|
+ </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"
|
|
|
+ />
|
|
|
+ </el-card>
|
|
|
+ <!-- 工单发布详情 -->
|
|
|
+ <order-publish ref="orderPublishRef" @updateList="queryList" />
|
|
|
+ <!-- 流程审批 -->
|
|
|
+ <process-audit ref="processAuditRef" @orderProcessSuccess="queryList" />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script setup lang="ts" name="orderPublishBacklog">
|
|
|
import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
-import {ElButton, ElMessage, ElMessageBox, FormInstance} from 'element-plus';
|
|
|
+import { ElButton, ElMessage, FormInstance } from 'element-plus';
|
|
|
import { auth } from '/@/utils/authFunction';
|
|
|
import { throttle } from '/@/utils/tools';
|
|
|
import { formatDate } from '/@/utils/formatTime';
|
|
|
-import {publishList} from "/@/api/business/publish";
|
|
|
+import { publishList } from '/@/api/business/publish';
|
|
|
// 引入组件
|
|
|
const OrderPublish = defineAsyncComponent(() => import('/@/views/business/publish/component/Order-publish.vue'));
|
|
|
-const ProcessApproval = defineAsyncComponent(() => import('/@/components/ProcessApproval/index.vue')); // 流程审批
|
|
|
+const ProcessAudit = defineAsyncComponent(() => import('/@/components/ProcessAudit/index.vue')); // 流程审批
|
|
|
// 定义变量内容
|
|
|
const ruleFormRef = ref<RefType>(); // 表单ref
|
|
|
const state = reactive(<any>{
|
|
|
- queryParams: {
|
|
|
- // 查询条件
|
|
|
- PageIndex: 1,
|
|
|
- PageSize: 10,
|
|
|
- Keyword: '', // 关键词
|
|
|
- },
|
|
|
- tableData: [], //表单
|
|
|
- loading: false, // 加载
|
|
|
- total: 0, // 总数
|
|
|
+ queryParams: {
|
|
|
+ // 查询条件
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 10,
|
|
|
+ Keyword: '', // 关键词
|
|
|
+ },
|
|
|
+ tableData: [], //表单
|
|
|
+ loading: false, // 加载
|
|
|
+ total: 0, // 总数
|
|
|
});
|
|
|
/** 获取列表 */
|
|
|
const queryList = throttle(() => {
|
|
|
- if (!auth('business:publish:backlog:query')) ElMessage.error('抱歉,您没有权限查看工单发布列表!');
|
|
|
- else {
|
|
|
- state.loading = true;
|
|
|
- publishList(state.queryParams).then((res: any) => {
|
|
|
- state.tableData = res.result?.items ?? [];
|
|
|
- state.total = res.result?.total ?? 0;
|
|
|
- state.loading = false;
|
|
|
- }).catch((err: any) => {
|
|
|
- state.loading = false;
|
|
|
- })
|
|
|
- }
|
|
|
+ if (!auth('business:publish:backlog:query')) ElMessage.error('抱歉,您没有权限查看工单发布列表!');
|
|
|
+ else {
|
|
|
+ state.loading = true;
|
|
|
+ publishList(state.queryParams)
|
|
|
+ .then((res: any) => {
|
|
|
+ state.tableData = res.result?.items ?? [];
|
|
|
+ state.total = res.result?.total ?? 0;
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch((err: any) => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
}, 300);
|
|
|
-const selectable = (row:any)=>{ //设置省工单不可选(不可批量发布)
|
|
|
- return !row.isProvince;
|
|
|
-}
|
|
|
+const selectable = (row: any) => {
|
|
|
+ //设置省工单不可选(不可批量发布)
|
|
|
+ return !row.isProvince;
|
|
|
+};
|
|
|
/** 重置按钮操作 */
|
|
|
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 multipleTableRef = ref<RefType>();
|
|
|
+const multipleSelection = ref<any>([]);
|
|
|
const handleSelectionChange = (val: any[]) => {
|
|
|
- multipleSelection.value = val
|
|
|
-}
|
|
|
+ multipleSelection.value = val;
|
|
|
+};
|
|
|
// 批量发布
|
|
|
const publishMultiple = () => {
|
|
|
- console.log('批量发布');
|
|
|
+ console.log('批量发布');
|
|
|
};
|
|
|
// 发布
|
|
|
const orderPublishRef = ref<RefType>(); // 工单发布详情ref
|
|
|
const publish = (row: any) => {
|
|
|
- orderPublishRef.value.openDialog(row);
|
|
|
+ orderPublishRef.value.openDialog(row);
|
|
|
};
|
|
|
// 工单重办
|
|
|
-const processApprovalRef = ref<RefType>(); // 流程审批ref
|
|
|
+const processAuditRef = ref<RefType>(); // 流程审批ref
|
|
|
const OnOrderRedo = (row: any) => {
|
|
|
- const params = {
|
|
|
- id: row.workflowId,
|
|
|
- processType: '工单重办',
|
|
|
- orderDetail:row,
|
|
|
- extra:{
|
|
|
- dialogTitle: '工单重办',
|
|
|
- inputPlaceholder:'重办意见',
|
|
|
- annexName:"办理附件",
|
|
|
- }
|
|
|
- }
|
|
|
- processApprovalRef.value.openDialog(params);
|
|
|
+ const params = {
|
|
|
+ id: row.workflowId,
|
|
|
+ processType: '工单重办',
|
|
|
+ orderDetail: row,
|
|
|
+ extra: {
|
|
|
+ dialogTitle: '工单重办',
|
|
|
+ inputPlaceholder: '重办意见',
|
|
|
+ annexName: '办理附件',
|
|
|
+ },
|
|
|
+ };
|
|
|
+ processAuditRef.value.openDialog(params);
|
|
|
};
|
|
|
onMounted(() => {
|
|
|
- queryList();
|
|
|
+ queryList();
|
|
|
});
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
.business-publish-container {
|
|
|
-
|
|
|
}
|
|
|
</style>
|