218 lines
6.5 KiB
Vue
218 lines
6.5 KiB
Vue
<template>
|
|
<div class="layout-padding" style="min-height: calc(100vh - 160px)">
|
|
<div class="layout-padding-auto layout-padding-view">
|
|
<el-row shadow="hover" v-show="showSearch" class="ml10">
|
|
<el-form :model="state.queryForm" ref="queryRef" :inline="true" @keyup.enter="getDataList">
|
|
<el-form-item :label="$t('task.flow')" prop="processName">
|
|
<el-input :placeholder="$t('task.pendingFlowTask.09123344-0')" v-model="state.queryForm.processName" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('task.createTime')" prop="taskTime">
|
|
<el-date-picker
|
|
type="datetimerange"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
v-model="state.queryForm.taskTime"
|
|
is-range
|
|
range-separator="To"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button icon="search" type="primary" @click="getDataList">
|
|
{{ $t('common.queryBtn') }}
|
|
</el-button>
|
|
<el-button icon="Refresh" @click="resetQuery">{{ $t('common.resetBtn') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<div class="mb8" style="width: 100%">
|
|
<right-toolbar
|
|
v-model:showSearch="showSearch"
|
|
class="ml10"
|
|
style="float: right; margin-right: 20px"
|
|
@queryTable="getDataList"
|
|
></right-toolbar>
|
|
</div>
|
|
</el-row>
|
|
|
|
<el-table
|
|
ref="dataTableRef"
|
|
v-loading="loading"
|
|
:data="state.dataList"
|
|
highlight-current-row
|
|
border
|
|
:cell-style="tableStyle.cellStyle"
|
|
:header-cell-style="tableStyle.headerCellStyle"
|
|
>
|
|
<el-table-column :label="$t('task.group')" prop="groupName" width="100" />
|
|
<el-table-column :label="$t('task.flow')" prop="processName" />
|
|
<el-table-column :label="$t('task.createBy')" prop="rootUserName" />
|
|
<el-table-column :label="$t('task.createTime')" prop="startTime" />
|
|
<el-table-column :label="$t('task.taskName')" prop="taskName" />
|
|
<el-table-column :label="$t('task.taskTime')" prop="taskCreateTime" />
|
|
<el-table-column fixed="right" :label="$t('common.action')" width="200">
|
|
<template #default="scope">
|
|
<el-button type="primary" size="small" link icon="VideoPlay" @click="deal(scope.row)"> {{ $t('task.pendingFlowTask.09123344-1') }} </el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination @current-change="currentChangeHandle" @size-change="sizeChangeHandle" v-bind="state.pagination"></pagination>
|
|
|
|
<!-- 右侧抽屉-->
|
|
<el-drawer v-model="rightDrawerVisible" direction="rtl" size="80%">
|
|
<template #header>
|
|
<h3>{{ currentData?.processName }}</h3>
|
|
</template>
|
|
<template #default>
|
|
<div class="box-content">
|
|
<div class="spdm-content">
|
|
<SpdmView path="/spdm/competenceCenter/condition" />
|
|
</div>
|
|
<div class="default">
|
|
<el-card class="box-card">
|
|
<form-render
|
|
@addLayoutOneItem="addLayoutOneItem"
|
|
@deleteLayoutOneItem="deleteLayoutOneItem"
|
|
ref="formRenderRef"
|
|
:form-list="currentOpenFlowForm"
|
|
></form-render>
|
|
</el-card>
|
|
<flow-node-format
|
|
:disableSelect="true"
|
|
:formData="formValue"
|
|
:task-id="currentData.taskId"
|
|
:processInstanceId="currentData.processInstanceId"
|
|
:flow-id="currentData.flowId"
|
|
ref="flowNodeFormatRef"
|
|
class="mt-4"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #footer>
|
|
<div style="flex: auto">
|
|
<el-button size="large" type="danger" @click="refuseTask">{{ $t('task.pendingFlowTask.09123344-2') }}</el-button>
|
|
<el-button size="large" type="primary" @click="submitTask">{{ $t('tools.startFlow.09125410-2') }}</el-button>
|
|
</div>
|
|
</template>
|
|
</el-drawer>
|
|
|
|
<!--同意提交处理-->
|
|
<agree-handle @taskSubmitEvent="taskSubmitEvent" ref="agreeHandler"></agree-handle>
|
|
|
|
<!--拒绝审核处理-->
|
|
<refuse-handle @taskSubmitEvent="taskSubmitEvent" ref="refuseHandler"></refuse-handle>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import FormRender from '/@/views/flow/form/render/FormRender.vue';
|
|
import AgreeHandle from './handler/agree.vue';
|
|
import RefuseHandle from './handler/refuse.vue';
|
|
import FlowNodeFormat from '/@/views/flow/form/tools/FlowNodeFormatData.vue';
|
|
import other from '/@/utils/other';
|
|
import {queryMineTask, queryTask} from '/@/api/flow/task';
|
|
import {BasicTableProps, useTable} from '/@/hooks/table';
|
|
import SpdmView from '/@/spdm/views/preview.vue'
|
|
|
|
const rightDrawerVisible = ref(false);
|
|
const showSearch = ref(true);
|
|
const loading = ref(false);
|
|
const queryRef = ref();
|
|
|
|
const currentData = ref();
|
|
const state: BasicTableProps = reactive<BasicTableProps>({
|
|
pageList: queryMineTask,
|
|
queryForm: {
|
|
processName: '',
|
|
taskTime: undefined,
|
|
},
|
|
});
|
|
|
|
const {tableStyle, getDataList, currentChangeHandle, sortChangeHandle, sizeChangeHandle} = useTable(state);
|
|
|
|
/**
|
|
* 点击开始处理
|
|
* @param row
|
|
*/
|
|
const deal = (row: any) => {
|
|
currentData.value = row;
|
|
queryTask(row.taskId, false).then((res) => {
|
|
currentOpenFlowForm.value = res.data.formItems;
|
|
rightDrawerVisible.value = true;
|
|
});
|
|
};
|
|
const currentOpenFlowForm = ref();
|
|
const addLayoutOneItem = (id: Number) => {
|
|
for (const item of currentOpenFlowForm.value) {
|
|
if (item.id !== id) {
|
|
continue;
|
|
}
|
|
let value = item.props.value;
|
|
let oriForm = item.props.oriForm;
|
|
value.push(other.deepClone(oriForm));
|
|
item.props.value = value;
|
|
}
|
|
};
|
|
const deleteLayoutOneItem = (id: number, index: number) => {
|
|
for (const item of currentOpenFlowForm.value) {
|
|
if (item.id !== id) {
|
|
continue;
|
|
}
|
|
item.props.value.splice(index, 1);
|
|
}
|
|
};
|
|
|
|
const agreeHandler = ref();
|
|
const refuseHandler = ref();
|
|
|
|
// 清空搜索条件
|
|
const resetQuery = () => {
|
|
queryRef.value.resetFields();
|
|
getDataList();
|
|
};
|
|
|
|
const taskSubmitEvent = () => {
|
|
rightDrawerVisible.value = false;
|
|
getDataList();
|
|
};
|
|
|
|
/**
|
|
* 提交任务
|
|
*/
|
|
const submitTask = () => {
|
|
agreeHandler.value.handle(currentData.value, currentOpenFlowForm.value);
|
|
};
|
|
/**
|
|
* 拒绝任务
|
|
*/
|
|
const refuseTask = () => {
|
|
refuseHandler.value.handle(currentData.value, currentOpenFlowForm.value);
|
|
};
|
|
onMounted(() => {
|
|
getDataList();
|
|
});
|
|
|
|
const formValue = computed(() => {
|
|
const obj: Record<string, any> = {};
|
|
|
|
for (var item of currentOpenFlowForm.value) {
|
|
obj[item.id] = item.props.value;
|
|
}
|
|
return obj;
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.box-content {
|
|
display: flex;
|
|
.spdm-content {
|
|
flex: 1;
|
|
}
|
|
.default {
|
|
width: 353px;
|
|
}
|
|
}
|
|
</style>
|