304 lines
8.9 KiB
Python
304 lines
8.9 KiB
Python
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<div>
|
|
<el-input
|
|
v-model="listQuery.search"
|
|
placeholder="任务名"
|
|
style="width: 300px"
|
|
class="filter-item"
|
|
@keyup.enter.native="handleFilter"
|
|
/>
|
|
<el-button
|
|
class="filter-item"
|
|
type="primary"
|
|
icon="el-icon-search"
|
|
@click="handleFilter"
|
|
>搜索</el-button
|
|
>
|
|
<el-button
|
|
class="filter-item"
|
|
type="primary"
|
|
icon="el-icon-refresh-left"
|
|
@click="resetFilter"
|
|
>重置</el-button
|
|
>
|
|
</div>
|
|
<div style="margin-top: 10px">
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleCreate"
|
|
>创建巡查任务</el-button
|
|
>
|
|
</div>
|
|
</el-card>
|
|
<el-card style="margin-top: 10px">
|
|
<el-table
|
|
v-loading="listLoading"
|
|
:data="taskList.results"
|
|
border
|
|
fit
|
|
stripe
|
|
highlight-current-row
|
|
max-height="600"
|
|
>
|
|
<el-table-column type="index" width="50" />
|
|
<el-table-column label="检查模板">
|
|
<template slot-scope="scope">{{ scope.row.template_name }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="任务名">
|
|
<template slot-scope="scope">{{ scope.row.name }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="执行单位">
|
|
<template slot-scope="scope">{{ scope.row.dept_count }}</template>
|
|
</el-table-column>
|
|
<el-table-column label="子任务数">
|
|
<template slot-scope="scope">{{ scope.row.subtask_count }}</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="巡查开始日期">
|
|
<template slot-scope="scope">{{ scope.row.start_date }}</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="巡查结束日期">
|
|
<template slot-scope="scope">{{ scope.row.end_date }}</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
align="center"
|
|
label="操作"
|
|
width="220px"
|
|
>
|
|
<template slot-scope="scope">
|
|
<el-link
|
|
type="primary"
|
|
v-if="checkPermission(['task_view'])"
|
|
@click="handleDo(scope)"
|
|
>执行</el-link>
|
|
<el-link
|
|
v-if="checkPermission(['task_update'])"
|
|
@click="handleEdit(scope)"
|
|
>编辑</el-link>
|
|
<el-link
|
|
v-if="checkPermission(['task_close']) && scope.row.state!='已关闭'"
|
|
@click="handleClose(scope)"
|
|
>关闭</el-link>
|
|
<el-link
|
|
v-if="checkPermission(['task_delete'])"
|
|
type="danger"
|
|
@click="handleDelete(scope)"
|
|
>删除</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<pagination
|
|
v-show="taskList.count > 0"
|
|
:total="taskList.count"
|
|
:page.sync="listQuery.page"
|
|
:limit.sync="listQuery.page_size"
|
|
@pagination="getList"
|
|
/>
|
|
</el-card>
|
|
<el-dialog
|
|
:visible.sync="dialogVisible"
|
|
:title="dialogType === 'edit' ? '编辑任务' : '新增任务'"
|
|
>
|
|
<el-form
|
|
ref="Form"
|
|
:model="task"
|
|
label-width="80px"
|
|
label-position="right"
|
|
:rules="rule1"
|
|
>
|
|
<el-form-item label="检查模板" prop="template">
|
|
<el-cascader
|
|
v-model="task.template"
|
|
:options="templateOptions"
|
|
:props="{ emitPath: false }"
|
|
clearable
|
|
style="width: 100%"
|
|
></el-cascader>
|
|
</el-form-item>
|
|
<el-form-item label="任务名" prop="name">
|
|
<el-input v-model="task.name" placeholder="名称" />
|
|
</el-form-item>
|
|
<el-form-item label="开始日期" prop="start_date">
|
|
<el-date-picker
|
|
v-model="task.start_date"
|
|
type="date"
|
|
placeholder="选择日期"
|
|
value-format="yyyy-MM-dd"
|
|
style="width:100%"
|
|
>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="结束日期" prop="end_date">
|
|
<el-date-picker
|
|
v-model="task.end_date"
|
|
type="date"
|
|
placeholder="选择日期"
|
|
value-format="yyyy-MM-dd"
|
|
style="width:100%"
|
|
>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
<div style="text-align: right">
|
|
<el-button type="danger" @click="dialogVisible = false">取消</el-button>
|
|
<el-button type="primary" @click="confirm('Form')">确认</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { getinspecttasklist, createinspecttask, deleteinspecttask, updateinspecttask, closeinspecttask } from "@/api/inspectTask";
|
|
import {getInspecttemplateList} from "@/api/qualityinspect";
|
|
import checkPermission from "@/utils/permission";
|
|
import Pagination from "@/components/Pagination"; // secondary package based on el-pagination
|
|
|
|
import { genTree } from "@/utils";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
const defaulttask = {
|
|
template:null,
|
|
name: "",
|
|
start_date: null,
|
|
end_date: null,
|
|
};
|
|
export default {
|
|
components: { Pagination },
|
|
data() {
|
|
return {
|
|
task: defaulttask,
|
|
taskList: {
|
|
count: 0,
|
|
},
|
|
templateOptions:[],
|
|
listQuery: {
|
|
page: 1,
|
|
page_size: 20,
|
|
},
|
|
listLoading: true,
|
|
dialogVisible: false,
|
|
dialogType: "new",
|
|
rule1: {
|
|
template: [{ required: true, message: "请选择", trigger: "blur" }],
|
|
name: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
start_date: [{ required: true, message: "请选择", trigger: "blur" }],
|
|
end_date: [{ required: true, message: "请选择", trigger: "blur" }],
|
|
},
|
|
};
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
created() {
|
|
this.getList();
|
|
this.getTemplate();
|
|
},
|
|
methods: {
|
|
checkPermission,
|
|
getList() {
|
|
this.listLoading = true;
|
|
getinspecttasklist(this.listQuery).then((response) => {
|
|
if (response.data) {
|
|
this.taskList = response.data;
|
|
}
|
|
this.listLoading = false;
|
|
});
|
|
},
|
|
//选择模板
|
|
getTemplate() {
|
|
getInspecttemplateList({pageoff:true}).then((res) => {
|
|
this.templateOptions = genTree(res.data);
|
|
});
|
|
},
|
|
handleFilter() {
|
|
this.listQuery.page = 1;
|
|
this.getList();
|
|
},
|
|
resetFilter() {
|
|
this.listQuery = {
|
|
page: 1,
|
|
page_size: 20,
|
|
}
|
|
this.getList();
|
|
},
|
|
handleCreate() {
|
|
this.task = Object.assign({}, defaulttask);
|
|
this.dialogType = "new";
|
|
this.dialogVisible = true;
|
|
this.$nextTick(() => {
|
|
this.$refs["Form"].clearValidate();
|
|
});
|
|
},
|
|
handleDo(scope) {
|
|
this.$router.push({name: "InpectTaskdo", params: { inpecttask: scope.row.id }, })
|
|
},
|
|
handleEdit(scope) {
|
|
this.task = Object.assign({}, scope.row); // copy obj
|
|
this.dialogType = "edit";
|
|
this.dialogVisible = true;
|
|
this.$nextTick(() => {
|
|
this.$refs["Form"].clearValidate();
|
|
});
|
|
},
|
|
handleDelete(scope) {
|
|
this.$confirm("确认删除?该操作将删除该任务所有报送记录!", "警告", {
|
|
confirmButtonText: "确认",
|
|
cancelButtonText: "取消",
|
|
type: "error",
|
|
})
|
|
.then(async () => {
|
|
await deleteinspecttask(scope.row.id);
|
|
this.getList();
|
|
this.$message.success("成功");
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
});
|
|
},
|
|
handleClose(scope) {
|
|
this.$confirm("确认关闭该任务吗?", "警告", {
|
|
confirmButtonText: "确认",
|
|
cancelButtonText: "取消",
|
|
type: "warning",
|
|
})
|
|
.then(async () => {
|
|
await closeinspecttask(scope.row.id);
|
|
this.getList();
|
|
this.$message.success("成功");
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
});
|
|
},
|
|
async confirm(form) {
|
|
this.$refs[form].validate((valid) => {
|
|
if (valid) {
|
|
const isEdit = this.dialogType === "edit";
|
|
if (isEdit) {
|
|
updateinspecttask(this.task.id, this.task).then((res) => {
|
|
if (res.code >= 200) {
|
|
this.getList();
|
|
this.dialogVisible = false;
|
|
this.$message.success("成功");
|
|
}
|
|
});
|
|
} else {
|
|
createinspecttask(this.task).then((res) => {
|
|
if (res.code >= 200) {
|
|
this.getList();
|
|
this.dialogVisible = false;
|
|
// this.$router.push({name: "Taskdo", params: { id: res.data.id }, })
|
|
this.$message.success("成功");
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|