| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <!-- 搜索表单 -->
- <index-search @search="reload" />
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- row-key="id"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 340px)"
- full-height="calc(100vh - 116px)"
- cache-key="project-initiationTable"
- :selection.sync="selection"
- :tree-props="{ children: 'children' }"
- @row-click="handlePlanTableNodeClick"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <!-- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit2('', 'add')"
- >
- 新建2
- </el-button> -->
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('', 'add')"
- >
- 新建
- </el-button>
- <el-button
- size="small"
- type="danger"
- icon="el-icon-delete"
- class="ele-btn-icon"
- @click="allDelBtn"
- >
- 删除
- </el-button>
- <!-- <el-button-->
- <!-- size="small"-->
- <!-- type="danger"-->
- <!-- icon="el-icon-remove-outline"-->
- <!-- class="ele-btn-icon"-->
- <!-- @click="handleStatus('4')"-->
- <!-- >-->
- <!-- 终止-->
- <!-- </el-button>-->
- <!-- <el-button-->
- <!-- size="small"-->
- <!-- type="warning"-->
- <!-- icon="el-icon-video-play"-->
- <!-- class="ele-btn-icon"-->
- <!-- @click="handleStatus('2')"-->
- <!-- >-->
- <!-- 暂停-->
- <!-- </el-button>-->
- <!-- <el-button-->
- <!-- size="small"-->
- <!-- type="primary"-->
- <!-- icon="el-icon-video-pause"-->
- <!-- class="ele-btn-icon"-->
- <!-- @click="handleStatus('1')"-->
- <!-- >-->
- <!-- 启动-->
- <!-- </el-button>-->
- <!-- <el-button class="el-icon-sort" size="small" @click="expandAll">-->
- <!-- 展开/折叠-->
- <!-- </el-button>-->
- <!-- <div class="el-button--primary">122222</div> -->
- </template>
- <template v-slot:code="{ row }">
- <el-button type="text" @click="openDetail(row)">{{
- row.code
- }}</el-button>
- </template>
- <template v-slot:isOverTime="{ row }">
- <el-tag v-if="row.isOverTime == 0" type="success">正常</el-tag>
- <el-tag v-else type="danger">超时</el-tag>
- </template>
- <template v-slot:speedPercent="{ row }">
- <el-progress
- :stroke-width="20"
- text-color="#606266"
- :text-inside="true"
- :percentage="row.speedPercent || 0"
- :color="customColorMethod"
- ></el-progress>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="processSubmit(row)"
- v-if="[0, 3].includes(row.processStatus)"
- >
- 提交
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- v-if="[0, 3].includes(row.processStatus)"
- @click="openEdit(row, 'edit')"
- >
- 修改
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除吗?"
- v-if="[0, 3].includes(row.processStatus)"
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- <el-dropdown trigger="click">
- <span class="el-dropdown-link">
- 操作菜单<i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item
- v-if="
- [2].includes(row.processStatus) && [1].includes(row.status)
- "
- >
- <el-link
- icon="el-icon-success"
- type="success"
- :underline="false"
- @click="handleStatus(planFinishAPI, '完成', row)"
- >完成
- </el-link>
- </el-dropdown-item>
- <el-dropdown-item
- v-if="
- [2].includes(row.processStatus) && [0, 1].includes(row.status)
- "
- >
- <el-link
- icon="el-icon-video-pause"
- type="warning"
- :underline="false"
- @click="handleStatus(planPauseAPI, '暂停', row)"
- >暂停
- </el-link>
- </el-dropdown-item>
- <el-dropdown-item
- v-if="
- [2].includes(row.processStatus) && [2].includes(row.status)
- "
- >
- <el-link
- icon="el-icon-video-play"
- type="success"
- :underline="false"
- @click="handleStatus(planStartupAPI, '启动', row)"
- >启动
- </el-link>
- </el-dropdown-item>
- <el-dropdown-item
- v-if="
- [2].includes(row.processStatus) &&
- [0, 1, 2].includes(row.status)
- "
- >
- <el-link
- icon="el-icon-error"
- type="danger"
- :underline="false"
- @click="handleStatus(planTerminationAPI, '终止', row)"
- >终止</el-link
- >
- </el-dropdown-item>
- <el-dropdown-item>
- <el-link
- icon="el-icon-info"
- type="primary"
- :underline="false"
- @click="handelBOMConstructDetail(row)"
- >
- 计划信息
- </el-link>
- </el-dropdown-item>
- <el-dropdown-item
- divided
- v-if="
- [0, 1, 2, 3].includes(row.processStatus) &&
- [0, 1].includes(row.status)
- "
- >
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="openEdit({ ...row, parentPlanId: row.id }, 'add')"
- >
- 新增子计划
- </el-link>
- </el-dropdown-item>
- <el-dropdown-item
- divided
- v-if="
- [0, 1, 2, 3].includes(row.processStatus) &&
- [0, 1].includes(row.status)
- "
- >
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-plus"
- @click="handleAddTask(row)"
- >
- 新增任务
- </el-link>
- </el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </template>
- </ele-pro-table>
- </el-card>
- <!-- 编辑弹窗 -->
- <add-or-edit-dialog
- v-if="addOrEditDialogFlag"
- @reload="reload"
- :addOrEditDialogFlag.sync="addOrEditDialogFlag"
- ref="addOrEditDialogRef"
- ></add-or-edit-dialog>
- <add-dialog
- v-if="addDialogFlag"
- @reload="reload"
- :addDialogFlag.sync="addDialogFlag"
- ref="addDialogRef"
- ></add-dialog>
- <detail-dialog
- v-if="detailDialogFlag"
- :detailDialogFlag.sync="detailDialogFlag"
- ref="detailDialogRef"
- ></detail-dialog>
- <!-- 新增任务 -->
- <add-task-dialog
- v-if="addTaskDialogFlag"
- @reload="reload"
- :addOrEditDialogFlag.sync="addTaskDialogFlag"
- ref="addTaskDialogRef"
- ></add-task-dialog>
- <!-- 多选删除弹窗 -->
- <pop-modal
- :visible.sync="delVisible"
- content="是否确定删除?"
- @done="commitBtn"
- />
- <process-submit-dialog
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- ></process-submit-dialog>
- </div>
- </template>
- <script>
- import indexSearch from './components/index-search.vue';
- import addOrEditDialog from './components/addOrEditDialog.vue';
- import detailDialog from './components/detailDialog.vue';
- import addDialog from '@/views/project-manage/planManage/components/addDialog.vue';
- import {
- projectsPlanDeleteAPI,
- projectsPlanPageAPI,
- myProjectsPlanPageAPI,
- submit,
- planFinishAPI,
- planPauseAPI,
- planStartupAPI,
- planTerminationAPI
- } from '@/api/project-manage/plan';
- import { proStatusEnum, reviewStatusEnum } from '@/enum/dict';
- import { mapGetters } from 'vuex';
- import { getByCode } from '@/api/system/dictionary-data';
- import popModal from '@/components/pop-modal/index.vue';
- import addTaskDialog from '../task-manage/components/addOrEditDialog.vue';
- import processSubmitDialog from '@/BIZComponents/processSubmitDialog/processSubmitDialog.vue';
- export default {
- name: 'index',
- components: {
- processSubmitDialog,
- popModal,
- addOrEditDialog,
- detailDialog,
- indexSearch,
- addDialog,
- addTaskDialog
- },
- props: {
- projectType: {
- type: Number,
- default: 0
- },
- ids: {
- type: String,
- default: ''
- }
- },
- watch: {
- $route(){
- this.reload&&this.reload()
- }
- },
- computed: {
- ...mapGetters(['getDictValue']),
- columns() {
- return [
- {
- width: 45,
- type: 'selection',
- columnKey: 'selection',
- align: 'center'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'code',
- label: '计划编码',
- align: 'center',
- showOverflowTooltip: true,
- slot: 'code',
- minWidth: 200
- },
- {
- prop: 'name',
- label: '计划名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'projectName',
- label: '关联项目',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- {
- prop: 'projectStageName',
- label: '关联项目阶段',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120
- },
- // {
- // prop: 'responsibleDeptName',
- // label: '负责部门',
- // align: 'center',
- // showOverflowTooltip: true,
- // minWidth: 100
- // },
- {
- prop: 'responsibleUserName',
- label: '负责人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 120,
- formatter: (_row, _column, cellValue) => {
- return !_row.responsibleUserList.length
- ? ''
- : _row.responsibleUserList.map((i) => i.userName).join(',');
- }
- },
- {
- prop: 'planStartDate',
- label: '计划开始日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'planEndDate',
- label: '计划完成日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'realStartTime',
- label: '实际开始日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'realEndTime',
- label: '实际完成日期',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'cost',
- label: '费用(元)',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 140
- },
- {
- prop: 'status',
- label: '计划状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return proStatusEnum[_row.status].label;
- }
- },
- {
- prop: 'processStatus',
- label: '审核状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return reviewStatusEnum[_row.processStatus].label;
- }
- },
- {
- prop: 'isOverTime',
- label: '是否超时',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- slot: 'isOverTime'
- },
- {
- prop: 'speedPercent',
- label: '计划进度',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 150,
- slot: 'speedPercent'
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 290,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true
- }
- ];
- }
- },
- data() {
- return {
- planFinishAPI: planFinishAPI,
- planPauseAPI: planPauseAPI,
- planStartupAPI: planStartupAPI,
- planTerminationAPI: planTerminationAPI,
- selection: [],
- dictList: [],
- // 表格列配置
- // 是否显示编辑弹窗
- addOrEditDialogFlag: false,
- addDialogFlag: false,
- detailDialogFlag: false,
- delVisible: false,
- addTaskDialogFlag: false,
- processSubmitDialogFlag: false,
- // 展开折叠
- expandAllFlag: false
- };
- },
- async created() {},
- methods: {
- handlePlanTableNodeClick(row) {
- this.$emit('handlePlanTableNodeClick', row);
- },
- getDictV(code, val) {
- if (!this.dictList[code]) return '';
- return this.dictList[code].find((item) => item.value == val)?.label;
- },
- async getDictList(code) {
- let { data: res } = await getByCode(code);
- this.dictList[code] = res.map((item) => {
- let values = Object.keys(item);
- return {
- value: values[0],
- label: item[values[0]]
- };
- });
- },
- customColorMethod(percentage) {
- if (percentage < 30) {
- return '#909399';
- } else if (percentage < 70) {
- return '#e6a23c';
- } else {
- return '#67c23a';
- }
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, parent }) {
- await this.getDictList('pro_projects_status');
- await this.getDictList('pro_projects_type');
- const api=this.$route.path=='/planManage'?projectsPlanPageAPI:myProjectsPlanPageAPI
- let paramAttr = '';
- switch (this.projectType) {
- case 1:
- paramAttr = 'projectBomId';
- break;
- case 2:
- paramAttr = 'projectStageId';
- break;
- default:
- paramAttr = 'projectId';
- }
- return api({
- pageNum: page,
- size: limit,
- ...where,
- [paramAttr]: this.ids
- });
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ where, size: 1, pageNum: 10 });
- },
- /* 显示编辑 */
- openEdit2(row = {}, type) {
- this.addDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.addDialogRef.init(row, type);
- });
- },
- /* 显示编辑 */
- openEdit(row = {}, type) {
- this.addOrEditDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.addOrEditDialogRef.init(row, type);
- });
- },
- openDetail(row = {}) {
- this.detailDialogFlag = true;
- this.$nextTick(() => {
- this.$refs.detailDialogRef.init(row);
- });
- },
- handleAddTask(row) {
- this.addTaskDialogFlag = true;
- this.$nextTick(() => {
- row.targetPlanId = row.id;
- this.$refs.addTaskDialogRef.init(row, 'add');
- });
- },
- handelBOMConstructDetail(row) {
- this.$router.push({
- path: '/project-manage/planManage/components/details',
- query: {
- row: JSON.stringify(row)
- }
- });
- },
- //流程提交
- processSubmit(row) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: row.id,
- businessKey: 'pro_plan_approve_basic',
- callBackMethodType: '1',
- callBackMethod:
- 'proTargetPlanApproveApiImpl.updatePlanApprovalStatus',
- pcHandle:
- '/bpm/handleTask/components/project-manage/plan-manage/submit.vue',
- pcView:
- '/bpm/handleTask/components/project-manage/plan-manage/detailDialog.vue',
- miniHandle: '',
- miniView: '',
- formCreateUserId: row.createUserId
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- // submit({
- // planId: row.id
- // }).then((res) => {
- // this.$message.success('提交成功');
- // this.reload();
- // });
- },
- //批量删除
- allDelBtn() {
- if (this.selection.length === 0) return;
- let flag = this.selection.some((item) =>
- [1, 2].includes(item.processStatus)
- );
- if (flag)
- return this.$message.warning(
- '抱歉已审核、审核中的数据不能删除,请检查'
- );
- this.delVisible = true;
- },
- //删除弹框确定
- commitBtn() {
- const dataId = this.selection.map((v) => v.id);
- this.remove(dataId);
- },
- /* 删除 */
- remove(ids) {
- const loading = this.$loading({ lock: true });
- projectsPlanDeleteAPI(ids)
- .then((res) => {
- loading.close();
- this.$message.success('删除成功');
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- },
- async handleStatus(API, msg, row) {
- let message = '确定' + msg + '该计划吗';
- this.$confirm(message, '提示', {
- type: 'warning'
- })
- .then(async () => {
- await API(row.id);
- this.$message.success('操作成功');
- this.reload();
- })
- .catch(() => {});
- },
- /* 展开/折叠全部 */
- expandAll() {
- this.expandAllFlag = !this.expandAllFlag;
- this.$refs.table.toggleRowExpansionAll(this.expandAllFlag);
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .el-dropdown-link {
- cursor: pointer;
- color: #188ffd;
- }
- ::v-deep .el-dropdown-link {
- cursor: pointer;
- color: #188ffd;
- }
- ::v-deep .el-dropdown-menu__item {
- .el-link {
- width: 100%;
- display: flex;
- flex: 1;
- justify-content: flex-start;
- }
- }
- ::v-deep .ele-table-tool-default {
- display: flex !important;
- }
- </style>
|