123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <div class="app-container">
- <!-- 搜索工作栏 -->
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="流程名" prop="name">
- <el-input v-model="queryParams.name" placeholder="请输入流程名" clearable size="small" @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="创建时间">
- <el-date-picker v-model="dateRangeCreateTime" size="small" style="width: 240px" value-format="yyyy-MM-dd"
- type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <!-- 列表 -->
- <el-table v-loading="loading" :data="list">
- <el-table-column label="任务编号" align="center" prop="id" width="320" fixed />
- <el-table-column label="任务名称" align="center" prop="name" width="200" />
- <el-table-column label="所属流程" align="center" prop="processInstance.name" width="200" />
- <el-table-column label="流程发起人" align="center" prop="processInstance.startUserNickname" />
- <el-table-column label="结果" align="center" prop="result">
- <template slot-scope="scope">
- <span>
- <el-tag type="primary" v-if="scope.row.result === 1"> <!-- 进行中 -->
- {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, scope.row.result) }}
- </el-tag>
- <el-tag type="success" v-if="scope.row.result === 2"> <!-- 通过 -->
- {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, scope.row.result) }}
- </el-tag>
- <el-tag type="danger" v-if="scope.row.result === 3"> <!-- 不通过 -->
- {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, scope.row.result) }}
- </el-tag>
- <el-tag type="info" v-if="scope.row.result === 4"> <!-- 撤回 -->
- {{ getDictDataLabel(DICT_TYPE.BPM_PROCESS_INSTANCE_RESULT, scope.row.result) }}
- </el-tag>
- </span>
- </template>
- </el-table-column>
- <el-table-column label="审批意见" align="center" prop="comment" width="200" />
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="审批时间" align="center" prop="endTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.endTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="耗时" align="center" prop="durationInMillis" width="180">
- <template slot-scope="scope">
- <span>{{ getDateStar(scope.row.durationInMillis) }}</span>
- </template>
- </el-table-column>
- <!-- TODO 耗时 -->
- <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <!-- TODO 权限、颜色 -->
- <el-button size="mini" type="text" icon="el-icon-edit">详情</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页组件 -->
- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
- @pagination="getList"/>
- </div>
- </template>
- <script>
- import {getDoneTaskPage} from '@/api/bpm/task'
- import {getDate} from "@/utils/dateUtils";
- export default {
- name: "Done",
- components: {
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 已办任务列表
- list: [],
- // 查询参数
- dateRangeCreateTime: [],
- queryParams: {
- pageNo: 1,
- pageSize: 10,
- name: null,
- },
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询列表 */
- getList() {
- this.loading = true;
- // 处理查询参数
- let params = {...this.queryParams};
- this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
- getDoneTaskPage(params).then(response => {
- this.list = response.data.list;
- this.total = response.data.total;
- this.loading = false;
- });
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNo = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRangeCreateTime = [];
- this.resetForm("queryForm");
- this.handleQuery();
- },
- getDateStar(ms) {
- return getDate(ms);
- }
- }
- };
- </script>
|