|
|
|
|
<template>
|
|
|
|
|
<basic-container>
|
|
|
|
|
<!-- 重点工作管理 -->
|
|
|
|
|
<avue-crud
|
|
|
|
|
:option="option"
|
|
|
|
|
:table-loading="loading"
|
|
|
|
|
:data="data"
|
|
|
|
|
v-model="form"
|
|
|
|
|
v-model:page="page"
|
|
|
|
|
ref="crud"
|
|
|
|
|
@search-change="searchChange"
|
|
|
|
|
@search-reset="searchReset"
|
|
|
|
|
@current-change="currentChange"
|
|
|
|
|
@size-change="sizeChange"
|
|
|
|
|
@refresh-change="refreshChange"
|
|
|
|
|
@on-load="onLoad"
|
|
|
|
|
@sort-change="sortChange"
|
|
|
|
|
>
|
|
|
|
|
<template #menu-left>
|
|
|
|
|
<el-button type="primary" @click="handleAdd" v-if="permissionList.addBtn"> 新增 </el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #menu="{ row }">
|
|
|
|
|
<el-button type="text" @click="handleView(row)" v-if="permissionList.viewBtn">
|
|
|
|
|
详情
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-if="row.approvalStatus != 8 && permissionList.editBtn"
|
|
|
|
|
@click="handleEdit(row)"
|
|
|
|
|
>
|
|
|
|
|
修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-if="row.approvalStatus == 1 && permissionList.reviewBtn"
|
|
|
|
|
@click="checkRow(row)"
|
|
|
|
|
>
|
|
|
|
|
审核
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
v-if="(row.approvalStatus == 1||row.approvalStatus ==2) && permissionList.deleteBtn"
|
|
|
|
|
@click="deleteRow(row)"
|
|
|
|
|
>
|
|
|
|
|
删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- 项目开始时间 -->
|
|
|
|
|
<template #projectStartTime="scope">
|
|
|
|
|
{{ scope.row.projectStartTime ? scope.row.projectStartTime.substring(0, 10) : '' }}
|
|
|
|
|
</template>
|
|
|
|
|
<template #projectDesiredEnd="scope">
|
|
|
|
|
{{ scope.row.projectDesiredEnd ? scope.row.projectDesiredEnd.substring(0, 10) : '' }}
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</avue-crud>
|
|
|
|
|
<!-- 新增弹窗 -->
|
|
|
|
|
<add-dialog
|
|
|
|
|
v-if="addDialogVisible"
|
|
|
|
|
:title="title"
|
|
|
|
|
:visible="addDialogVisible"
|
|
|
|
|
:rowItem="rowItem"
|
|
|
|
|
@close="closeDialog"
|
|
|
|
|
></add-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 审核弹窗 -->
|
|
|
|
|
<review
|
|
|
|
|
v-if="checkDialog"
|
|
|
|
|
:showDialog="checkDialog"
|
|
|
|
|
@closeDialog="closeDialog"
|
|
|
|
|
:rowItem="rowItem"
|
|
|
|
|
></review>
|
|
|
|
|
|
|
|
|
|
<!-- 执行/核查/核准弹窗 -->
|
|
|
|
|
<milestoneDialog
|
|
|
|
|
:title="subTitle"
|
|
|
|
|
:showDialog="executeDialog"
|
|
|
|
|
v-if="executeDialog"
|
|
|
|
|
@closeDialog="closeDialog"
|
|
|
|
|
:rowItem="executeForm"
|
|
|
|
|
:detailForm="detailForm"
|
|
|
|
|
></milestoneDialog>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getProcessList,
|
|
|
|
|
addProcess,
|
|
|
|
|
updateProcess,
|
|
|
|
|
delProcess,
|
|
|
|
|
} from '../../api/flowManagement/index';
|
|
|
|
|
import AddDialog from './addDialog.vue';
|
|
|
|
|
import review from './review.vue';
|
|
|
|
|
import milestoneDialog from './milestoneDialog.vue';
|
|
|
|
|
import { getDictionary } from '@/api/system/dict';
|
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
|
export default {
|
|
|
|
|
components: { AddDialog, review, milestoneDialog },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 状态
|
|
|
|
|
// 0-立项待提交、1-立项待审核、2-立项审批不通过、3-项目进行中、
|
|
|
|
|
// 4-项目待核查、5-项目核查不通过、6-项目待核准、7-项目核准不通过、
|
|
|
|
|
// 8-项目已核准
|
|
|
|
|
addDialogVisible: false, // 新增弹窗显隐控制
|
|
|
|
|
title: '新增',
|
|
|
|
|
loading: false,
|
|
|
|
|
checkDialog: false,
|
|
|
|
|
subTitle: '执行',
|
|
|
|
|
detailForm: {},
|
|
|
|
|
checkForm: {},
|
|
|
|
|
detailListSelectList: [],
|
|
|
|
|
checkRules: {
|
|
|
|
|
checkResult: [{ required: true, message: '请选择审核结果', trigger: 'blur' }],
|
|
|
|
|
},
|
|
|
|
|
executeDialog: false,
|
|
|
|
|
data: [],
|
|
|
|
|
form: {},
|
|
|
|
|
existingFiles: [], // 已有附件列表
|
|
|
|
|
addForm: {},
|
|
|
|
|
query: {},
|
|
|
|
|
page: {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
total: 0,
|
|
|
|
|
},
|
|
|
|
|
option: {
|
|
|
|
|
columnSort: true,
|
|
|
|
|
tip: false,
|
|
|
|
|
expand: false,
|
|
|
|
|
rowKey: 'id',
|
|
|
|
|
height: 'auto',
|
|
|
|
|
align: 'center',
|
|
|
|
|
calcHeight: 32,
|
|
|
|
|
simplePage: false,
|
|
|
|
|
searchShow: true,
|
|
|
|
|
searchMenuSpan: 6,
|
|
|
|
|
searchIcon: true,
|
|
|
|
|
searchIndex: 3,
|
|
|
|
|
tree: false,
|
|
|
|
|
border: true,
|
|
|
|
|
index: true,
|
|
|
|
|
selection: false,
|
|
|
|
|
viewBtn: false,
|
|
|
|
|
delBtn: false,
|
|
|
|
|
editBtn: false,
|
|
|
|
|
editBtnText: '修改',
|
|
|
|
|
addBtn: false,
|
|
|
|
|
labelWidth: 120,
|
|
|
|
|
menu: true,
|
|
|
|
|
menuWidth: 190,
|
|
|
|
|
dialogWidth: 600,
|
|
|
|
|
dialogClickModal: false,
|
|
|
|
|
searchEnter: true,
|
|
|
|
|
excelBtn: true,
|
|
|
|
|
gridBtn: false,
|
|
|
|
|
searchShowBtn: false,
|
|
|
|
|
showOverflowTooltip: true,
|
|
|
|
|
searchLabelPosition: 'left',
|
|
|
|
|
searchGutter: 24,
|
|
|
|
|
searchSpan: 6,
|
|
|
|
|
menuAlign: 'left',
|
|
|
|
|
gridBtn: false,
|
|
|
|
|
searchMenuPosition: 'right',
|
|
|
|
|
addBtnIcon: ' ',
|
|
|
|
|
viewBtnIcon: ' ',
|
|
|
|
|
delBtnIcon: ' ',
|
|
|
|
|
editBtnIcon: ' ',
|
|
|
|
|
searchShowBtn: false,
|
|
|
|
|
|
|
|
|
|
column: [
|
|
|
|
|
{
|
|
|
|
|
label: '项目编号',
|
|
|
|
|
prop: 'paCode',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '项目名称',
|
|
|
|
|
prop: 'projectName',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '项目负责人',
|
|
|
|
|
prop: 'projectHead',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
searchLabelWidth: 100,
|
|
|
|
|
width: 120,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '项目开始时间',
|
|
|
|
|
prop: 'projectStartTime',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
width: 130,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '项目预期结束时间',
|
|
|
|
|
prop: 'projectDesiredEnd',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
width: 140,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '制单人',
|
|
|
|
|
prop: 'touchingMan',
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '制单部门',
|
|
|
|
|
prop: 'touchingDept',
|
|
|
|
|
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '制单时间',
|
|
|
|
|
prop: 'touchingTime',
|
|
|
|
|
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '状态',
|
|
|
|
|
prop: 'approvalStatus',
|
|
|
|
|
sortable: 'custom',
|
|
|
|
|
|
|
|
|
|
overflow: true,
|
|
|
|
|
search: false,
|
|
|
|
|
type: 'select',
|
|
|
|
|
dicUrl: '/blade-system/dict/dictionary?code=flow_status',
|
|
|
|
|
props: {
|
|
|
|
|
label: 'dictValue',
|
|
|
|
|
value: 'dictKey',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
rowItem: {}, //存储每一行的数据
|
|
|
|
|
executeResultList: [], //执行结果
|
|
|
|
|
checkResultList: [], //核查结果
|
|
|
|
|
gradeList: [], //评价等级
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapGetters(['permission']),
|
|
|
|
|
permissionList() {
|
|
|
|
|
return {
|
|
|
|
|
addBtn: this.validData(this.permission.managementOfKeyTasks_add, false),
|
|
|
|
|
viewBtn: this.validData(this.permission.managementOfKeyTasks_details, false),
|
|
|
|
|
editBtn: this.validData(this.permission.managementOfKeyTasks_edit, false),
|
|
|
|
|
reviewBtn: this.validData(this.permission.managementOfKeyTasks_review, false),
|
|
|
|
|
deleteBtn: this.validData(this.permission.managementOfKeyTasks_del, false),
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.getExecuteResult();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getExecuteTypeText(type) {
|
|
|
|
|
const item = this.executeResultList.find(item => item.dictKey === type);
|
|
|
|
|
console.log('item', item);
|
|
|
|
|
return item ? item.dictValue : '';
|
|
|
|
|
},
|
|
|
|
|
// 获取执行类型 flow_project_executeResult
|
|
|
|
|
getExecuteResult() {
|
|
|
|
|
getDictionary({ code: 'flow_project_executeResult' }).then(res => {
|
|
|
|
|
this.executeResultList = res.data.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 核查结果 flow_project_checkResult
|
|
|
|
|
getCheckResult() {
|
|
|
|
|
getDictionary({ code: 'flow_project_checkResult' }).then(res => {
|
|
|
|
|
this.checkResultList = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 评价等级 flow_project_grade
|
|
|
|
|
|
|
|
|
|
getGrade() {
|
|
|
|
|
getDictionary({ code: 'flow_project_grade' }).then(res => {
|
|
|
|
|
this.gradeList = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeDialog(type) {
|
|
|
|
|
this.checkDialog = false;
|
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
|
this.executeDialog = false;
|
|
|
|
|
// if (type) {
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
handleAdd() {
|
|
|
|
|
this.title = '新增';
|
|
|
|
|
this.rowItem = {};
|
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
|
// 查看详情
|
|
|
|
|
handleView(row) {
|
|
|
|
|
this.title = '详情';
|
|
|
|
|
this.rowItem = row;
|
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
|
// 修改
|
|
|
|
|
handleEdit(row) {
|
|
|
|
|
this.rowItem = row;
|
|
|
|
|
this.title = '修改';
|
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
|
// 删除
|
|
|
|
|
deleteRow(row) {
|
|
|
|
|
this.$confirm('确定将选择数据删除?', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
}).then(res => {
|
|
|
|
|
delProcess({ ids: row.id }).then(res => {
|
|
|
|
|
this.$message.success('删除成功');
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 审核立项
|
|
|
|
|
checkRow(row) {
|
|
|
|
|
this.checkDialog = true;
|
|
|
|
|
this.rowItem = row;
|
|
|
|
|
},
|
|
|
|
|
//确定审核立项
|
|
|
|
|
submitCheck() {
|
|
|
|
|
this.$refs.checkForm.validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
let query = {
|
|
|
|
|
id: this.rowItem.id,
|
|
|
|
|
approvalStatus: this.checkForm.checkResult == 1 ? 3 : 2,
|
|
|
|
|
};
|
|
|
|
|
updateProcess(query).then(res => {
|
|
|
|
|
this.checkDialog = false;
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 执行
|
|
|
|
|
executeRow(row, detail) {
|
|
|
|
|
this.detailForm = detail;
|
|
|
|
|
this.executeForm = row;
|
|
|
|
|
this.subTitle = '执行';
|
|
|
|
|
this.executeDialog = true;
|
|
|
|
|
},
|
|
|
|
|
// 核查
|
|
|
|
|
auditRow(row, detail) {
|
|
|
|
|
this.subTitle = '核查';
|
|
|
|
|
this.detailForm = detail;
|
|
|
|
|
this.executeForm = row;
|
|
|
|
|
// 模拟加载已有附件
|
|
|
|
|
this.existingFiles = [
|
|
|
|
|
{ name: '项目计划书.pdf', url: '#' },
|
|
|
|
|
{ name: '进度报告.docx', url: '#' },
|
|
|
|
|
];
|
|
|
|
|
this.executeDialog = true;
|
|
|
|
|
},
|
|
|
|
|
// 核准
|
|
|
|
|
examineRow(row, detail) {
|
|
|
|
|
this.subTitle = '核准';
|
|
|
|
|
this.detailForm = detail;
|
|
|
|
|
this.executeForm = row;
|
|
|
|
|
// 模拟加载已有附件
|
|
|
|
|
this.existingFiles = [
|
|
|
|
|
{ name: '项目计划书.pdf', url: '#' },
|
|
|
|
|
{ name: '进度报告.docx', url: '#' },
|
|
|
|
|
{ name: '验收单.xlsx', url: '#' },
|
|
|
|
|
];
|
|
|
|
|
this.executeDialog = true;
|
|
|
|
|
},
|
|
|
|
|
// 下载附件
|
|
|
|
|
downloadFile(file) {
|
|
|
|
|
const link = document.createElement('a');
|
|
|
|
|
link.href = file.url;
|
|
|
|
|
link.download = file.name;
|
|
|
|
|
document.body.appendChild(link);
|
|
|
|
|
link.click();
|
|
|
|
|
document.body.removeChild(link);
|
|
|
|
|
},
|
|
|
|
|
// 删除已有附件
|
|
|
|
|
removeExistingFile(index) {
|
|
|
|
|
this.$confirm('确定删除该附件?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.existingFiles.splice(index, 1);
|
|
|
|
|
this.$message.success('删除成功');
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
searchReset() {
|
|
|
|
|
this.query = {};
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
searchChange(params, done) {
|
|
|
|
|
this.query = params;
|
|
|
|
|
this.page.currentPage = 1;
|
|
|
|
|
this.onLoad(this.page, params);
|
|
|
|
|
done();
|
|
|
|
|
},
|
|
|
|
|
currentChange(currentPage) {
|
|
|
|
|
this.page.currentPage = currentPage;
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
sizeChange(pageSize) {
|
|
|
|
|
this.page.pageSize = pageSize;
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
refreshChange() {
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
sortChange({ prop, order }) {
|
|
|
|
|
this.query.descs = undefined;
|
|
|
|
|
this.query.ascs = undefined;
|
|
|
|
|
let orderByFieldKey = order === 'descending' ? 'descs' : 'ascs';
|
|
|
|
|
this.query[orderByFieldKey] = !prop
|
|
|
|
|
? undefined
|
|
|
|
|
: prop.replace(/([a-z])([A-Z0-9])/g, '$1_$2').toUpperCase();
|
|
|
|
|
// // 重新加载数据
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
onLoad(page, params = {}) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getProcessList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
|
|
|
|
|
res => {
|
|
|
|
|
// this.data = res.data.data.records;
|
|
|
|
|
const records = res.data.data.records;
|
|
|
|
|
this.data = records.map(item => {
|
|
|
|
|
if (item.stoneList && Array.isArray(item.stoneList)) {
|
|
|
|
|
item.stoneList = item.stoneList.map(stone => ({
|
|
|
|
|
...stone,
|
|
|
|
|
executeTypeText: this.getExecuteTypeText(stone.executeType),
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
return item;
|
|
|
|
|
});
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.page.total = res.data.data.total;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.attachment-list {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border: 1px solid #ebeef5;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list h4 {
|
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #606266;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list li {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
border-bottom: 1px solid #ebeef5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list li:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list a {
|
|
|
|
|
color: #409eff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.attachment-list a:hover {
|
|
|
|
|
color: #66b1ff;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
</style>
|