122 lines
3.4 KiB
Python
122 lines
3.4 KiB
Python
<template>
|
|
<div class="app-container">
|
|
|
|
<el-card>
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="subinspecttasklist"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
max-height="600"
|
|
>
|
|
<el-table-column type="index" width="50" />
|
|
<el-table-column align="center" label="批级任务">
|
|
<template slot-scope="scope">{{ scope.row.inspecttask_.name }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="开始巡查时间">
|
|
<template slot-scope="scope">{{ scope.row.inspecttask_.start_date }}</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column align="center" label="结束巡查时间">
|
|
<template slot-scope="scope">{{ scope.row.inspecttask_.end_date }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="任务名称">
|
|
<template slot-scope="scope">{{ scope.row.name }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="任务状态">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.state }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="巡查公司数">
|
|
<template slot-scope="scope">{{ scope.row.depts_count }}</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="组长">
|
|
<template slot-scope="scope">
|
|
<span v-for="item in scope.row.members" v-bind:key="item.member">
|
|
|
|
<el-tag v-if="item.type=='组长'" effect="plain">{{
|
|
item.member__name
|
|
}}</el-tag>
|
|
</span>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
align="center"
|
|
label="操作"
|
|
width="200px"
|
|
fixed="right"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-link @click="handleClick(scope)" type="primary">执行</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { getsubinspecttaskselflist} from "@/api/subinspecttask";
|
|
import checkPermission from "@/utils/permission";
|
|
import Pagination from "@/components/Pagination"; // secondary package based on el-pagination
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
import { getDictList, getDictTypeList } from "@/api/dict";
|
|
const defaultinspectTable = {
|
|
name: "",
|
|
require: "",
|
|
type: null,
|
|
sortnum: null,
|
|
};
|
|
export default {
|
|
components: { Pagination, Treeselect },
|
|
data() {
|
|
return {
|
|
subinspecttasklist:[],
|
|
listLoading: true,
|
|
dialogVisible: false,
|
|
|
|
};
|
|
},
|
|
computed: {},
|
|
watch: {
|
|
filterOrgText(val) {
|
|
this.$refs.tree.filter(val);
|
|
},
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
checkPermission,
|
|
|
|
|
|
|
|
getList() {
|
|
this.listLoading = true;
|
|
getsubinspecttaskselflist().then((response) => {
|
|
if (response.data) {
|
|
this.subinspecttasklist = response.data;
|
|
}
|
|
this.listLoading = false;
|
|
});
|
|
},
|
|
handleClick(scope){
|
|
this.$router.push({name: "myTaskdos", params: { id: scope.row.id,leaders:scope.row.members }, })
|
|
},
|
|
|
|
handleFilter() {
|
|
this.listQuery.page = 1;
|
|
this.getList();
|
|
},
|
|
|
|
},
|
|
};
|
|
</script>
|