You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

429 lines
15 KiB

6 months ago
<template>
<div class="L-task-info">
5 months ago
<div class="info-left" id="L-size-main">
<div class="content-info" id="L-header">
<div class="info-title">任务详情</div>
5 months ago
<div class="teshu-top-info">
<div class="top-info">
<el-row class="top-row">
<el-col :span="8">
任务编号<span>{{ titleInfoObj.id }}</span>
</el-col>
<el-col :span="8">
任务名称<span>{{ titleInfoObj.taskName }}</span>
</el-col>
<el-col :span="8">
任务状态<span>{{ taskstatus(titleInfoObj.taskStatus) }}</span>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
任务期限<span>{{ titleInfoObj.taskDeadline }}</span>
</el-col>
<el-col :span="8">
任务下发时间<span>{{ titleInfoObj.taskTime }}</span>
</el-col>
</el-row>
</div>
5 months ago
</div>
</div>
<div class="info-cut-off-rule" id="L-tab">
<div class="left-tab" :class="index == 1 ? 'active-tab' : ''" @click="activeTab(1)"></div>
<div :class="index == 2 ? 'active-tab' : ''" @click="activeTab(2)"></div>
</div>
<div class="info-bottom-box">
<el-form :inline="true" :model="formInline" size="small" class="demo-form-inline" v-if="index == 1">
<el-row>
<el-col :span="8">
<el-form-item label="核查单位:">
<el-input v-model="formInline.dwmc" placeholder="请输入"></el-input>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="系统类型:">
<el-select v-model="formInline.xtlx" placeholder="请选择">
<el-option v-for="dict in dict.type.zc_xtlx" :key="dict.label" :label="dict.label"
:value="dict.value">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="9">
<el-form-item label="审核状态:">
<el-select v-model="formInline.status" placeholder="请选择">
<el-option label="待核查" value="0">
</el-option>
<el-option label="已核查" value="1">
</el-option>
<el-option label="审核通过" value="3">
</el-option>
<el-option label="审核不通过" value="4">
</el-option>
<el-option label="已报废" value="5">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item>
<el-button size="mini" type="primary" @click="handleQuery()"></el-button>
<el-button size="mini" @click="resetQuery()"></el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-form :inline="true" :model="formInlineTwo" size="small" class="demo-form-inline" v-if="index == 2">
<el-row>
<el-col :span="7">
<el-form-item label="单位名称:">
<el-input v-model="formInlineTwo.unitName" placeholder="请输入"></el-input>
<!-- <el-select v-model="formInline.unit" placeholder="请选择"> -->
<!-- <el-option
6 months ago
v-for="dict in dict.type.bms_approval_status"
:key="dict.value"
:label="dict.label"
:value="dict.value">
</el-option> -->
5 months ago
<!-- </el-select> -->
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item>
<el-button size="mini" type="primary" @click="handleQuery()"></el-button>
<el-button size="mini" @click="resetQuery()"></el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
<section v-if="index == 1">
<el-table v-loading="loading" :data="tableData" :height="tabHeader" :max-height="tabHeader"
:row-class-name="tableRowClassName">
<el-table-column type="index" width="50" label="序号" align="center" />
<el-table-column label="资产编号" key="id" width="200px" prop="id" align="center" />
<el-table-column label="系统名称" key="xtmc" prop="xtmc" align="center" />
<el-table-column label="系统类型" key="xtlx" prop="xtlx" align="center">
<template slot-scope="scope">
<dict-tag :options="dict.type.zc_xtlx" :value="scope.row.xtlx" />
</template>
</el-table-column>
<el-table-column label="核查单位" key="zcdwmc" prop="zcdwmc" align="center" />
<el-table-column label="审核状态" key="status" width="200px" prop="status" class-name="table-status"
align="center">
<template slot-scope="scope">
<span v-if="scope.row.status == 0" style="color: #F59A23;">
5 months ago
待核查
</span>
<span v-if="scope.row.status == 1" style="color: #F43147;">
5 months ago
待审核
</span>
<span v-if="scope.row.status == 3" style="color: #00FF00;">
5 months ago
审核通过
</span>
<span v-if="scope.row.status == 4" style="color: #C51717;">
5 months ago
审核不通过
</span>
<span v-if="scope.row.status == 5" style="color: #C51717;">
5 months ago
已报废
</span>
</template>
</el-table-column>
<el-table-column label="操作" prop="userId" class-name="table-operation" align="center">
<template slot-scope="scope">
5 months ago
<div style="display: flex;align-items: center;justify-content: center;">
<div style="display: flex;align-items: center;cursor: pointer;" @click="goInfo(1,scope.row)">
<img src="@/assets/images/icon-ck@2x.png" alt="" style="width: 20px;margin-right: 5px;">
<span class="look-info"
5 months ago
style="color: #1485EF;">查看</span>
5 months ago
</div>
<div style="display: flex;align-items: center;cursor: pointer;" @click="goInfo(1,scope.row)" v-if="$route.query.pageType == 'info' || $route.meta.pageType == 'info'">
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 20px;margin-right: 5px;">
<span class="look-info"
5 months ago
style="color: #1485EF;">审核</span>
5 months ago
</div>
</div>
5 months ago
</template>
</el-table-column>
</el-table>
</section>
<section v-if="index == 2">
<el-table v-loading="loading" :data="tableDataTwo" :height="tabHeader" :max-height="tabHeader"
:row-class-name="tableRowClassName">
<el-table-column type="index" width="50" label="序号" align="center" />
<el-table-column label="单位名称" key="unitName" width="200px" prop="unitName" align="center" />
<el-table-column label="核查资产数量" key="hczcsl" prop="hczcsl" align="center" />
<el-table-column label="完成数量" key="wcsl" prop="wcsl" align="center">
<!-- <template slot-scope="scope">
6 months ago
<dict-tag :options="dict.type.project_middle_type" :value="scope.row.projectMiddleType"/>
</template> -->
5 months ago
</el-table-column>
<el-table-column label="未完成数量" key="wwcsl" prop="wwcsl" align="center" />
<el-table-column label="未完成比例" key="wwcbl" width="200px" prop="wwcbl" align="center">
<template slot-scope="scope">
<span style="color: #192A92;">{{ scope.row.wwcbl }}</span>
</template>
</el-table-column>
</el-table>
</section>
<my-pagination id="L-pagination" :total="total" :page="pagination.current" :limit="pagination.size"
@pagination="getPagination" :current-page.sync="pagination.current"></my-pagination>
</div>
</div>
5 months ago
<div class="info-right" v-if="$route.query.pageType == 'look' || $route.meta.pageType == 'look'">
5 months ago
<div class="info-title">任务流程节点</div>
<div class="timeline">
<div class="timeline-items" v-for="(item,index) in timeLineData">
<div class="left-box">
<img class="main-img" v-if="item.status == 1" src="@/assets/images/rwxf.png" alt="">
<img class="main-img" v-if="item.status == 2" src="@/assets/images/wctj.png" alt="">
<img class="main-img" v-if="item.status == 3" src="@/assets/images/shbh.png" alt="">
<img class="main-img" v-if="item.status == 4" src="@/assets/images/shtg.png" alt="">
<img class="icon-jt" v-if="(index + 1) != timeLineData.length" src="@/assets/images/icon-jt@2x.png" alt="">
</div>
<div class="right-box">
<span class="span-title" v-if="item.status == 1">:</span>
<span class="span-title" v-if="item.status == 2">:</span>
<span class="span-title" v-if="item.status == 3">:</span>
<span class="span-title" v-if="item.status == 4">:</span>
<span class="span-time">{{ item.timestamp }}</span>
</div>
</div>
5 months ago
</div>
</div>
6 months ago
</div>
</template>
<script>
import myPagination from "@/views/components/Pagination/index.vue"
5 months ago
import { getassetTaskid, geassetTaskcHc } from "@/api/renwuApi/index.js"
6 months ago
export default {
5 months ago
dicts: ['zc_xtlx'],
components: { myPagination },
6 months ago
data() {
return {
5 months ago
index: 1,
formInline: {
6 months ago
},
5 months ago
formInlineTwo: {
unitName: "",
6 months ago
},
5 months ago
total: 0,
pagination: {
current: 1,
size: 10,
6 months ago
},
5 months ago
tableData: [
5 months ago
6 months ago
],
5 months ago
tableDataTwo: [
5 months ago
6 months ago
],
5 months ago
loading: false,
6 months ago
tabHeader: undefined,
timeLineData: [{
status: 1,
timestamp: '2024-11-11 17:00:00'
}, {
status: 2,
timestamp: '2024-11-11 17:00:00'
}, {
status: 3,
timestamp: '2024-11-11 17:00:00'
}, {
status: 2,
timestamp: '2024-11-11 17:00:00'
}, {
status: 4,
timestamp: '2024-11-11 17:00:00'
}, {
status: 2,
timestamp: '2024-11-11 17:00:00'
}, {
status: 4,
6 months ago
timestamp: '2024-11-11 17:00:00'
}, {
status: 2,
6 months ago
timestamp: '2024-11-11 17:00:00'
}, {
status: 4,
6 months ago
timestamp: '2024-11-11 17:00:00'
}, {
status: 2,
6 months ago
timestamp: '2024-11-11 17:00:00'
}, {
status: 4,
6 months ago
timestamp: '2024-11-11 17:00:00'
5 months ago
}],
titleInfoObj: {}
6 months ago
}
},
5 months ago
mounted() {
6 months ago
this.getList();
this.cancalDebounce();
window.addEventListener('resize', this.cancalDebounce);
5 months ago
this.titleInfo()
6 months ago
},
destroyed() {
window.removeEventListener('resize', this.cancalDebounce);
},
5 months ago
5 months ago
methods: {
5 months ago
goInfo(type, row) {
// 查看
if (type == 1) {
this.$router.push({
5 months ago
name: 'taskAuditInfo', query: {
5 months ago
pageType: "look",
5 months ago
taskId: row.taskId,
assetId:row.id
5 months ago
}
})
}
//审核
if (type == 2) {
5 months ago
this.$router.push({
name: 'taskAuditInfo', query: {
pageType: "change",
taskId: row.taskId,
assetId:row.id
5 months ago
5 months ago
}
})
5 months ago
}
// getassetTaskid(row.id)
},
5 months ago
taskstatus(id) {
if (id) {
let obj = {
1: "进行中",
2: "正常完成", 3: "超期完成", 4: "正常完成", 5: "审核驳回"
}
return obj[id]
} else {
return "-"
}
},
titleInfo() {
5 months ago
// console.log(this.$route.query);
getassetTaskid(this.$route.query.id || this.$route.meta.id).then(res => {
5 months ago
if (res.code == 200) {
this.titleInfoObj = res.data
}
})
},
6 months ago
// 重置
5 months ago
resetQuery() {
6 months ago
this.pagination = {
current: 1,
size: 10,
}
5 months ago
if (this.index == 1) {
6 months ago
this.formInline = {
5 months ago
6 months ago
}
this.getList();
5 months ago
} else if (this.index == 2) {
6 months ago
this.formInlineTwo = {
5 months ago
unitName: "",
6 months ago
}
this.getListTwo();
}
},
// 查询
5 months ago
handleQuery() {
6 months ago
this.pagination = {
current: 1,
size: 10,
}
5 months ago
if (this.index == 1) {
this.pagination = { ...this.pagination, ...this.formInline };
6 months ago
this.getList();
5 months ago
} else if (this.index == 2) {
6 months ago
this.getListTwo();
}
},
// 获取页码
5 months ago
getPagination() {
6 months ago
this.pagination.current = pages.page;
this.pagination.size = pages.limit;
5 months ago
if (this.index == 1) {
6 months ago
this.getList();
5 months ago
} else if (this.index == 2) {
6 months ago
this.getListTwo();
}
},
// 切换tab
5 months ago
activeTab(id) {
6 months ago
this.index = id
5 months ago
if (id == 1) {
6 months ago
this.formInline = {
5 months ago
unit: "",
type: "",
status: "",
6 months ago
}
this.getList();
} else {
this.formInlineTwo = {
5 months ago
unitName: "",
6 months ago
}
this.getList();
}
},
5 months ago
getList() {
geassetTaskcHc(this.pagination).then(res => {
this.tableData = res.data.records
})
},
getListTwo() { },
5 months ago
// 修改table背景色
5 months ago
tableRowClassName({ row, rowIndex }) {
5 months ago
if (rowIndex % 2 !== 0) {
return 'evenNumber-row';
}
return '';
},
6 months ago
// 屏幕尺寸变化
5 months ago
cancalDebounce() {
6 months ago
const element = document.getElementById('L-size-main'); // 通过元素的 ID 获取元素
const header = document.getElementById('L-header'); // 通过元素的 ID 获取元素
const tab = document.getElementById('L-tab'); // 通过元素的 ID 获取元素
const pagination = document.getElementById('L-pagination'); // 通过元素的 ID 获取元素
const elementHeight = element.offsetHeight;
const headerHeight = header.offsetHeight;
const paginationtHeight = pagination.offsetHeight;
const tabHeight = tab.offsetHeight;
this.tabHeader = elementHeight - headerHeight - paginationtHeight - tabHeight - 120;
6 months ago
}
},
5 months ago
beforeRouteEnter(to,from,next){
if(to.query.pageType == 'info') {
to.meta.title = '任务审核'
to.meta.pageType = to.query.pageType
to.meta.id = to.query.id
} else if(to.query.pageType == 'look') {
to.meta.title = '任务详情'
to.meta.pageType = to.query.pageType
to.meta.id = to.query.id
}
next();
},
6 months ago
}
</script>
5 months ago
<style lang="scss" scoped>
::v-deep .el-timeline {
padding-left: 0;
font-size: 12px;
}
::v-deep .el-form-item__label {
padding-right: 3px;
}
5 months ago
.look-info {
}
5 months ago
</style>