index.vue 17.4 KB
Newer Older
1 2
<template>
  <div class="app-container">
3
    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
4 5 6 7 8 9 10 11 12
      <el-form-item label="管道名称" prop="pipeName">
        <el-input
          v-model="queryParams.pipeName"
          placeholder="请输入管道名称"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
13 14 15 16 17 18 19 20 21
      <el-form-item label="管道编号" prop="pipeCode">
        <el-input
          v-model="queryParams.pipeCode"
          placeholder="请输入管道编号"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
22
      <el-form-item label="管道类型" prop="pipeType">
王晓倩's avatar
王晓倩 committed
23
        <el-select v-model="queryParams.pipeType" placeholder="请选择管道类型" filterable clearable size="small">
24 25 26 27 28 29
          <el-option
            v-for="dict in typeOptions"
            :key="dict.dictValue"
            :label="dict.dictLabel"
            :value="dict.dictValue"
          ></el-option>
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
        </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"
          v-hasPermi="['device:pipe:add']"
        >新增</el-button>
      </el-col>
49
      <!--<el-col :span="1.5">
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
        <el-button
          type="success"
          plain
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
          v-hasPermi="['device:pipe: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="['device:pipe:remove']"
        >删除</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
		  :loading="exportLoading"
          @click="handleExport"
          v-hasPermi="['device:pipe:export']"
        >导出</el-button>
81
      </el-col>-->
82 83 84
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

85
    <el-table v-loading="loading" :data="pipeList" @selection-change="handleSelectionChange">
86 87
      <el-table-column label="管道名称" align="center" prop="pipeName" width="280px"/>
      <el-table-column label="管道编号" align="center" prop="pipeCode" width="240px"/>
88
      <el-table-column label="管道类型" align="center" prop="pipeType" >
89
        <template slot-scope="scope">
90 91
          <span v-if="scope.row.pipeType == 1">地埋管线</span>
          <span v-if="scope.row.pipeType == 2">地表管线</span>
92 93
        </template>
      </el-table-column>
94
      <el-table-column label="管道压力" align="center" prop="pipePressure" >
95
        <template slot-scope="scope">
96 97 98 99
          <span v-if="scope.row.pipePressure == 1">低压</span>
          <span v-if="scope.row.pipePressure == 2">中压</span>
          <span v-if="scope.row.pipePressure == 3">次高压</span>
          <span v-if="scope.row.pipePressure == 4">高压</span>
100 101
        </template>
      </el-table-column>
102
      <el-table-column label="管道长度" align="center" prop="pipeLength" />
103
      <el-table-column label="所在地址" align="center" prop="pipeAddr" width="280px"/>
104
      <el-table-column label="安装日期" align="center" prop="installationTime" width="180" />
105 106 107 108 109 110
      <el-table-column label="最后巡检日期" align="center" prop="inspectionTime" width="180" >
        <template slot-scope="scope">
          <span v-if="scope.row.inspectionTime != null">{{ scope.row.inspectionTime }}</span>
          <span v-if="scope.row.inspectionTime == null">-</span>
        </template>
      </el-table-column>
111 112 113 114 115 116 117 118 119
      <el-table-column label="操作" align="center" 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="['device:pipe:edit']"
          >修改</el-button>
120 121 122 123 124
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="showDetail(scope.row)"
125
            v-hasPermi="['device:pipe:query']"
126
          >详情</el-button>
127 128 129 130 131 132 133 134 135 136 137 138 139 140
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['device:pipe:remove']"
          >删除</el-button>
        </template>
      </el-table-column>
    </el-table>

    <pagination
      v-show="total>0"
      :total="total"
141 142
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
143 144 145 146
      @pagination="getList"
    />

    <!-- 添加或修改管道信息对话框 -->
147
    <el-dialog destroy-on-close :title="title" :visible.sync="open" append-to-body @close="cancel">
