index.vue 22.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
<template>
  <div class="app-container">
    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
      <el-form-item label="隐患唯一编码" prop="fHazardUniqueCode">
        <el-input
          v-model="queryParams.fHazardUniqueCode"
          placeholder="请输入隐患唯一编码"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="检查对象分类" prop="fObjType">
        <el-select v-model="queryParams.fObjType" placeholder="请选择检查对象分类" clearable size="small">
          <el-option
            v-for="dict in fObjTypeOptions"
            :key="dict.dictValue"
            :label="dict.dictLabel"
            :value="dict.dictValue"
          />
        </el-select>
      </el-form-item>
      <!--<el-form-item label="隐患分类分级编码" prop="fHazardTypeLevelId">
        <el-input
          v-model="queryParams.fHazardTypeLevelId"
          placeholder="请输入隐患分类分级编码"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>-->
      <el-form-item label="整改状态" prop="fRectificationStatus">
        <el-select v-model="queryParams.fRectificationStatus" placeholder="请选择整改状态" clearable size="small">
          <el-option
            v-for="dict in fRectificationStatusOptions"
            :key="dict.dictValue"
            :label="dict.dictLabel"
            :value="dict.dictValue"
          />
        </el-select>
      </el-form-item>
      <el-form-item label="是否执行" prop="fIsEnforcement">
        <el-select v-model="queryParams.fIsEnforcement" placeholder="请选择是否执行" clearable size="small">
          <el-option label="是" value="1" />
          <el-option label="否" value="0" />
        </el-select>
      </el-form-item>
      <el-form-item label="处罚措施" prop="fEnforcementType">
        <el-select v-model="queryParams.fEnforcementType" placeholder="请选择处罚措施" clearable size="small">
          <el-option
            v-for="dict in fEnforcementTypeOptions"
            :key="dict.dictValue"
            :label="dict.dictLabel"
            :value="dict.dictValue"
          />
        </el-select>
      </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"
        >新增</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="success"
          plain
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
        >修改</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="danger"
          plain
          icon="el-icon-delete"
          size="mini"
          :disabled="multiple"
          @click="handleDelete"
        >删除</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
		     :loading="exportLoading"
          @click="handleExport"
        >导出</el-button>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <el-table v-loading="loading" :data="refList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />
      <el-table-column label="隐患唯一编码" align="center" prop="fHazardUniqueCode" />
      <el-table-column label="自有编号" align="center" prop="fHazardOutUniqueCode">
        <template slot-scope="scope">
          <span v-if="scope.row.fHazardOutUniqueCode">{{ scope.row.fHazardOutUniqueCode }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
      <el-table-column label="检查记录编码" align="center" prop="fCheckCode" />
      <el-table-column label="检查对象分类" align="center" prop="fObjType" :formatter="fObjTypeFormat" />
      <el-table-column label="监督检查时间" align="center" prop="fCheckTime" />
      <el-table-column label="整改状态" align="center" prop="fRectificationStatus">
        <template slot-scope="scope">
          <span v-if="scope.row.fRectificationStatus">{{ fRectificationStatusFormat(scope.row) }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
      <el-table-column label="整改资金/万元" align="center" prop="fRectificationFund">
        <template slot-scope="scope">
          <span v-if="scope.row.fRectificationFund">{{ scope.row.fRectificationFund }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
耿迪迪's avatar
耿迪迪 committed
131
      <el-table-column label="整改完成日期" align="center" prop="fCompletionDate" width="120">
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
        <template slot-scope="scope">
          <span v-if="scope.row.fCompletionDate">{{ scope.row.fCompletionDate }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
      <el-table-column label="是否执行" align="center" prop="fIsEnforcement">
        <template slot-scope="scope">
          <span v-if="scope.row.fIsEnforcement == '1'"></span>
          <span v-else-if="scope.row.fIsEnforcement == '0'"></span>
          <span v-else>-</span>
        </template>
      </el-table-column>
      <el-table-column label="处罚措施" align="center" prop="fEnforcementType" :show-overflow-tooltip="true">
        <template slot-scope="scope">
          <span v-if="scope.row.fEnforcementType">{{ fEnforcementTypeFormat(scope.row) }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
耿迪迪's avatar
耿迪迪 committed
150
      <el-table-column label="执法日期" align="center" prop="fPenaltyDate" width="120">
151 152 153 154 155
        <template slot-scope="scope">
          <span v-if="scope.row.fPenaltyDate">{{ scope.row.fPenaltyDate }}</span>
          <span v-else>-</span>
        </template>
      </el-table-column>
156
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-document"
            @click="handleDetail(scope.row)"
          >详情</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
          >修改</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
          >删除</el-button>
176 177 178 179 180
          <el-button
            size="mini"
            type="text"
            @click="handleReport(scope.row)"
          >上传</el-button>
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
        </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="900px" append-to-body destroy-on-close :close-on-click-modal="false">
      <el-form ref="form" :model="form" :rules="rules" label-width="150px">
        <el-row class="el-row-table">
          <el-col :span="12">
            <el-form-item label="隐患唯一编码" prop="fHazardUniqueCode">
              <el-input v-model="form.fHazardUniqueCode" placeholder="请输入隐患唯一编码" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="自有编号" prop="fHazardOutUniqueCode">
              <el-input v-model="form.fHazardOutUniqueCode" placeholder="请输入自有编号" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="检查记录编码" prop="fCheckCode">
              <el-select
                v-model="form.fCheckCode"
                placeholder="请选择检查记录编码"
                style="width: 100%"
              >
                <el-option
耿迪迪's avatar
耿迪迪 committed
217 218 219 220
                  v-for="record in records"
                  :key="record.fInsRecInforId"
                  :label="record.fCheckTaskCode"
                  :value="record.fCheckTaskCode"
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
                ></el-option>
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="涉及供气企业编码" prop="fInvolveEnterpriseCode">
              <el-input v-model="form.fInvolveEnterpriseCode" placeholder="请输入涉及供气企业编码" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="检查对象分类" prop="fObjType">
              <el-select
                v-model="form.fObjType"
                placeholder="请选择检查对象分类"
                style="width: 100%"
              >
                <el-option
                  v-for="dict in fObjTypeOptions"
                  :key="dict.dictValue"
                  :label="dict.dictLabel"
                  :value="dict.dictValue"
                ></el-option>
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="对象编码" prop="fObjCode">
              <el-input v-model="form.fObjCode" placeholder="请输入对象编码" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="行政区县级行政区ID" prop="fObjBelongRegionId">
              <el-input v-model="form.fObjBelongRegionId" placeholder="请输入行政区县级行政区ID" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="监督检查时间" prop="fCheckTime">
              <el-date-picker
                style="width: 100%"
                v-model="form.fCheckTime"
耿迪迪's avatar
耿迪迪 committed
266 267
                type="datetime"
                value-format="yyyy-MM-dd HH:mm:ss"
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
                placeholder="选择监督检查时间">
              </el-date-picker>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="隐患分类分级编码" prop="fHazardTypeLevelId">
              <el-input v-model="form.fHazardTypeLevelId" placeholder="请输入隐患分类分级编码" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="整改状态" prop="fRectificationStatus">
              <el-select
                v-model="form.fRectificationStatus"
                placeholder="请选择整改状态"
                style="width: 100%"
              >
                <el-option
                  v-for="dict in fRectificationStatusOptions"
                  :key="dict.dictValue"
                  :label="dict.dictLabel"
                  :value="dict.dictValue"
                ></el-option>
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="整改资金/万元" prop="fRectificationFund">
              <el-input type="number" v-model="form.fRectificationFund" placeholder="请输入整改资金" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="整改完成日期" prop="fCompletionDate">
              <el-date-picker
                style="width: 100%"
                v-model="form.fCompletionDate"
耿迪迪's avatar
耿迪迪 committed
307 308
                type="datetime"
                value-format="yyyy-MM-dd HH:mm:ss"
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
                placeholder="选择整改完成日期">
              </el-date-picker>
            </el-form-item>
          </el-col>

          <el-col :span="24">
            <el-form-item label="整改或管控措施描述" prop="fControlMeasure">
              <el-input type="textarea" v-model="form.fControlMeasure" placeholder="请输入整改或管控措施描述" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="隐患整改前照片">
              <imageUpload v-model="form.fBeforePicture"/>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="隐患整改后照片">
              <imageUpload v-model="form.fAfterPicture"/>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="是否执行" prop="fIsEnforcement">
              <el-select
                v-model="form.fIsEnforcement"
                placeholder="请选择是否执行"
                style="width: 100%"
              >
                <el-option label="是" value="1" />
                <el-option label="否" value="0" />
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="处罚措施" prop="fEnforcementType">
              <el-select
                v-model="form.fEnforcementType"
                placeholder="请选择处罚措施"
                style="width: 100%"
              >
                <el-option
                  v-for="dict in fEnforcementTypeOptions"
                  :key="dict.dictValue"
                  :label="dict.dictLabel"
                  :value="dict.dictValue"
                ></el-option>
              </el-select>
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="处罚金额/万元" prop="fPenaltyAmount">
              <el-input type="number" v-model="form.fPenaltyAmount" placeholder="请输入处罚金额/万元" />
            </el-form-item>
          </el-col>

          <el-col :span="12">
            <el-form-item label="执法日期" prop="fPenaltyDate">
              <el-date-picker
                style="width: 100%"
                v-model="form.fPenaltyDate"
                type="date"
                value-format="yyyy-MM-dd"
                placeholder="选择执法日期">
              </el-date-picker>
            </el-form-item>
          </el-col>

          <el-col :span="24">
            <el-form-item label="其他执法情况说明" prop="fPenaltyDesc">
              <el-input type="textarea" v-model="form.fPenaltyDesc" placeholder="请输入其他执法情况说明" />
            </el-form-item>
          </el-col>


          <el-col :span="24">
            <el-form-item label="备注" prop="fRemark">
              <el-input type="textarea" v-model="form.fRemark" placeholder="请输入备注" />
            </el-form-item>
          </el-col>
        </el-row>
      </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>

    <!-- 详情 -->
    <DetailInfo ref="detail"/>
  </div>
</template>

<script>
406
import { listRef, getRef, delRef, addRef, updateRef, exportRef, reportHazRefInfo } from "@/api/supervision/rectification";
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
import ImageUpload from '@/components/ImageUpload';
import { recordList } from "@/api/supervision/record";
import DetailInfo from "./components/DetailInfo";
export default {
  name: "Ref",
  components: {
    ImageUpload,
    DetailInfo
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 隐患及整改,执法结果,执法结果表格数据
      refList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 检查对象分类,按分类代码表23 分类填写
      fObjTypeOptions: [],
      // 0-未整改,1-已整改,2-已管控,3-部分整改字典
      fRectificationStatusOptions: [],
      //处罚措施
      fEnforcementTypeOptions: [],
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        fHazardUniqueCode: null,
        fObjType: null,
        fHazardTypeLevelId: null,
        fRectificationStatus: null,
        fIsEnforcement: null,
        fEnforcementType: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        fHazardUniqueCode:[
          { required: true, message: "隐患唯一编码不能为空", trigger: "blur" }
        ],
        fCheckCode: [
          { required: true, message: "请选择检查记录编码", trigger: "change" }
        ],
        fObjType: [
耿迪迪's avatar
耿迪迪 committed
466
          { required: true, message: "请选择检查对象分类", trigger: "change" }
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
        ],
        fObjCode: [
          { required: true, message: "对象编码不能为空", trigger: "blur" }
        ],
        fObjBelongRegionId: [
          { required: true, message: "对象所在行政区,县级行政区ID不能为空", trigger: "blur" }
        ],
        fCheckTime: [
          { required: true, message: "监督检查时间不能为空", trigger: "blur" }
        ],
        fHazardTypeLevelId: [
          { required: true, message: "隐患分类分级编码不能为空", trigger: "blur" }
        ],
      },
      records: []
    };
  },
  created() {
    this.getList();
    this.getDicts("t_type_code").then(response => {
      this.fObjTypeOptions = response.data;
    });
    this.getDicts("t_rectification_status").then(response => {
      this.fRectificationStatusOptions = response.data;
    });
    this.getDicts("t_enforcement_type").then(response => {
      this.fEnforcementTypeOptions = response.data;
    });
  },
  methods: {
    /** 查询隐患及整改,执法结果,执法结果列表 */
    getList() {
      this.loading = true;
      listRef(this.queryParams).then(response => {
        this.refList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },
    // 检查对象分类
    fObjTypeFormat(row, column) {
      return this.selectDictLabel(this.fObjTypeOptions, row.fObjType);
    },
    // 整改状态
    fRectificationStatusFormat(row, column) {
      return this.selectDictLabel(this.fRectificationStatusOptions, row.fRectificationStatus);
    },
    // 处罚措施
    fEnforcementTypeFormat(row, column) {
      return this.selectDictLabel(this.fEnforcementTypeOptions, row.fEnforcementType);
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      this.form = {
        fInsHazRefId: null,
        fHazardUniqueCode: null,
        fHazardOutUniqueCode: null,
        fCheckCode: null,
        fInvolveEnterpriseCode: null,
        fObjType: null,
        fObjCode: null,
        fObjBelongRegionId: null,
        fCheckTime: null,
        fHazardTypeLevelId: null,
        fHazardDesc: null,
        fRectificationStatus: null,
        fRectificationFund: null,
        fCompletionDate: null,
        fControlMeasure: null,
        fBeforePicture: null,
        fAfterPicture: null,
        fIsEnforcement: null,
        fEnforcementType: null,
        fPenaltyAmount: null,
        fPenaltyDesc: null,
        fPenaltyDate: null,
        fRemark: null,
        fLastTime: 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.fInsHazRefId)
      this.single = selection.length!==1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.getRecordList();
      this.open = true;
      this.title = "添加隐患及整改,执法结果,执法结果";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const fInsHazRefId = row.fInsHazRefId || this.ids
      getRef(fInsHazRefId).then(response => {
        this.form = response.data;
        this.getRecordList();
        this.open = true;
        this.title = "修改隐患及整改,执法结果,执法结果";
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.form.fInsHazRefId != null) {
            updateRef(this.form).then(response => {
              this.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
          } else {
            addRef(this.form).then(response => {
              this.msgSuccess("新增成功");
              this.open = false;
              this.getList();
            });
          }
        }
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const fInsHazRefIds = row.fInsHazRefId || this.ids;
      this.$confirm('是否确认删除隐患及整改,执法结果,执法结果编号为"' + fInsHazRefIds + '"的数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(function() {
          return delRef(fInsHazRefIds);
        }).then(() => {
          this.getList();
          this.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      const queryParams = this.queryParams;
      this.$confirm('是否确认导出所有隐患及整改,执法结果,执法结果数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          this.exportLoading = true;
          return exportRef(queryParams);
        }).then(response => {
          this.download(response.msg);
          this.exportLoading = false;
        }).catch(() => {});
    },
    getRecordList(){
      recordList().then(res =>{
        if(res.code == 200 && res.data){
          this.records = res.data;
        }
      })
    },
    //详情
    handleDetail(row){
      this.$refs.detail.getDetailInfo(row.fInsHazRefId);
    },
647 648 649 650 651 652 653 654 655 656 657 658 659
    //上传
    handleReport(row) {
      this.$confirm('是否确认上传隐患及整改,执法结果,执法结果编号为"' + row.fInsHazRefId + '"的数据项?', "警告", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      }).then(function() {
        return reportHazRefInfo({fInsHazRefId : row.fInsHazRefI});
      }).then(() => {
        this.getList();
        this.msgSuccess("上传成功");
      }).catch(() => {});
    },
660 661 662
  }
};
</script>