123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <template>
- <div class="business-publish-todo-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 label="归档类型" prop="FiledType">
- <el-select v-model="state.queryParams.FiledType" placeholder="请选择归档类型">
- <el-option label="中心归档" value="10" />
- <el-option label="部门归档" value="20" />
- </el-select>
- </el-form-item>
- <el-form-item label="是否会签" prop="IsCountersign">
- <el-select v-model="state.queryParams.IsCountersign" placeholder="请选择是否会签">
- <el-option label="是" value="true" />
- <el-option label="否" value="false" />
- </el-select>
- </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)" 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"
- :data="state.tableData"
- @updateTable="queryList"
- :loading="state.loading"
- :total="state.total"
- 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="'business:publish:todo:multiple'" :disabled="!scope.isSelected">
- <SvgIcon name="iconfont icon-tianjiawenjian" class="mr5" />批量发布
- </el-button>
- </template>
- <template #isProvince="{ row }">
- <span>{{ row.isProvince ? '省工单' : '市工单' }}</span>
- </template>
- <template #title="{ row }">
- <order-detail :order="row" @updateList="queryList">{{ row.title }}</order-detail>
- </template>
- <template #employeeName="{ row }">
- <span
- >{{ row.acceptorName }} <span v-if="row.acceptorStaffNo">[{{ row.acceptorStaffNo }}]</span>
- </span>
- </template>
- <!-- 表格操作 -->
- <template #operation="{ row }">
- <el-button link type="primary" @click="publish(row)" title="发布工单" v-auth="'business:publish:todo:publish'"> 发布 </el-button>
- <!-- <el-button link type="primary" @click="redo(row)" title="重办工单" v-auth="'business:publish:todo:publish'"> 重办 </el-button>-->
- <order-detail :order="row" @updateList="queryList" />
- </template>
- </ProTable>
- </el-card>
- <!-- 工单发布详情 -->
- <order-publish ref="orderPublishRef" @updateList="queryList" />
- <!-- 工单重办详情 -->
- <order-redo ref="orderRedoRef" @updateList="queryList" />
- </div>
- </template>
- <script setup lang="tsx" name="businessPublishTodo">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElButton, ElMessage, ElMessageBox, FormInstance } from 'element-plus';
- import { throttle } from '@/utils/tools';
- import { formatDate } from '@/utils/formatTime';
- import { batchPublishOrder, publishList } from '@/api/todo/publish';
- // 引入组件
- const OrderPublish = defineAsyncComponent(() => import('@/views/business/publish/component/Order-publish.vue')); // 发布
- const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
- const OrderRedo = defineAsyncComponent(() => import('@/views/business/publish/component/Order-redo.vue')); // 重办
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const state = reactive({
- queryParams: {
- // 查询条件
- PageIndex: 1,
- PageSize: 10,
- Keyword: null, // 关键词
- FiledType: null, // 归档类型
- IsCountersign: null, // 是否会签
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- });
- const proTableRef = ref<RefType>(); // 表格ref
- const selectable = (row: any) => {
- //设置省工单和会签工单不可选(不可批量发布)
- return !row.isProvince && row.counterSignType === null;
- };
- // 表格配置项
- const columns = ref<any[]>([
- { type: 'selection', selectable: selectable, 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: 120 },
- { prop: 'acceptType', label: '受理类型', width: 150 },
- { prop: 'counterSignTypeText', label: '是否会签', width: 100 },
- { prop: 'actualHandleOrgName', label: '接办部门', width: 150 },
- { prop: 'employeeName', label: '受理人', width: 120 },
- {
- prop: 'actualHandleTime',
- label: '接办时间',
- width: 170,
- render: (scope) => {
- return <span>{formatDate(scope.row.actualHandleTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
- },
- },
- {
- prop: 'startTime',
- label: '受理时间',
- width: 170,
- render: (scope) => {
- return <span>{formatDate(scope.row.startTime, '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: 'operation', label: '操作', fixed: 'right', width: 180, align: 'center' },
- ]);
- /** 获取列表 */
- const queryList = throttle(() => {
- state.loading = true;
- publishList(state.queryParams)
- .then((res: any) => {
- state.tableData = res.result?.items ?? [];
- state.total = res.result?.total ?? 0;
- state.loading = false;
- })
- .catch(() => {
- state.loading = false;
- });
- }, 300);
- /** 重置按钮操作 */
- const resetQuery = throttle((formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- queryList();
- }, 300);
- // 批量发布
- const publishMultiple = () => {
- const ids = proTableRef.value.selectedList.map((item: any) => item.id);
- const names = proTableRef.value.selectedList.map((item: any) => item.title);
- ElMessageBox.confirm(`您确定要发布:【${names}】的工单吗,是否继续?`, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- draggable: true,
- cancelButtonClass: 'default-button',
- autofocus: false,
- })
- .then(() => {
- batchPublishOrder({ ids }).then(() => {
- ElMessage.success('操作成功');
- queryList();
- });
- })
- .catch(() => {});
- };
- // 发布
- const orderPublishRef = ref<RefType>(); // 工单发布详情ref
- const publish = (row: any) => {
- orderPublishRef.value.openDialog(row);
- };
- // 重办
- const orderRedoRef = ref<RefType>(); // 工单重办ref
- const redo = (row: any) => {
- orderRedoRef.value.openDialog(row);
- };
- onMounted(() => {
- queryList();
- });
- </script>
|