357 lines
11 KiB
Python
357 lines
11 KiB
Python
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<div slot="header" class="clearfix">
|
|
<span>任务详情</span>
|
|
</div>
|
|
<div style="margin-left: 10px; margin-right: 10px">
|
|
<el-row :gutter="20">
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">任务名称</span>
|
|
<span class="desc"> {{ task.name }}</span>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">截止日期</span>
|
|
<span class="desc"> {{ task.end_date }}</span>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">创建人</span>
|
|
<span class="desc" v-if="task.create_by_">
|
|
{{ task.create_by_.name }}/</span
|
|
>
|
|
<span class="desc" v-if="task.belong_belong_dept_">{{
|
|
task.belong_belong_dept_.name
|
|
}}</span>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">任务状态</span>
|
|
<span class="desc"> {{ task.state }}</span>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">完成度</span>
|
|
<span class="desc"> {{ task.complete_rate }}%</span>
|
|
</div>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<div style="margin-bottom: 6px">
|
|
<span class="term">备注</span>
|
|
<span class="desc"> {{ task.note }}</span>
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
<div style="margin-top: 4px">
|
|
<el-button
|
|
type="primary"
|
|
@click="init()"
|
|
v-if="task.state == '创建中'"
|
|
size="small"
|
|
>初始化任务</el-button
|
|
>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
|
|
<el-card style="margin-top: 2px">
|
|
<div slot="header" class="clearfix">
|
|
<span>执行详情</span>
|
|
</div>
|
|
<el-tabs v-model="activeName">
|
|
<el-tab-pane label="按清单" name="tab1" lazy>
|
|
<el-row :gutter="10">
|
|
<el-col :span="4">
|
|
<el-card
|
|
shadow="never"
|
|
style="height: 600px; overflow-y: auto; overflow-x: auto"
|
|
>
|
|
<div
|
|
v-for="item in contents"
|
|
v-bind:key="item.id"
|
|
class="litem"
|
|
@click="chose1(item)"
|
|
>
|
|
{{ item.name }}
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="20">
|
|
<el-card
|
|
shadow="never"
|
|
style="height: 600px; overflow-y: auto; overflow-x: auto"
|
|
>
|
|
<div style="margin-bottom: 4px">
|
|
当前选择的是
|
|
<span style="color: red">{{ now.name }}</span>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="recordList"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
max-height="600px"
|
|
>
|
|
<el-table-column label="序号" type="index" align="center" />
|
|
<el-table-column label="单位">
|
|
<template slot-scope="scope">{{
|
|
scope.row.belong_dept_.name
|
|
}}</template>
|
|
</el-table-column>
|
|
<el-table-column label="状态">
|
|
<template slot-scope="scope">{{
|
|
scope.row.state
|
|
}}</template>
|
|
</el-table-column>
|
|
<el-table-column label="上报情况">
|
|
<template slot-scope="scope"
|
|
>{{ scope.row.up_user }}/{{ scope.row.up_date }}</template
|
|
>
|
|
</el-table-column>
|
|
<el-table-column label="文件">
|
|
<template slot-scope="scope">
|
|
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="操作">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
v-if="scope.row.state == '待上报'"
|
|
type="primary"
|
|
:disabled="!checkPermission(['record_update'])"
|
|
size="small"
|
|
@click="handleUpdate(scope)"
|
|
>编辑</el-button
|
|
>
|
|
<el-button
|
|
v-if="scope.row.state == '已提交'"
|
|
type="primary"
|
|
:disabled="!checkPermission(['record_confirm'])"
|
|
size="small"
|
|
@click="handleConfirm(scope)"
|
|
>确认</el-button
|
|
>
|
|
<el-button
|
|
v-if="scope.state == '已提交'"
|
|
:disabled="!checkPermission(['record_reject'])"
|
|
type="danger"
|
|
size="small"
|
|
@click="handleReject(scope)"
|
|
>驳回</el-button
|
|
>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
</el-tab-pane>
|
|
<el-tab-pane label="按单位" name="tab2" lazy>
|
|
<el-row :gutter="10">
|
|
<el-col :span="4">
|
|
<el-card
|
|
shadow="never"
|
|
style="height: 600px; overflow-y: auto; overflow-x: auto"
|
|
>
|
|
<div
|
|
v-for="item in depts"
|
|
v-bind:key="item.id"
|
|
class="litem"
|
|
@click="chose2(item)"
|
|
>
|
|
{{ item.name }}
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="20">
|
|
<el-card
|
|
shadow="never"
|
|
style="height: 600px; overflow-y: auto; overflow-x: auto"
|
|
>
|
|
<div style="margin-bottom: 4px">
|
|
当前选择的是
|
|
<span style="color: red">{{ now.name }}</span>
|
|
</div>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="recordList"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
max-height="600px"
|
|
>
|
|
<el-table-column label="名称">
|
|
<template slot-scope="scope">{{
|
|
scope.row.state
|
|
}}</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-card>
|
|
|
|
<el-dialog
|
|
:visible.sync="dialogVisible"
|
|
title="初始化任务"
|
|
:close-on-click-modal="false"
|
|
>
|
|
<taskinit ref="taskinit" @handleChose="chooseComplete"></taskinit>
|
|
</el-dialog>
|
|
<el-drawer title="记录" :visible.sync="drawer" :with-header="false">
|
|
<recorddo ref="recorddo" :data="data" @handleDo="handleDo" v-if="drawer"></recorddo>
|
|
</el-drawer>
|
|
</div>
|
|
</template>
|
|
<style >
|
|
.term {
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
.desc {
|
|
color: rgba(0, 0, 0, 0.65);
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
.litem {
|
|
margin-bottom: 4px;
|
|
margin-left: 2px;
|
|
cursor: pointer;
|
|
color: #409eff;
|
|
}
|
|
</style>
|
|
<script>
|
|
import { gettask, inittask, gettaskcontents, gettaskdepts } from "@/api/task";
|
|
import { getRecordList } from "@/api/record";
|
|
import Pagination from "@/components/Pagination";
|
|
import taskinit from "@/views/supervision/taskinit";
|
|
import checkPermission from "@/utils/permission";
|
|
import recorddo from "@/views/supervision/recorddo";
|
|
export default {
|
|
components: { Pagination, taskinit, recorddo },
|
|
data() {
|
|
return {
|
|
task: { id: 0 },
|
|
dialogVisible: false,
|
|
activeName: "tab1",
|
|
contents: [],
|
|
depts: [],
|
|
listLoading: false,
|
|
recordList: [],
|
|
now: {},
|
|
drawer: false,
|
|
data: {},
|
|
};
|
|
},
|
|
created() {
|
|
this.task.id = this.$route.params.id;
|
|
this.gettask();
|
|
this.gettaskcontents();
|
|
this.gettaskdepts();
|
|
},
|
|
methods: {
|
|
checkPermission,
|
|
gettask() {
|
|
gettask(this.task.id).then((res) => {
|
|
this.task = res.data;
|
|
if (this.task.state == "创建中") {
|
|
this.dialogVisible = true;
|
|
}
|
|
});
|
|
},
|
|
init() {
|
|
this.dialogVisible = true;
|
|
},
|
|
chooseComplete(data) {
|
|
this.dialogVisible = false;
|
|
const rLoading = this.openLoading("正在初始化任务,请稍等...");
|
|
inittask(this.task.id, data).then((res) => {
|
|
rLoading.close();
|
|
this.$message.success("成功");
|
|
this.$router.go(0);
|
|
});
|
|
},
|
|
gettaskcontents() {
|
|
gettaskcontents(this.task.id).then((res) => {
|
|
this.contents = res.data;
|
|
this.listLoading = true;
|
|
getRecordList({
|
|
pageoff: true,
|
|
content: this.contents[0].id,
|
|
task: this.task.id,
|
|
}).then((res) => {
|
|
this.now = this.contents[0];
|
|
this.now.type = 'content';
|
|
this.listLoading = false;
|
|
this.recordList = res.data;
|
|
});
|
|
});
|
|
},
|
|
gettaskdepts() {
|
|
gettaskdepts(this.task.id).then((res) => {
|
|
this.depts = res.data;
|
|
});
|
|
},
|
|
getRecordList(){
|
|
this.listLoading = true;
|
|
var data = {
|
|
pageoff: true,
|
|
task: this.task.id,
|
|
}
|
|
if (this.now.type=='content'){
|
|
data.content = this.now.id
|
|
}else{
|
|
data.belong_dept = this.now.id
|
|
}
|
|
getRecordList(data).then((res) => {
|
|
this.listLoading = false;
|
|
this.recordList = res.data;
|
|
});
|
|
},
|
|
chose1(item) {
|
|
this.now = item;
|
|
this.now.type = 'content'
|
|
this.listLoading = true;
|
|
this.getRecordList();
|
|
},
|
|
chose2(item) {
|
|
this.now = item;
|
|
this.now.type = 'belong_dept'
|
|
this.getRecordList();
|
|
},
|
|
handleUpdate(scope) {
|
|
this.data = {
|
|
action: "update",
|
|
record: scope.row,
|
|
};
|
|
this.drawer = true;
|
|
},
|
|
handleReject(scope) {
|
|
this.data = {
|
|
action: "reject",
|
|
record: scope.row,
|
|
};
|
|
this.drawer = true;
|
|
},
|
|
handleConfirm(scope) {
|
|
|
|
},
|
|
handleDo(data){
|
|
this.drawer = false
|
|
this.getRecordList()
|
|
}
|
|
},
|
|
};
|
|
</script> |