|
@@ -0,0 +1,616 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item label="区域序号" prop="regionOrder">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.regionOrder"
|
|
|
|
+ placeholder="请输入区域序号"
|
|
|
|
+ clearable
|
|
|
|
+ size="small"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="位置" prop="position">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.position"
|
|
|
|
+ placeholder="请输入位置"
|
|
|
|
+ clearable
|
|
|
|
+ size="small"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="责任人" prop="owner">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.owner"
|
|
|
|
+ placeholder="请输入责任人"
|
|
|
|
+ clearable
|
|
|
|
+ size="small"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="年" prop="year">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.year"
|
|
|
|
+ placeholder="请输入年"
|
|
|
|
+ clearable
|
|
|
|
+ size="small"
|
|
|
|
+ @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="['production:inspection: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="['production:inspection: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="['production:inspection:remove']"
|
|
|
|
+ >删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="info"
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleImport"
|
|
|
|
+ v-hasPermi="['production:inspection:edit']"
|
|
|
|
+ >导入
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
+ <el-button
|
|
|
|
+ type="warning"
|
|
|
|
+ icon="el-icon-download"
|
|
|
|
+ size="mini"
|
|
|
|
+ @click="handleExport"
|
|
|
|
+ v-hasPermi="['production: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>
|
|
|
|
+ <el-table-column type="selection" width="55" align="center"/>
|
|
|
|
+ <el-table-column label="区域序号" align="center" prop="regionOrder" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="位置" align="center" prop="position" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="责任人" align="center" prop="owner" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="年" align="center" prop="year" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="一月" align="center" prop="jan" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="二月" align="center" prop="feb" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="三月" align="center" prop="mar" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="四月" align="center" prop="apr" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="五月" align="center" prop="may" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="六月" align="center" prop="jun" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="七月" align="center" prop="jul" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="八月" align="center" prop="aug" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="九月" align="center" prop="sep" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="十月" align="center" prop="oct" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="十一月" align="center" prop="nov" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="十二月" align="center" prop="dec" :show-overflow-tooltip="true"/>
|
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true"/>
|
|
|
|
+ <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-edit"
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
+ v-hasPermi="['production:inspection:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="['production: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="500px" append-to-body>
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
+ <el-form-item label="区域序号" prop="regionOrder">
|
|
|
|
+ <el-input v-model="form.regionOrder" placeholder="请输入区域序号"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="位置" prop="position">
|
|
|
|
+ <el-input v-model="form.position" placeholder="请输入位置"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="责任人" prop="owner">
|
|
|
|
+ <el-input v-model="form.owner" placeholder="请输入责任人"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="年" prop="year">
|
|
|
|
+ <el-date-picker
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ v-model="year"
|
|
|
|
+ type="year"
|
|
|
|
+ placeholder="请选择年">
|
|
|
|
+ </el-date-picker>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="一月" prop="jan">
|
|
|
|
+ <el-select v-model="form.jan" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="二月" prop="feb">
|
|
|
|
+ <el-select v-model="form.feb" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="三月" prop="mar">
|
|
|
|
+ <el-select v-model="form.mar" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="四月" prop="apr">
|
|
|
|
+ <el-select v-model="form.apr" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="五月" prop="may">
|
|
|
|
+ <el-select v-model="form.may" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="六月" prop="jun">
|
|
|
|
+ <el-select v-model="form.jun" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="七月" prop="jul">
|
|
|
|
+ <el-select v-model="form.jul" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="八月" prop="aug">
|
|
|
|
+ <el-select v-model="form.aug" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="九月" prop="sep">
|
|
|
|
+ <el-select v-model="form.sep" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="十月" prop="oct">
|
|
|
|
+ <el-select v-model="form.oct" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="十一月" prop="nov">
|
|
|
|
+ <el-select v-model="form.nov" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="十二月" prop="dec">
|
|
|
|
+ <el-select v-model="form.dec" filterable placeholder="请选择评分"
|
|
|
|
+ style="width: 100%">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in scoreList"
|
|
|
|
+ :key="dict.dictValue"
|
|
|
|
+ :label="dict.dictLabel"
|
|
|
|
+ :value="dict.dictValue">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </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 :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 + '?updateSupport=' + upload.updateSupport"
|
|
|
|
+ :disabled="upload.isUploading"
|
|
|
|
+ :on-progress="handleFileUploadProgress"
|
|
|
|
+ :on-success="handleFileSuccess"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ drag
|
|
|
|
+ >
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
+ <div class="el-upload__text">
|
|
|
|
+ 将文件拖到此处,或
|
|
|
|
+ <em>点击上传</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">下载模板</el-link>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
|
+ <el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
|
+ <el-button @click="upload.open = false">取 消</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import {
|
|
|
|
+ listInspection,
|
|
|
|
+ getInspection,
|
|
|
|
+ delInspection,
|
|
|
|
+ addInspection,
|
|
|
|
+ updateInspection,
|
|
|
|
+ exportInspection,
|
|
|
|
+ importTemplate
|
|
|
|
+} from "@/api/production/inspection";
|
|
|
|
+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";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "Inspection",
|
|
|
|
+ components: {Treeselect},
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ year: new Date(),
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: false,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // 区域月度检查表格数据
|
|
|
|
+ inspectionList: [],
|
|
|
|
+ // 弹出层标题
|
|
|
|
+ title: "",
|
|
|
|
+ // 部门树选项
|
|
|
|
+ deptOptions: undefined,
|
|
|
|
+ clientHeight: 300,
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
+ open: false,
|
|
|
|
+ // 用户导入参数
|
|
|
|
+ upload: {
|
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
|
+ open: false,
|
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否禁用上传
|
|
|
|
+ isUploading: false,
|
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
|
+ updateSupport: 0,
|
|
|
|
+ // 设置上传的请求头部
|
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
|
+ // 上传的地址
|
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/production/inspection/importData"
|
|
|
|
+ },
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 20,
|
|
|
|
+ regionOrder: null,
|
|
|
|
+ position: null,
|
|
|
|
+ owner: null,
|
|
|
|
+ year: null,
|
|
|
|
+ jan: null,
|
|
|
|
+ feb: null,
|
|
|
|
+ mar: null,
|
|
|
|
+ apr: null,
|
|
|
|
+ may: null,
|
|
|
|
+ jun: null,
|
|
|
|
+ jul: null,
|
|
|
|
+ aug: null,
|
|
|
|
+ sep: null,
|
|
|
|
+ oct: null,
|
|
|
|
+ nov: null,
|
|
|
|
+ dec: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ remarks: null,
|
|
|
|
+ deptId: null
|
|
|
|
+ },
|
|
|
|
+ scoreList: [],
|
|
|
|
+ // 表单参数
|
|
|
|
+ form: {},
|
|
|
|
+ // 表单校验
|
|
|
|
+ rules: {
|
|
|
|
+ deptId: [
|
|
|
|
+ {required: true, message: "部门编号不能为空", trigger: "blur"}
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ // 根据名称筛选部门树
|
|
|
|
+ deptName(val) {
|
|
|
|
+ this.$refs.tree.filter(val);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ //设置表格高度对应屏幕高度
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.clientHeight = document.body.clientHeight - 250
|
|
|
|
+ })
|
|
|
|
+ this.getList();
|
|
|
|
+ this.getTreeselect();
|
|
|
|
+ this.getDicts('5s_score').then(res => {
|
|
|
|
+ this.scoreList = res.data
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ /** 查询区域月度检查列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listInspection(this.queryParams).then(response => {
|
|
|
|
+ this.inspectionList = 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,
|
|
|
|
+ regionOrder: null,
|
|
|
|
+ position: null,
|
|
|
|
+ owner: null,
|
|
|
|
+ year: null,
|
|
|
|
+ jan: null,
|
|
|
|
+ feb: null,
|
|
|
|
+ mar: null,
|
|
|
|
+ apr: null,
|
|
|
|
+ may: null,
|
|
|
|
+ jun: null,
|
|
|
|
+ jul: null,
|
|
|
|
+ aug: null,
|
|
|
|
+ sep: null,
|
|
|
|
+ oct: null,
|
|
|
|
+ nov: null,
|
|
|
|
+ dec: null,
|
|
|
|
+ delFlag: null,
|
|
|
|
+ createrCode: null,
|
|
|
|
+ createdate: null,
|
|
|
|
+ updaterCode: null,
|
|
|
|
+ updatedate: null,
|
|
|
|
+ remarks: null,
|
|
|
|
+ deptId: 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
|
|
|
|
+ getInspection(id).then(response => {
|
|
|
|
+ this.form = response.data;
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "修改区域月度检查";
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 提交按钮 */
|
|
|
|
+ submitForm() {
|
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ this.form.year = this.year.getFullYear();
|
|
|
|
+ if (this.form.id != null) {
|
|
|
|
+ updateInspection(this.form).then(response => {
|
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ addInspection(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 delInspection(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ const queryParams = this.queryParams;
|
|
|
|
+ this.$confirm('是否确认导出所有区域月度检查数据项?', "警告", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ }).then(function () {
|
|
|
|
+ return exportInspection(queryParams);
|
|
|
|
+ }).then(response => {
|
|
|
|
+ this.download(response.msg);
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 导入按钮操作 */
|
|
|
|
+ handleImport() {
|
|
|
|
+ this.upload.title = "用户导入";
|
|
|
|
+ this.upload.open = true;
|
|
|
|
+ },
|
|
|
|
+ /** 下载模板操作 */
|
|
|
|
+ importTemplate() {
|
|
|
|
+ importTemplate().then(response => {
|
|
|
|
+ this.download(response.msg);
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 文件上传中处理
|
|
|
|
+ handleFileUploadProgress(event, file, fileList) {
|
|
|
|
+ this.upload.isUploading = true;
|
|
|
|
+ },
|
|
|
|
+ // 文件上传成功处理
|
|
|
|
+ handleFileSuccess(response, file, fileList) {
|
|
|
|
+ this.upload.open = false;
|
|
|
|
+ this.upload.isUploading = false;
|
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
|
+ this.$alert(response.msg, "导入结果", {dangerouslyUseHTMLString: true});
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ // 提交上传文件
|
|
|
|
+ submitFileForm() {
|
|
|
|
+ this.$refs.upload.submit();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|