148
      <el-form ref="form" :model="form" :rules="rules" label-width="135px">
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
        <el-col :span="23">
          <el-form-item label="管道名称" prop="pipeName">
            <el-input v-model="form.pipeName" placeholder="请输入管道名称" />
          </el-form-item>
        </el-col>
        <el-col :span="11">
          <el-form-item label="管道编号" prop="pipeCode">
            <el-input v-model="form.pipeCode" placeholder="请输入管道编号" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item label="管道长度" prop="pipeLength">
            <el-input type="number" min="0" v-model="form.pipeLength" placeholder="请输入管道长度">
              <i
                slot="suffix"
                style="color: #000; font-style: normal; margin-right: 10px"
165
              ></i>
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 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 217 218
            </el-input>
          </el-form-item>
        </el-col>
        <el-col :span="23">
          <el-form-item label="管道所在地址" prop="pipeAddr">
            <el-input v-model="form.pipeAddr" placeholder="请输入管道所在地址" />
          </el-form-item>
        </el-col>
        <el-col :span="23">
          <el-form-item label="管道坐标" prop="coordinates">
            <el-col :span="18">
              <el-input type="textarea" v-model="form.coordinates" placeholder="请输入管道坐标" />
            </el-col>
            <el-col :span="5" style="margin-left: 10px">
              <el-button type="primary" plain @click="MapdialogFun">选择管道坐标</el-button>
            </el-col>
          </el-form-item>
        </el-col>
        <el-col>
          <el-form-item label="管道类型" prop="pipeType">
            <el-radio-group v-model="form.pipeType">
              <el-radio label="1">地埋管线</el-radio>
              <el-radio label="2">地表管线</el-radio>
            </el-radio-group>
          </el-form-item>
        </el-col>
        <el-col>
          <el-form-item label="管道压力" prop="pipePressure">
            <!-- select -->
            <el-radio-group v-model="form.pipePressure">
              <!-- 1低压,2中压,3次高压,4高压 -->
              <el-radio label="1">低压</el-radio>
              <el-radio label="2">中压</el-radio>
              <el-radio label="3">次高压</el-radio>
              <el-radio label="4">高压</el-radio>
            </el-radio-group>
          </el-form-item>
        </el-col>
        <el-col>
          <el-form-item label="管道图片上传" prop="iconUrl">
            <MyFileUpload
              listType="picture-card"
              @resFun="getFileInfo"
              @remove="listRemove"
              :fileArr="fileList"
            />
            <el-input v-show="false" disabled v-model="form.iconUrl"></el-input>
          </el-form-item>
        </el-col>
        <el-col>
          <el-form-item label="安装日期" prop="installationTime">
            <el-col :span="11">
              <el-date-picker clearable size="small"
219
                style="width: 100%"
220 221 222 223 224 225 226 227 228 229 230 231 232
                v-model="form.installationTime"
                type="date"
                value-format="yyyy-MM-dd"
                placeholder="请选择安装日期">
              </el-date-picker>
            </el-col>
          </el-form-item>
        </el-col>
        <el-col :span="23">
          <el-form-item label="备注信息" prop="remarks">
            <el-input v-model="form.remarks" type="textarea" placeholder="请输入备注信息" />
          </el-form-item>
        </el-col>
233 234 235 236 237 238
      </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>
239 240 241 242 243 244 245 246

    <Mapdialog
      v-if="loadmap"
      :dialogTableVisible="dialogTableVisible"
      @dialogcancelFun="dialogcancelFun"
      @confirmFun="confirmFun($event)"
      :str="str"
    ></Mapdialog>
247 248 249 250
  </div>
</template>

<script>
251 252 253
  import { listPipe, getPipe, addPipe, updatePipe, exportPipe } from "@/api/device/pipe";
  import MyFileUpload from '@/components/MyFileUpload';
  import Mapdialog from "@/components/mapDialog/checkPipeLineLocation.vue";
254

