| | |
| | | <div @click="changeTab(4, 'remaining')" :class="{'item-warm': true, 'remaining-color': true, 'active': 4 === selectTabId}">剩余事项<span v-if="detailData && detailData.statistics">({{detailData.statistics.remainingTaskNum}})</span></div> |
| | | <div @click="changeTab(5, 'timely')" :class="{'item-warm': true, 'timely-color': true, 'active': 5 === selectTabId}">按时完成<span v-if="detailData && detailData.statistics">({{detailData.statistics.timelyFinishedTaskNum}})</span></div> |
| | | <div @click="changeTab(6, 'overtime')" :class="{'item-warm': true, 'overtime-color': true, 'active': 6 === selectTabId}">超时事项(0)</div> |
| | | <div @click="changeTab(3, 'wait')" :class="{'item-warm': true, 'wait-color': true, 'active': 3 === selectTabId}">容缺事项<span v-if="detailData && detailData.statistics">({{detailData.statistics.toleranceNum}})</span></div> |
| | | <!-- <div @click="changeTab(7, 'willOvertime')" :class="{'item-warm': true, 'willOvertime-color': true, 'active': 7 === selectTabId}">临期事项(0)</div>--> |
| | | <div @click="changeTab(3, 'wait')" :class="{'item-warm': true, 'wait-color': true, 'active': 3 === selectTabId}">容缺事项<span v-if="detailData && detailData.statistics">({{detailData.statistics.waitTaskNum}})</span></div> |
| | | <div @click="changeTab(7, 'jump')" :class="{'item-warm': true, 'willOvertime-color': true, 'active': 7 === selectTabId}">跳过事项<span v-if="detailData && detailData.statistics">({{detailData.statistics.jumpTaskNum}})</span></div> |
| | | <div @click="changeTab(8, 'urge')" :class="{'item-warm': true, 'urge-color': true, 'active': 8 === selectTabId}">督办事项(0)</div> |
| | | </div> |
| | | <div style="display: flex;justify-content: center;align-items: center;margin-top: 20px; position: relative"> |
| | | <el-form :inline="true" :model="queryParams" class="demo-form-inline"> |
| | | <el-form-item label="任务名称"> |
| | | <el-input v-model="queryParams.taskName" placeholder="任务名称"></el-input> |
| | | <el-input v-model="queryParams.taskName" clearable @clear="search" placeholder="任务名称"></el-input> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="search">查询</el-button> |
| | |
| | | this.queryParams.processInsId = this.$route.query.processInsId |
| | | this.queryParams.deployId = this.$route.query.deployId |
| | | this.queryParams.processName = this.$route.query.processName |
| | | if (this.$route.query.selectTabId) { |
| | | this.selectTabId = parseInt(this.$route.query.selectTabId) |
| | | } |
| | | sessionStorage.setItem("projectProDetail", JSON.stringify(this.queryParams)) |
| | | } else { |
| | | this.queryParams = params |
| | | } |
| | | this.loading = true |
| | | this.changeTab(this.selectTabId, this.transEventType(this.selectTabId)) |
| | | this.getProjectProcessInfo() |
| | | }, |
| | | methods: { |
| | | transEventType(selectTabId) { |
| | | if (selectTabId == 1) { |
| | | return "all" |
| | | } else if (selectTabId == 2) { |
| | | return "todo" |
| | | } else if (selectTabId == 3) { |
| | | return "wait" |
| | | } else if (selectTabId == 4) { |
| | | return "remaining" |
| | | } else if (selectTabId == 5) { |
| | | return "timely" |
| | | } else if (selectTabId == 6) { |
| | | return "overtime" |
| | | } else if (selectTabId == 7) { |
| | | return "jump" |
| | | } else if (selectTabId == 8) { |
| | | return "urge" |
| | | } |
| | | }, |
| | | submitSupervise() { |
| | | this.$refs["superviseForm"].validate(valid => { |
| | | if (valid) { |
| | |
| | | }) |
| | | }, |
| | | unitFormatter(row) { |
| | | if (row.taskStatus != '已完成') { |
| | | if (row.taskStatus != '已完成' && row.taskStatus != '跳过') { |
| | | return null |
| | | } |
| | | return row.handlerUnitName.join("、") |
| | | }, |
| | | candidateFormatter(row) { |
| | | if (row.taskStatus != '已完成') { |
| | | if (row.taskStatus != '已完成' && row.taskStatus != '跳过') { |
| | | return null |
| | | } |
| | | return row.handlerName.join("、") |
| | |
| | | } |
| | | getProjectProcessDetail(param).then(res => { |
| | | this.detailData = res.data |
| | | this.taskList = res.taskList |
| | | this.total = res.total |
| | | this.loading = false |
| | | }) |
| | | }, |
| | | changeTab(id, event) { |
| | | let beforeId = this.selectTabId |
| | | this.selectTabId = id |
| | | this.queryParams.taskType = event |
| | | this.queryParams.currentPage = 1; |
| | | if (beforeId !== id) { |
| | | this.getList() |
| | | } |
| | | this.getList() |
| | | } |
| | | } |
| | | } |
| | |
| | | color: white; |
| | | } |
| | | .timely-color { |
| | | background-color: rgb(204, 247, 131); |
| | | background-color: rgb(85, 248, 106); |
| | | } |
| | | .overtime-color { |
| | | background-color: #e8e866; |
| | |
| | | } |
| | | |
| | | .willOvertime-color { |
| | | background-color: rgb(255, 248, 29); |
| | | background-color: rgb(204, 247, 131); |
| | | } |
| | | .urge-color { |
| | | background-color: red; |