123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="任务名称" prop="taskName">
- <el-input
- v-model="queryParams.taskName"
- placeholder="请输入任务名称"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="任务类型" prop="planId">
- <el-select v-model="form.taskType" placeholder="请选择任务类型" clearable size="small" style="width: 100%">
- <el-option
- v-for="dict in taskTypeOperation"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="任务起始时间" prop="startTime">
- <el-date-picker clearable
- v-model="queryParams.startTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择任务起始时间">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="任务截止时间" prop="endTime">
- <el-date-picker clearable
- v-model="queryParams.endTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择任务截止时间">
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['task:inspection:add']"
- >新增
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['task:inspection:edit']"
- >修改
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['task:inspection:remove']"
- >删除
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-check"
- size="mini"
- :disabled="multiple"
- @click="handleDivide"
- v-hasPermi="['task:inspection:edit']"
- >确认分配
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click=""
- v-hasPermi="['task:inspection:export']"
- >导出任务清单
- </el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="inspectionList" @selection-change="handleSelectionChange"
- :height="clientHeight" border :cell-style="tableCellStyle">
- <el-table-column type="selection" width="55" align="center"/>
- <el-table-column label="状态" align="center" prop="status" fixed="left" width="85" :formatter="divideFormat"/>
- <el-table-column label="是否超时" align="center" prop="timeOut" fixed="left" width="85"/>
- <el-table-column label="装置名称" align="center" prop="plantName" :show-overflow-tooltip="true" width="130"/>
- <el-table-column label="计划名称" align="center" prop="planName" :show-overflow-tooltip="true" width="280"/>
- <el-table-column label="任务名称" align="center" prop="taskName" :show-overflow-tooltip="true" width="130"/>
- <el-table-column label="任务编号" align="center" prop="taskCode" :show-overflow-tooltip="true" width="130"/>
- <el-table-column label="任务类型" align="center" prop="taskType" :show-overflow-tooltip="true" :formatter="taskTypeFormat"
- width="130"/>
- <el-table-column label="任务起始时间" align="center" prop="startTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="任务截止时间" align="center" prop="endTime" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.endTime, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="接收人" align="center" prop="recipient" :show-overflow-tooltip="true" width="130"/>
- <el-table-column label="检测点数" align="center" prop="taskNum" :show-overflow-tooltip="true" width="100"/>
- <el-table-column label="已检测点数" align="center" prop="taskDoneNum" :show-overflow-tooltip="true" width="100"/>
- <el-table-column label="未检测点数" align="center" prop="taskUndoneNum" :show-overflow-tooltip="true"
- width="100"/>
- <el-table-column label="完成率" align="center" width="250" prop="percentage">
- <template slot-scope="scope">
- <el-progress :text-inside="true" :stroke-width="14" :percentage="scope.row.percentage"
- status="success"></el-progress>
- </template>
- </el-table-column>
- <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true" width="130"/>
- <el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-s-order"
- @click=""
- >检测点清单
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['task:inspection:edit']"
- >修改
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['task:inspection:remove']"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改检测任务对话框 -->
- <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="120px">
- <el-form-item label="检测计划" prop="planId">
- <el-select v-model="form.planId" placeholder="请选择计划" clearable size="small" style="width: 100%">
- <el-option
- v-for="dict in planOperation"
- :key="dict.id"
- :label="dict.inspectionPlanName"
- :value="dict.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="任务名称" prop="taskName">
- <el-input v-model="form.taskName" placeholder="请输入任务名称"/>
- </el-form-item>
- <el-form-item label="任务编号" prop="taskCode">
- <el-input v-model="form.taskCode" placeholder="请输入任务编号"/>
- </el-form-item>
- <el-form-item label="任务类型" prop="planId">
- <el-select v-model="form.taskType" placeholder="请选择任务类型" clearable size="small" style="width: 100%">
- <el-option
- v-for="dict in taskTypeOperation"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="任务起始时间" prop="startTime">
- <el-date-picker clearable style="width: 100%"
- v-model="form.startTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择任务起始时间">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="任务截止时间" prop="endTime">
- <el-date-picker clearable style="width: 100%"
- v-model="form.endTime"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择任务截止时间">
- </el-date-picker>
- </el-form-item>
- <el-form-item label="接收人" prop="recipient">
- <el-input v-model="form.recipient" placeholder="请输入接收人"/>
- </el-form-item>
- <el-form-item label="备注" prop="remarks">
- <el-input v-model="form.remarks" placeholder="请输入备注"/>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- addInspection,
- delInspection,
- divideInspection,
- getInspection,
- listInspection,
- updateInspection
- } from "@/api/task/inspection";
- import {getAllPlan} from "@/api/task/plan";
- export default {
- name: "Inspection",
- data() {
- return {
- taskTypeOperation: [],
- planOperation: [],
- divideOperation: [],
- // 页面高度
- clientHeight: 300,
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- status: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: false,
- // 总条数
- total: 0,
- // 检测任务表格数据
- inspectionList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- plantId: null,
- planId: null,
- taskName: null,
- taskCode: null,
- taskType: null,
- startTime: null,
- endTime: null,
- recipient: null,
- taskNum: null,
- taskDoneNum: null,
- taskUndoneNum: null,
- status: null,
- remarks: null,
- deptId: null,
- createrCode: null,
- createdate: null,
- updaterCode: null,
- updatedate: null
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {}
- };
- },
- created() {
- this.getList();
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = (document.body.clientHeight - 80) * 0.8
- });
- this.getDicts("task_type").then(response => {
- this.taskTypeOperation = response.data;
- });
- this.getDicts("divide_status").then(response => {
- this.divideOperation = response.data;
- });
- getAllPlan().then(response => {
- this.planOperation = response.data;
- });
- },
- methods: {
- tableCellStyle({row, column, rowIndex, columnIndex}) {
- if (columnIndex === 1 && row.status == 0) {
- return "color:#ff0000;";
- }
- if (columnIndex === 1 && row.status == 1) {
- return "color:#00cc00;";
- }
- if (columnIndex === 2 && row.timeOut === '是') {
- return "color:#ff0000;";
- }
- if (columnIndex === 2 && row.timeOut === '否') {
- return "color:#00cc00;";
- }
- if (columnIndex === 7 && row.taskType == 2) {
- return "color:#ff0000;";
- }
- if (columnIndex === 7 && row.taskType == 1) {
- return "color:#00cc00;";
- }
- },
- taskTypeFormat(row, column) {
- return this.selectDictLabel(this.taskTypeOperation, row.taskType);
- },
- divideFormat(row, column) {
- return this.selectDictLabel(this.divideOperation, row.status);
- },
- /** 查询检测任务列表 */
- getList() {
- this.loading = true;
- listInspection(this.queryParams).then(response => {
- this.inspectionList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- plantId: null,
- planId: null,
- taskName: null,
- taskCode: null,
- taskType: null,
- startTime: null,
- endTime: null,
- recipient: null,
- taskNum: null,
- taskDoneNum: null,
- taskUndoneNum: null,
- status: "0",
- percentage: 0,
- remarks: null,
- deptId: null,
- delFlag: null,
- createrCode: null,
- createdate: null,
- updaterCode: null,
- updatedate: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.status = selection.map(item => item.status)
- this.single = selection.length !== 1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加检测任务";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getInspection(id).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改检测任务";
- });
- },
- handleDivide() {
- console.log(this.status)
- for (const statusKey in this.status) {
- if (statusKey === "1") {
- this.$alert('已分配的任务不可再次分配!', '注意!', {
- confirmButtonText: '确定',
- });
- return
- }
- }
- this.reset();
- const ids = this.ids
- this.$modal.confirm('是否确认分配?').then(function () {
- return divideInspection(ids);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("分配成功");
- }).catch(() => {
- this.$modal.msg("取消分配");
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id != null) {
- updateInspection(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addInspection(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal.confirm('是否确认删除数据项?').then(function () {
- return delInspection(ids);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('task/inspection/export', {
- ...this.queryParams
- }, `inspection_${new Date().getTime()}.xlsx`)
- }
- }
- };
- </script>
|