| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <div class="filter-container">
- <el-form
- label-width="100px"
- class="ele-form-search"
- @keyup.enter.native="reload"
- @submit.native.prevent
- >
- <el-row :gutter="15">
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="流程名:" prop="name">
- <el-input clearable v-model.trim="params.name"></el-input>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="结果:" prop="result">
- <!-- <el-select
- v-model="params.status"
- placeholder="请选择状态"
- clearable
- >
- <el-option
- v-for="dict in statusList"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select> -->
- <DictSelection
- dictName="流程实例的结果"
- clearable
- v-model="params.result"
- >
- </DictSelection>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="创建时间:" prop="createTime">
- <el-date-picker
- v-model="params.createTime"
- style="width: 100%"
- value-format="yyyy-MM-dd HH:mm:ss"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :default-time="['00:00:00', '23:59:59']"
- />
- </el-form-item>
- </el-col>
- <el-col style="display: flex;justify-content: flex-end" v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <div class="ele-form-actions">
- <el-button
- type="primary"
- icon="el-icon-search"
- class="ele-btn-icon"
- @click="reload"
- >
- 查询
- </el-button>
- <el-button @click="reset">重置</el-button>
- </div>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- cache-key="systemRoleTable5"
- >
- <template v-slot:result="{ row }">
- <el-tag size="medium" :type="getTimelineItemType(getDictValue('流程实例的结果', row.result))"> {{getDictValue('流程实例的结果', row.result)}} </el-tag>
- </template>
- <template v-slot:durationInMillis="{ row }">
- {{getDateTime(row.durationInMillis)}}
- </template>
- <template v-slot:name="{ row }">
- <el-link type="primary" :underline="false" @click="handleAudit(row)">
- {{ row.name }}</el-link
- >
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleAudit(row)"
- >详情</el-button
- >
- </template>
- </ele-pro-table>
- </el-card>
- <detail ref="detailRef"></detail>
- </div>
- </template>
- <script>
- import dictMixins from '@/mixins/dictMixins';
- import { getDoneTaskPage } from '@/api/bpm/task';
- import {getDate} from "@/utils/dateUtils";
- import detail from './detailDialog.vue';
- // 默认表单数据
- const defaultParams = {
- status: '',
- name: ''
- };
- export default {
- name: 'BpmDoneTask',
- components: {detail},
- mixins: [dictMixins],
- data() {
- return {
- // 遮罩层
- loading: true,
- params: { ...defaultParams },
- statusList: [],
- columns: [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'processInstance.processTypeName',
- label: '流程分类',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150
- },
- {
- prop: 'processInstance.name',
- label: '流程名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150
- },
- {
- prop: 'name',
- slot: 'name',
- label: '任务名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150
- },
- {
- prop: 'businessCode',
- label: '单据编码',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'processInstance.startUserNickname',
- label: '流程发起人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'result',
- slot: 'result',
- label: '结果',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- {
- prop: 'reason',
- label: '审批意见',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'endTime',
- label: '审批时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 180
- },
- {
- prop: 'durationInMillis',
- slot: 'durationInMillis',
- label: '耗时',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130
- },
- // {
- // columnKey: 'action',
- // label: '操作',
- // width: 230,
- // align: 'center',
- // resizable: false,
- // slot: 'action',
- // showOverflowTooltip: true,
- // fixed: 'right'
- // }
- ]
- };
- },
- computed: {
- // 是否开启响应式布局
- styleResponsive() {
- return this.$store.state.theme.styleResponsive;
- }
- },
- created() {},
- methods: {
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return getDoneTaskPage({
- pageNo: page,
- pageSize: limit,
- ...this.params
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where });
- },
- /* 重置 */
- reset() {
- this.params = { ...defaultParams };
- this.reload();
- },
- /** 处理审批按钮 */
- handleAudit(row) {
- this.$refs.detailRef.open(row);
- },
- getTimelineItemType(result) {
- if (result === '通过') {
- return 'success';
- }
- if (result === '不通过') {
- return 'danger';
- }
- if (result === '取消') {
- return 'info';
- }
- if (result === '处理中') {
- return 'warning';
- }
- return '';
- },
- getDateTime(ms){
- return getDate(ms)
- }
- }
- };
- </script>
|