255 256 257 258 259
  export default {
    name: "Pipe",
    components: {
      MyFileUpload,
      Mapdialog
260
    },
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    data() {
      return {
        // 遮罩层
        loading: true,
        // 导出遮罩层
        exportLoading: false,
        // 选中数组
        ids: [],
        // 非单个禁用
        single: true,
        // 非多个禁用
        multiple: true,
        // 显示搜索条件
        showSearch: true,
        // 总条数
        total: 0,
        // 管道信息表格数据
        pipeList: [],
        // 弹出层标题
        title: "",
        // 是否显示弹出层
        open: false,
        // 上传文件列表
        fileList: [],
        // 地图
        loadmap: false,
        dialogTableVisible: false,
王晓倩's avatar
王晓倩 committed
288 289
        // 管道类型字典
        typeOptions: [],
290 291 292 293 294
        str: "",
        // 管道压力数据字典
        pressureOptions: [],
        // 查询参数
        queryParams: {
295 296
          pageNum: 1,
          pageSize: 10,
297 298 299 300 301 302 303 304 305 306 307 308 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
          enterpriseId: null,
          pipeName: null,
          pipeAddr: null,
          coordinates: null,
          pipeLength: null,
          pipeType: null,
          pipePressure: null,
          iconUrl: null,
          installationTime: null,
          inspectionTime: null,
          remarks: null
        },
        // 表单参数
        form: {
          pipeName: "",
          pipeType: "1",
          pipePressure: "1",
          iconUrl: "",
          coordinates: ""
        },
        // 表单校验
        rules: {
          pipeName: [
            { required: true, message: "请输入管道名称", trigger: "blur" },
          ],
          pipeCode: [
            { required: true, message: "请输入管道编号", trigger: "blur" },
          ],
          pipeLength: [
            { required: true, message: "请输入管道长度", trigger: "blur" },
          ],
          pipeAddr: [
            { required: true, message: "请输入管道所在地址", trigger: "blur" },
          ],
          pipeType: [
            { required: true, message: "请选择管道类型", trigger: "blur" },
          ],
          pipePressure: [
            { required: true, message: "请选择管道压力", trigger: "blur" },
          ],
          coordinates: [
            { required: true, message: "请选择管道坐标", trigger: "blur" },
          ],
340
          iconUrl: [
341 342 343 344
            { required: true, message: "请上传图片", trigger: "change" },
          ],
          installationTime: [
            { required: true, message: "请选择日期",  trigger: "change" },
345
          ],
346
        }
347 348
      };
    },
349
    created() {
350
      this.getList();
351 352 353 354 355
      this.getDicts("t_pipe_type").then(response => {
        this.typeOptions = response.data;
      });
      this.getDicts("t_pipe_pressure").then(response => {
        this.pressureOptions = response.data;
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 406 407 408 409 410 411 412
    methods: {
      /** 查询管道信息列表 */
      getList() {
        this.loading = true;
        listPipe(this.queryParams).then(response => {
          this.pipeList = response.rows;
          this.total = response.total;
          this.loading = false;
        });
      },
      getFileInfo(res){
        this.form.iconUrl = res.url;
      },
      listRemove(e) {
        this.form.iconUrl = "";
        this.fileList = [];
      },
      confirmFun(res) {
        //确认选择坐标
        this.form.coordinates = res;
      },
      MapdialogFun() {
        this.loadmap = true;
        this.dialogTableVisible = true;
      },
      dialogcancelFun() {
        this.loadmap = false;
        this.dialogTableVisible = false;
      },
      // 取消按钮
      cancel() {
        this.open = false;
        this.reset();
        this.fileList = [];
      },
      // 表单重置
      reset() {
        this.form = {
          pipeId: null,
          enterpriseId: null,
          pipeName: null,
          pipeAddr: null,
          coordinates: null,
          pipeLength: null,
          pipeType: null,
          pipePressure: null,
          iconUrl: null,
          installationTime: null,
          inspectionTime: null,
          remarks: null
        };
        this.resetForm("form");
      },
      /** 搜索按钮操作 */
      handleQuery() {
413
        this.queryParams.pageNum = 1;
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
        this.getList();
      },
      /** 重置按钮操作 */
      resetQuery() {
        this.resetForm("queryForm");
        this.handleQuery();
      },
      // 多选框选中数据
      handleSelectionChange(selection) {
        this.ids = selection.map(item => item.pipeId)
        this.single = selection.length!==1
        this.multiple = !selection.length
      },
      /** 新增按钮操作 */
      handleAdd() {
        this.reset();
430 431 432 433 434 435 436
        this.form={
          pipeName: "",
            pipeType: "1",
            pipePressure: "1",
            iconUrl: "",
            coordinates: ""
        };
437 438 439 440 441 442 443 444 445 446 447 448
        this.open = true;
        this.title = "新增管道信息";
      },
      /** 修改按钮操作 */
      handleUpdate(row) {
        this.reset();
        const pipeId = row.pipeId || this.ids
        getPipe(pipeId).then(response => {
          this.form = response.data;
          if (this.form.iconUrl) {
            this.fileList.push({
              url: this.form.iconUrl,
449 450
            });
          }
451 452 453
          if(this.form.coordinates){
            this.str = this.form.coordinates;
          }
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
          this.open = true;
          this.title = "修改管道信息";
        });
      },
      /** 提交按钮 */
      submitForm() {
        this.$refs["form"].validate(valid => {
          if (valid) {
            if (this.form.pipeId != null) {
              updatePipe(this.form).then(response => {
                this.msgSuccess("修改成功");
                this.open = false;
                this.getList();
              });
            } else {
              addPipe(this.form).then(response => {
                this.msgSuccess("新增成功");
                this.open = false;
                this.getList();
              });
            }
          }
        });
      },
      /** 删除按钮操作 */
      handleDelete(row) {
        row.isDel = "1";
        var devices = " ";
yaqizhang's avatar
yaqizhang committed
482 483 484 485 486 487 488 489 490
        var tip = '';
        if (row.deviceInfoList != null){
          for(var i = 0; i < row.deviceInfoList.length; i++){
            var obj = row.deviceInfoList[i];
            devices = devices + obj.deviceName + " ";
          }
          tip = '请确认是否删除管道名称为"' + row.pipeName + '"的数据项,该管道下包含的设备(' + devices + ')将一并被删除', "警告"
        }else{
          tip ='请确认是否删除管道名称为"' + row.pipeName + '"的数据项';
491
        }
yaqizhang's avatar
yaqizhang committed
492 493 494 495 496 497 498 499 500 501 502
        this.$confirm(tip , {
            confirmButtonText: "确定",
            cancelButtonText: "取消",
            type: "warning"
          }).then(function () {
            return updatePipe(row);
          }).then(() => {
            this.getList();
            this.msgSuccess("已删除");
          }).catch(() => {
          });
503 504 505 506 507
      },
      /** 导出按钮操作 */
      handleExport() {
        const queryParams = this.queryParams;
        this.$confirm('是否确认导出所有管道信息数据项?', "警告", {
508 509 510 511 512 513 514 515 516 517
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          this.exportLoading = true;
          return exportPipe(queryParams);
        }).then(response => {
          this.download(response.msg);
          this.exportLoading = false;
        }).catch(() => {});
518 519 520 521 522 523 524 525 526 527 528 529
      },
      /** 详细信息跳转 */
      showDetail(row) {
        this.$router.push({
          path: '/device/pipeDetail',
          query: {
            pipeId: row.pipeId
          }
        })
      },
    }
  };
530
</script>
531 532 533 534 535 536 537 538 539 540 541 542 543 544

<style>
  .notice {
    background: white;
    position: fixed;
    top: 102px;
    right: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 80%;
    border: solid 1px;
  }
</style>