|
@@ -0,0 +1,805 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item label="区域" prop="area">
|
|
|
|
+ <el-select v-model="form.area" placeholder="请选择区域" clearable style="width: 100%">
|
|
|
|
+ <el-option value="装置主管廊区" laabel="装置主管廊区"></el-option>
|
|
|
|
+ <el-option value="构一" laabel="构一"></el-option>
|
|
|
|
+ <el-option value="构二" laabel="构二"></el-option>
|
|
|
|
+ <el-option value="构三" laabel="构三"></el-option>
|
|
|
|
+ <el-option value="构四" laabel="构四"></el-option>
|
|
|
|
+ <el-option value="构五" laabel="构五"></el-option>
|
|
|
|
+ <el-option value="构六" laabel="构六"></el-option>
|
|
|
|
+ <el-option value="构七" laabel="构七"></el-option>
|
|
|
|
+ <el-option value="构八" laabel="构八"></el-option>
|
|
|
|
+ <el-option value="8200#空调制冷区" laabel="8200#空调制冷区"></el-option>
|
|
|
|
+ <el-option value="8500#污水处理区" laabel="8500#污水处理区"></el-option>
|
|
|
|
+ <el-option value="8900#火炬区" laabel="8900#火炬区"></el-option>
|
|
|
|
+ <el-option value="9000#罐区" laabel="9000#罐区"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="提出日期" prop="identifiedDateStr">
|
|
|
|
+ <el-date-picker clearable size="small" style="width: 200px"
|
|
|
|
+ v-model="queryParams.identifiedDateStr"
|
|
|
|
+ type="year"
|
|
|
|
+ @change="handleQuery"
|
|
|
|
+ value-format="yyyy"
|
|
|
|
+ placeholder="选择提出日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="当前状态" prop="currentStates">
|
|
|
|
+ <el-select v-model="queryParams.currentStates" @change="handleQuery" placeholder="请选择当前状态" clearable>
|
|
|
|
+ <el-option value="已完成" laabel="已完成"></el-option>
|
|
|
|
+ <el-option value="未完成" laabel="未完成"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="识别出的问题" prop="issueIdentified" label-width="120">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.issueIdentified"
|
|
|
|
+ placeholder="请输入识别出的问题"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="负责部门" prop="responsibleUnit">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.responsibleUnit"
|
|
|
|
+ placeholder="请输入负责部门"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="cyan" 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"
|
|
|
|
+ icon="el-icon-plus"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleAdd"
|
|
|
|
+ v-hasPermi="['issue:issuelist:add']"
|
|
|
|
+ >新增
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="success"
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ size="mini"
|
|
|
|
+ :disabled="single"
|
|
|
|
+ @click="handleUpdate"
|
|
|
|
+ v-hasPermi="['issue:issuelist:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="danger"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ size="mini"
|
|
|
|
+ :disabled="multiple"
|
|
|
|
+ @click="handleDelete"
|
|
|
|
+ v-hasPermi="['issue:issuelist:remove']"
|
|
|
|
+ >删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="info"
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleImport"
|
|
|
|
+ v-hasPermi="['issue:issuelist:edit']"
|
|
|
|
+ >导入
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="warning"
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleExport"
|
|
|
|
+ v-hasPermi="['issue:issuelist:export']"
|
|
|
|
+ >导出
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
+ </el-row>
|
|
|
|
+
|
|
|
|
+ <el-table v-loading="loading" :data="issuelistList" @selection-change="handleSelectionChange" :height="clientHeight" :row-class-name="tableRowClassName"
|
|
|
|
+ border >
|
|
|
|
+ <el-table-column type="selection" width="55" align="center"/>
|
|
|
|
+ <el-table-column type="index" label="序号" width="55" align="center" :index="indexMethod"/>
|
|
|
|
+ <el-table-column label="区域" align="center" prop="area" :show-overflow-tooltip="true" width="150"/>
|
|
|
|
+ <el-table-column label="提出日期" align="center" prop="identifiedDate" width="100">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ parseTime(scope.row.identifiedDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="问题来源" align="center" prop="issueSource" :show-overflow-tooltip="true" width="150"/>
|
|
|
|
+ <el-table-column label="识别出的问题" align="center" prop="issueIdentified" :show-overflow-tooltip="true"
|
|
|
|
+ width="150"/>
|
|
|
|
+ <el-table-column label="要采取的措施" align="center" prop="actionsTaken" :show-overflow-tooltip="true"
|
|
|
|
+ width="150"/>
|
|
|
|
+ <el-table-column label="问题类别" align="center" prop="issueClass" :show-overflow-tooltip="true" width="150"/>
|
|
|
|
+ <el-table-column label="负责部门" align="center" prop="responsibleUnit" :show-overflow-tooltip="true"
|
|
|
|
+ width="150"/>
|
|
|
|
+ <el-table-column label="负责人员" align="center" prop="responsiblePerson" :show-overflow-tooltip="true"
|
|
|
|
+ width="150"/>
|
|
|
|
+ <el-table-column label="当前状态" align="center" prop="currentStates" :show-overflow-tooltip="true" width="150"/>
|
|
|
|
+ <el-table-column label="预计完成日期" align="center" prop="expectedDate" :show-overflow-tooltip="true" width="100">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ parseTime(scope.row.expectedDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="实际完成日期" align="center" prop="completionDate" :show-overflow-tooltip="true" width="100">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ parseTime(scope.row.completionDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true" width="150"/>
|
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" width="160" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
+ v-hasPermi="['issue:issuelist:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="['issue:issuelist:remove']"
|
|
|
|
+ >删除
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-document"
|
|
|
|
+ @click="handleDoc(scope.row)"
|
|
|
|
+ v-hasPermi="['issue:issuelist:edit']"
|
|
|
|
+ >{{ $t('附件') }}</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="60%" append-to-body :close-on-click-modal="false">
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="180px">
|
|
|
|
+ <el-form-item label="区域" prop="area">
|
|
|
|
+ <el-select v-model="form.area" placeholder="请选择区域" clearable style="width: 100%">
|
|
|
|
+ <el-option value="装置主管廊区" laabel="装置主管廊区"></el-option>
|
|
|
|
+ <el-option value="构一" laabel="构一"></el-option>
|
|
|
|
+ <el-option value="构二" laabel="构二"></el-option>
|
|
|
|
+ <el-option value="构三" laabel="构三"></el-option>
|
|
|
|
+ <el-option value="构四" laabel="构四"></el-option>
|
|
|
|
+ <el-option value="构五" laabel="构五"></el-option>
|
|
|
|
+ <el-option value="构六" laabel="构六"></el-option>
|
|
|
|
+ <el-option value="构七" laabel="构七"></el-option>
|
|
|
|
+ <el-option value="构八" laabel="构八"></el-option>
|
|
|
|
+ <el-option value="8200#空调制冷区" laabel="8200#空调制冷区"></el-option>
|
|
|
|
+ <el-option value="8500#污水处理区" laabel="8500#污水处理区"></el-option>
|
|
|
|
+ <el-option value="8900#火炬区" laabel="8900#火炬区"></el-option>
|
|
|
|
+ <el-option value="9000#罐区" laabel="9000#罐区"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="提出日期" prop="identifiedDate">
|
|
|
|
+ <el-date-picker clearable size="small" style="width: 100%"
|
|
|
|
+ v-model="form.identifiedDate"
|
|
|
|
+ type="date"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ placeholder="选择提出日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="问题来源" prop="issueSource">
|
|
|
|
+ <el-select v-model="form.issueSource" placeholder="请选择问题来源" clearable style="width: 100%">
|
|
|
|
+ <el-option value="日常巡检" laabel="日常巡检"></el-option>
|
|
|
|
+ <el-option value="政府检查" laabel="政府检查"></el-option>
|
|
|
|
+ <el-option value="审计检查" laabel="审计检查"></el-option>
|
|
|
|
+ <el-option value="运行故障" laabel="运行故障"></el-option>
|
|
|
|
+ <el-option value="其他" laabel="其他"></el-option>
|
|
|
|
+ </el-select></el-form-item>
|
|
|
|
+ <el-form-item label="识别出的问题" prop="issueIdentified">
|
|
|
|
+ <el-input type="textarea" v-model="form.issueIdentified" placeholder="请输入识别出的问题"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="要采取的措施" prop="actionsTaken">
|
|
|
|
+ <el-input type="textarea" v-model="form.actionsTaken" placeholder="请输入要采取的措施"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="问题类别" prop="issueClass">
|
|
|
|
+ <el-select v-model="form.issueClass" placeholder="请选择问题来源" clearable style="width: 100%">
|
|
|
|
+ <el-option value="设备" laabel="设备"></el-option>
|
|
|
|
+ <el-option value="电仪" laabel="电仪"></el-option>
|
|
|
|
+ <el-option value="安全措施" laabel="安全措施"></el-option>
|
|
|
|
+ <el-option value="其他" laabel="其他"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="负责部门 " prop="responsibleUnit">
|
|
|
|
+ <el-input v-model="form.responsibleUnit" placeholder="请输入负责人员"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="负责人员" prop="responsiblePerson">
|
|
|
|
+ <el-input v-model="form.responsiblePerson" placeholder="请输入负责人员"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="当前状态" prop="currentStates">
|
|
|
|
+ <el-select v-model="form.currentStates" placeholder="请选择当前状态" clearable style="width: 100%">
|
|
|
|
+ <el-option value="已完成" laabel="已完成"></el-option>
|
|
|
|
+ <el-option value="未完成" laabel="未完成"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="预计完成日期" prop="expectedDate">
|
|
|
|
+ <el-date-picker clearable size="small" style="width: 100%"
|
|
|
|
+ v-model="form.expectedDate"
|
|
|
|
+ type="date"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ placeholder="选择预计完成日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="实际完成日期" prop="completionDate">
|
|
|
|
+ <el-date-picker clearable size="small" style="width: 100%"
|
|
|
|
+ v-model="form.completionDate"
|
|
|
|
+ type="date"
|
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
|
+ placeholder="选择实际完成日期">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </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>
|
|
|
|
+ <!-- 报告附件对话框 -->
|
|
|
|
+ <el-dialog :close-on-click-modal="false" v-dialogDrag :title="doc.title" :visible.sync="doc.open" width="700px"
|
|
|
|
+ append-to-body>
|
|
|
|
+ <el-upload
|
|
|
|
+ ref="doc"
|
|
|
|
+ :limit="50"
|
|
|
|
+ :headers="doc.headers"
|
|
|
|
+ :action="doc.url + '?pType=' + doc.pType + '&pId=' + doc.pId"
|
|
|
|
+ :disabled="doc.isUploading"
|
|
|
|
+ :on-progress="handleFileDocProgress"
|
|
|
|
+ :on-success="handleFileDocSuccess"
|
|
|
|
+ :auto-upload="true"
|
|
|
|
+ drag
|
|
|
|
+ >
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
+ <div class="el-upload__text">
|
|
|
|
+ {{ $t('将文件拖到此处,或') }}
|
|
|
|
+ <em>{{ $t('点击上传') }}</em>
|
|
|
|
+ </div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <el-table :data="doc.commonfileList" border>
|
|
|
|
+ <el-table-column :label="$t('文件名')" align="center" prop="fileName" :show-overflow-tooltip="true">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <a class="link-type" @click="handleDownload(scope.row)">
|
|
|
|
+ <span>{{ scope.row.fileName }}</span>
|
|
|
|
+ </a>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column :label="$t('大小(Kb)')" align="center" prop="fileSize" :show-overflow-tooltip="true"
|
|
|
|
+ width="80"/>
|
|
|
|
+ <el-table-column :label="$t('上传人')" align="center" prop="creator" :show-overflow-tooltip="true" width="120"/>
|
|
|
|
+ <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button
|
|
|
|
+ v-if="scope.row.fileName.endsWith('pdf')"
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-view"
|
|
|
|
+ @click="handleSee(scope.row)"
|
|
|
|
+ >{{ $t('预览') }}
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
+ @click="handleDownload(scope.row)"
|
|
|
|
+ >{{ $t('下载') }}
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDeleteDoc(scope.row)"
|
|
|
|
+ >{{ $t('删除') }}
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <el-dialog :close-on-click-modal="false" v-dialogDrag :title="pdf.title" :visible.sync="pdf.open" width="1300px"
|
|
|
|
+ append-to-body>
|
|
|
|
+ <div style="margin-top: -60px;float: right;margin-right: 40px;">
|
|
|
|
+ <el-button size="mini" type="text" @click="openPdf">{{ $t('新页面打开PDF') }}</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ <div style="margin-top: -30px">
|
|
|
|
+ <iframe :src="pdf.pdfUrl" frameborder="0" width="100%" height="700px"></iframe>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <!-- <el-button type="primary" @click="submitFileForm">{{ $t('确 定') }}</el-button>-->
|
|
|
|
+ <el-button @click="doc.open = false">{{ $t('返 回') }}</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ <!-- 用户导入对话框 -->
|
|
|
|
+ <el-dialog :close-on-click-modal="false" v-dialogDrag :title="upload.title" :visible.sync="upload.open"
|
|
|
|
+ width="400px" append-to-body>
|
|
|
|
+ <el-upload
|
|
|
|
+ ref="upload"
|
|
|
|
+ :limit="1"
|
|
|
|
+ accept=".xlsx, .xls"
|
|
|
|
+ :headers="upload.headers"
|
|
|
|
+ :action="upload.url"
|
|
|
|
+ :disabled="upload.isUploading"
|
|
|
|
+ :on-progress="handleFileUploadProgress"
|
|
|
|
+ :on-success="handleFileSuccess"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ drag
|
|
|
|
+ >
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
+ <div class="el-upload__text">
|
|
|
|
+ {{ $t('将文件拖到此处,或') }}
|
|
|
|
+ <em>{{ $t('点击上传') }}</em>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="el-upload__tip" slot="tip">
|
|
|
|
+ <!--<el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据-->
|
|
|
|
+ <el-link type="info" style="font-size:12px" @click="importTemplate">{{ $t('下载模板') }}</el-link>
|
|
|
|
+ </div>
|
|
|
|
+ <form ref="downloadFileForm" :action="upload.downloadAction" target="FORMSUBMIT">
|
|
|
|
+ <input name="type" :value="upload.type" hidden/>
|
|
|
|
+ </form>
|
|
|
|
+ <div class="el-upload__tip" style="color:red" slot="tip">{{ $t('提示:仅允许导入“xls”或“xlsx”格式文件!') }}</div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="submitFileForm">{{ $t('确 定') }}</el-button>
|
|
|
|
+ <el-button @click="upload.open = false">{{ $t('取 消') }}</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import {
|
|
|
|
+ addIssuelist,
|
|
|
|
+ delIssuelist,
|
|
|
|
+ exportIssuelist,
|
|
|
|
+ getIssuelist,
|
|
|
|
+ listIssuelist,
|
|
|
|
+ updateIssuelist
|
|
|
|
+} from "@/api/issue/issuelist";
|
|
|
|
+import {treeselect} from "@/api/system/dept";
|
|
|
|
+import {getToken} from "@/utils/auth";
|
|
|
|
+import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
+import {allFileList, delCommonfile} from "@/api/common/commonfile";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "IssuelistEBSM",
|
|
|
|
+ components: {Treeselect},
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: false,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // 装置问题滚动清单表格数据
|
|
|
|
+ issuelistList: [],
|
|
|
|
+ // 弹出层标题
|
|
|
|
+ title: "",
|
|
|
|
+ // 部门树选项
|
|
|
|
+ deptOptions: undefined,
|
|
|
|
+ clientHeight: 300,
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
+ open: false,
|
|
|
|
+ // 用户导入参数
|
|
|
|
+ upload: {
|
|
|
|
+ downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
|
|
|
|
+ //下载模板类型
|
|
|
|
+ type: "issuelist",
|
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
|
+ open: false,
|
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否禁用上传
|
|
|
|
+ isUploading: false,
|
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
|
+ updateSupport: 0,
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
|
+ // 上传的地址
|
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/issue/issuelist/importData"
|
|
|
|
+ },
|
|
|
|
+ // 报告附件参数
|
|
|
|
+ doc: {
|
|
|
|
+ file: "",
|
|
|
|
+ // 是否显示弹出层(报告附件)
|
|
|
|
+ open: false,
|
|
|
|
+ // 弹出层标题(报告附件)
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否禁用上传
|
|
|
|
+ isUploading: false,
|
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
|
+ updateSupport: 0,
|
|
|
|
+ // 报告附件上传位置编号
|
|
|
|
+ ids: 0,
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
|
+ // 上传的地址
|
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
|
|
|
|
+ commonfileList: null,
|
|
|
|
+ queryParams: {
|
|
|
|
+ pId: null,
|
|
|
|
+ pType: 'issuelist'
|
|
|
|
+ },
|
|
|
|
+ pType: 'issuelist',
|
|
|
|
+ pId: null
|
|
|
|
+ },
|
|
|
|
+ pdf : {
|
|
|
|
+ title: '',
|
|
|
|
+ pdfUrl: '',
|
|
|
|
+ numPages: null,
|
|
|
|
+ open: false,
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageTotalNum: 1,
|
|
|
|
+ loadedRatio: 0,
|
|
|
|
+ },
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 20,
|
|
|
|
+ plant: 'EBSM',
|
|
|
|
+ area: null,
|
|
|
|
+ identifiedDate: null,
|
|
|
|
+ identifiedDateStr: new Date().getFullYear().toString(),
|
|
|
|
+ issueSource: null,
|
|
|
|
+ issueIdentified: null,
|
|
|
|
+ actionsTaken: null,
|
|
|
|
+ issueClass: null,
|
|
|
|
+ responsiblePerson: null,
|
|
|
|
+ responsibleUnit: null,
|
|
|
|
+ currentStates: null,
|
|
|
|
+ completionDate: null,
|
|
|
|
+ additionalDeadline: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ deptId: null,
|
|
|
|
+ remarks: null
|
|
|
|
+ },
|
|
|
|
+ // 表单参数
|
|
|
|
+ form: {},
|
|
|
|
+ // 表单校验
|
|
|
|
+ rules: {
|
|
|
|
+ area: [
|
|
|
|
+ {required: true, message: "请选择区域", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ identifiedDate: [
|
|
|
|
+ {required: true, message: "请选择提出时间", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ issueSource: [
|
|
|
|
+ {required: true, message: "请选择问题来源", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ issueIdentified: [
|
|
|
|
+ {required: true, message: "识别出的问题不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ actionsTaken: [
|
|
|
|
+ {required: true, message: "要采取的措施不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ issueClass: [
|
|
|
|
+ {required: true, message: "请选择问题类别", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ responsiblePerson: [
|
|
|
|
+ {required: true, message: "负责人员不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ responsibleUnit: [
|
|
|
|
+ {required: true, message: "负责部门不能为空", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ currentStates: [
|
|
|
|
+ {required: true, message: "请选择当前状态", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ expectedDate: [
|
|
|
|
+ {required: true, message: "请选择预计完成日期", trigger: "blur"}
|
|
|
|
+ ],
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ // 根据名称筛选部门树
|
|
|
|
+ deptName(val) {
|
|
|
|
+ this.$refs.tree.filter(val);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ //设置表格高度对应屏幕高度
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.clientHeight = document.body.clientHeight - 330
|
|
|
|
+ })
|
|
|
|
+ this.getList();
|
|
|
|
+ this.getTreeselect();
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ /** 查询装置问题滚动清单列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listIssuelist(this.queryParams).then(response => {
|
|
|
|
+ this.issuelistList = response.rows;
|
|
|
|
+ this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 查询部门下拉树结构 */
|
|
|
|
+ getTreeselect() {
|
|
|
|
+ treeselect().then(response => {
|
|
|
|
+ this.deptOptions = response.data;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 取消按钮
|
|
|
|
+ cancel() {
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.reset();
|
|
|
|
+ },
|
|
|
|
+ // 表单重置
|
|
|
|
+ reset() {
|
|
|
|
+ this.form = {
|
|
|
|
+ id: null,
|
|
|
|
+ plant: 'EBSM',
|
|
|
|
+ area: null,
|
|
|
|
+ identifiedDate: null,
|
|
|
|
+ issueSource: null,
|
|
|
|
+ issueIdentified: null,
|
|
|
|
+ actionsTaken: null,
|
|
|
|
+ issueClass: null,
|
|
|
|
+ responsiblePerson: null,
|
|
|
|
+ responsibleUnit: null,
|
|
|
|
+ currentStates: null,
|
|
|
|
+ completionDate: null,
|
|
|
|
+ expectedDate: null,
|
|
|
|
+ additionalDeadline: null,
|
|
|
|
+ delFlag: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ deptId: null,
|
|
|
|
+ remarks: 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.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
|
|
|
|
+ getIssuelist(id).then(response => {
|
|
|
|
+ this.form = response.data;
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "修改装置问题滚动清单";
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
+ submitForm() {
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ if (this.form.id != null) {
|
|
|
|
+ updateIssuelist(this.form).then(response => {
|
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ addIssuelist(this.form).then(response => {
|
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDelete(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$confirm('是否确认删除?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function () {
|
|
|
|
+ return delIssuelist(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ const queryParams = this.queryParams;
|
|
|
|
+ this.$confirm('是否确认导出所有装置问题滚动清单数据项?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function () {
|
|
|
|
+ return exportIssuelist(queryParams);
|
|
|
|
+ }).then(response => {
|
|
|
|
+ this.download(response.msg);
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 导入按钮操作 */
|
|
|
|
+ handleImport() {
|
|
|
|
+ this.upload.title = "用户导入";
|
|
|
|
+ this.upload.open = true;
|
|
|
|
+ },
|
|
|
|
+ /** 下载模板操作 */
|
|
|
|
+ importTemplate() {
|
|
|
|
+ this.$refs['downloadFileForm'].submit()
|
|
|
|
+ },
|
|
|
|
+ // 文件上传中处理
|
|
|
|
+ handleFileUploadProgress(event, file, fileList) {
|
|
|
|
+ this.upload.isUploading = true;
|
|
|
|
+ },
|
|
|
|
+ // 文件上传成功处理
|
|
|
|
+ handleFileSuccess(response, file, fileList) {
|
|
|
|
+ this.upload.open = false;
|
|
|
|
+ this.upload.isUploading = false;
|
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
|
+ if (response.data[0] != null) {
|
|
|
|
+ this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据') + "," + this.$t('第') + response.data + this.$t('行数据出现错误导入失败') + "。", this.$t('导入结果'), {dangerouslyUseHTMLString: true});
|
|
|
|
+ } else {
|
|
|
|
+ this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据'), this.$t('导入结果'), {dangerouslyUseHTMLString: true});
|
|
|
|
+ }
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ // 提交上传文件
|
|
|
|
+ submitFileForm() {
|
|
|
|
+ this.$refs.upload.submit();
|
|
|
|
+ },
|
|
|
|
+ /** 报告附件按钮操作 */
|
|
|
|
+ handleDoc(row) {
|
|
|
|
+ this.doc.id = row.id;
|
|
|
|
+ this.doc.title = this.$t('附件');
|
|
|
|
+ this.doc.open = true;
|
|
|
|
+ this.doc.queryParams.pId = row.id
|
|
|
|
+ this.doc.pId = row.id
|
|
|
|
+ this.getFileList()
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$refs.doc.clearFiles()
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ getFileList() {
|
|
|
|
+ allFileList(this.doc.queryParams).then(response => {
|
|
|
|
+ this.doc.commonfileList = response;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ //附件上传中处理
|
|
|
|
+ handleFileDocProgress(event, file, fileList) {
|
|
|
|
+ this.doc.file = file;
|
|
|
|
+ this.doc.isUploading = true;
|
|
|
|
+ },
|
|
|
|
+ //附件上传成功处理
|
|
|
|
+ handleFileDocSuccess(response, file, fileList) {
|
|
|
|
+ this.doc.isUploading = false;
|
|
|
|
+ this.$alert(response.msg, this.$t('导入结果'), {dangerouslyUseHTMLString: true});
|
|
|
|
+ this.getFileList()
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDeleteDoc(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
|
|
|
|
+ confirmButtonText: this.$t('确定'),
|
|
|
|
+ cancelButtonText: this.$t('取消'),
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function () {
|
|
|
|
+ return delCommonfile(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getFileList()
|
|
|
|
+ this.msgSuccess(this.$t('删除成功'));
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 文件下载处理
|
|
|
|
+ handleDownload(row) {
|
|
|
|
+ var name = row.fileName;
|
|
|
|
+ var url = row.fileUrl;
|
|
|
|
+ var suffix = url.substring(url.lastIndexOf("."), url.length);
|
|
|
|
+ const a = document.createElement('a')
|
|
|
|
+ a.setAttribute('download', name)
|
|
|
|
+ a.setAttribute('target', '_blank')
|
|
|
|
+ a.setAttribute('href', process.env.VUE_APP_BASE_API + url)
|
|
|
|
+ a.click()
|
|
|
|
+ },
|
|
|
|
+ openPdf() {
|
|
|
|
+ window.open(this.pdf.pdfUrl);//path是文件的全路径地址
|
|
|
|
+ },
|
|
|
|
+ handleSee(row) {
|
|
|
|
+ this.pdf.open = true
|
|
|
|
+ this.pdf.title = row.fileName
|
|
|
|
+ this.pdf.pdfUrl = process.env.VUE_APP_BASE_API + '/pdf/web/viewer.html?file=' + process.env.VUE_APP_BASE_API + row.fileUrl
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 计算日期差(天数)
|
|
|
|
+ getDateDiff(date) {
|
|
|
|
+ const today = new Date();
|
|
|
|
+ today.setHours(0, 0, 0, 0);
|
|
|
|
+
|
|
|
|
+ const targetDate = new Date(date);
|
|
|
|
+ targetDate.setHours(0, 0, 0, 0);
|
|
|
|
+
|
|
|
|
+ const diffTime = targetDate.getTime() - today.getTime();
|
|
|
|
+ return Math.ceil(diffTime / (1000 * 60 * 60 * 24));
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 设置行样式
|
|
|
|
+ tableRowClassName({ row,rowIndex }) {
|
|
|
|
+ if (!row.expectedDate||row.currentStates!=='未完成'){
|
|
|
|
+ return '';
|
|
|
|
+ }
|
|
|
|
+ const diffDays = this.getDateDiff(row.expectedDate);
|
|
|
|
+ console.log(diffDays)
|
|
|
|
+ if (diffDays <= 0) {
|
|
|
|
+ return 'danger-row';
|
|
|
|
+ } else if (diffDays < 15) {
|
|
|
|
+ return 'warning-row';
|
|
|
|
+ }
|
|
|
|
+ return '';
|
|
|
|
+ },
|
|
|
|
+ //翻页后继续计算序列值
|
|
|
|
+ indexMethod(index) {
|
|
|
|
+ return (this.queryParams.pageNum-1)*this.queryParams.pageSize+index+1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style>
|
|
|
|
+
|
|
|
|
+.el-table .warning-row {
|
|
|
|
+ background: #ffff00 ;
|
|
|
|
+}
|
|
|
|
+.el-table .danger-row {
|
|
|
|
+ background: #ff0000 ;
|
|
|
|
+}
|
|
|
|
+</style>
|