index.vue 30.5 KB
Newer Older
wuqinghua's avatar
wuqinghua committed
1 2
<template>
  <div class="app-container">
wuqinghua's avatar
wuqinghua committed
3 4
    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="108px">
      <el-form-item label="场站名称" prop="siteStationName" label-width="70px">
wuqinghua's avatar
wuqinghua committed
5 6 7 8 9 10 11 12
        <el-input
          v-model="queryParams.siteStationName"
          placeholder="请输入场站名称"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
13
      <el-form-item label="权属单位名称" label-width="100px" prop="beyondEnterpriseName">
wuqinghua's avatar
wuqinghua committed
14 15 16 17 18 19 20 21
        <el-input
          v-model="queryParams.beyondEnterpriseName"
          placeholder="请输入权属单位名称"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
wuqinghua's avatar
wuqinghua committed
22 23 24 25 26 27 28 29 30
<!--      <el-form-item label="备注" label-width="40px" prop="remarks">-->
<!--        <el-input-->
<!--          v-model="queryParams.remarks"-->
<!--          placeholder="请输入备注"-->
<!--          clearable-->
<!--          size="small"-->
<!--          @keyup.enter.native="handleQuery"-->
<!--        />-->
<!--      </el-form-item>-->
wuqinghua's avatar
wuqinghua committed
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
      <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="['supervise:station:add']"
        >新增</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="success"
          plain
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
          v-hasPermi="['supervise:station: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="['supervise:station: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="['supervise:station:export']"
        >导出</el-button>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <el-table v-loading="loading" :data="stationList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />
      <el-table-column label="场站类型" align="center" prop="siteStationType" />
      <el-table-column label="场站名称" align="center" prop="siteStationName" />
      <el-table-column label="建设年代" align="center" prop="buildDate" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.buildDate, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="建设单位" align="center" prop="buildUnit" />
      <el-table-column label="权属单位" align="center" prop="beyondEnterpriseId" />
      <el-table-column label="权属单位名称" align="center" prop="beyondEnterpriseName" />
      <el-table-column label="经度" align="center" prop="longitude" />
      <el-table-column label="纬度" align="center" prop="latitude" />
      <el-table-column label="备注" align="center" prop="remarks" />
      <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="['supervise:station:edit']"
          >修改</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['supervise:station: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"
    />

    <!-- 添加或修改场站信息对话框 -->
wuqinghua's avatar
wuqinghua committed
128 129
    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="90px">
wuqinghua's avatar
wuqinghua committed
130

131 132
        <el-row>
          <el-col :span="11">
wuqinghua's avatar
wuqinghua committed
133 134 135 136 137 138 139 140 141
        <el-form-item label="场站类型" prop="siteStationType">
          <el-select v-model="form.siteStationType" placeholder="请选择场站类型">
            <el-option label="加气站" value="1" />
            <el-option label="门站" value="2" />
            <el-option label="调压站" value="3" />
            <el-option label="储备站" value="4" />
            <el-option label="气化站" value="5" />
          </el-select>
        </el-form-item>
142
          </el-col>
wuqinghua's avatar
wuqinghua committed
143

wuqinghua's avatar
wuqinghua committed
144 145 146 147 148 149 150 151
            <el-col :span="11">
              <el-form-item label="权属单位" prop="beyondEnterpriseName">
                <el-select v-model="form.beyondEnterpriseId"  placeholder="请在下拉框中选择权属单位" maxlength="255" :disabled="false" clearable>
                  <el-option v-for="item in test" :key="item.enterpriseId" :label="item.enterpriseName" :value="item.enterpriseId">
                  </el-option>
                </el-select>
              </el-form-item>
            </el-col>
152 153 154 155
        </el-row>

        <el-row>
          <el-col :span="11">
wuqinghua's avatar
wuqinghua committed
156 157 158 159 160 161 162 163
        <el-form-item label="建设年代" prop="buildDate">
          <el-date-picker clearable size="small"
            v-model="form.buildDate"
            type="date"
            value-format="yyyy-MM-dd"
            placeholder="选择建设年代">
          </el-date-picker>
        </el-form-item>
164 165 166
          </el-col>

          <el-col :span="11">
wuqinghua's avatar
wuqinghua committed
167 168 169
        <el-form-item label="建设单位" prop="buildUnit">
          <el-input v-model="form.buildUnit" placeholder="请输入建设单位" />
        </el-form-item>
170 171
          </el-col>
        </el-row>
wuqinghua's avatar
wuqinghua committed
172 173 174 175 176 177 178
<!--        <el-form-item label="权属单位" prop="beyondEnterpriseId">-->
<!--          <el-input v-model="form.beyondEnterpriseId" placeholder="请输入权属单位" />-->
<!--        </el-form-item>-->
<!--        <el-form-item label="权属单位名称" prop="beyondEnterpriseName">-->
<!--          <el-input v-model="form.beyondEnterpriseName" placeholder="请输入权属单位名称" />-->
<!--        </el-form-item>-->

wuqinghua's avatar
wuqinghua committed
179 180 181 182 183 184 185 186 187 188 189 190 191 192
<!--        <el-row>-->
<!--          <el-col :span="11">-->
<!--        <el-form-item label="经度" prop="longitude">-->
<!--          <el-input v-model="form.longitude" placeholder="请输入经度" />-->
<!--        </el-form-item>-->
<!--          </el-col>-->

<!--          <el-col :span="11">-->
<!--        <el-form-item label="纬度" prop="latitude">-->
<!--          <el-input  v-model="form.latitude" placeholder="请输入纬度" />-->
<!--        </el-form-item>-->
<!--          </el-col>-->
<!--        </el-row>-->

193
        <el-row>
wuqinghua's avatar
wuqinghua committed
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 219 220
          <el-col :span="23">
            <el-form-item label="经纬度坐标" prop="longitude">
              <el-col :span="9">
                <el-input v-model="form.longitude" placeholder="请输入经度" />
              </el-col>
              <el-col :span="9" style="margin-left: 10px">
                <el-input v-model="form.latitude" placeholder="请输入纬度"/>
              </el-col>
              <el-col :span="3" style="margin-left: 30px">
                <el-button type="primary" plain @click="MapdialogFun">选择经纬度</el-button>
              </el-col>
            </el-form-item>
          </el-col>
        </el-row>

        <el-row>
        <el-col :span="22">
          <el-form-item label="场站名称" prop="siteStationName">
            <el-input v-model="form.siteStationName" placeholder="请输入场站名称" />
          </el-form-item>
        </el-col>
        </el-row>

        <el-row>
          <el-col :span="22">
        <el-form-item label="备注" prop="remarks">
          <el-input  v-model="form.remarks" type="textarea" placeholder="请输入备注" />
wuqinghua's avatar
wuqinghua committed
221
        </el-form-item>
222
          </el-col>
wuqinghua's avatar
wuqinghua committed
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
        </el-row>
      </el-form>
      <h3>关联设备</h3>
      <el-table v-loading="loadings" ref="multipleTable" :data="DetailInfoList" tooltip-effect="dark" style="width: 100%" max-height="250" @selection-change="tableDataSelectionChange">
        <el-table-column label="设备名称" align="center" prop="deviceName" />
        <el-table-column label="设备型号" align="center" prop="deviceModel" />
        <el-table-column label="设备类型" align="center" prop="deviceType" />
        <el-table-column label="物联网编号" align="center" prop="iotNo" />
        <el-table-column label="备注" align="center" prop="remarksn" />
        <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-delete"
              @click="deleteDataListilInfo(scope.row,scope.$index)"
              v-hasPermi="['device:device:remove']"
            >删除</el-button>
          </template>
        </el-table-column>
      </el-table>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary"  @click="selectDataListInfo">选择关联设备</el-button>
        <el-button type="primary" @click="submitForm"> </el-button>
        <el-button @click="cancel"> </el-button>
      </div>
    </el-dialog>


    <!--选择关联设备弹出框-->
wuqinghua's avatar
wuqinghua committed
253
    <el-dialog title="选择关联设备"  width="1100px" :visible.sync="dialogTableVisible" >
wuqinghua's avatar
wuqinghua committed
254
      <template>
wuqinghua's avatar
wuqinghua committed
255 256
        <el-form :model="dateQueryParams"  ref="queryForm" :inline="true" v-show="showSearch" >
          <el-form-item label="设备名称" prop="deviceName" >
wuqinghua's avatar
wuqinghua committed
257 258 259 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 288 289 290 291 292 293 294 295 296 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
            <el-input
              v-model="dateQueryParams.deviceName"
              placeholder="请输入设备名称"
              clearable
              size="small"
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="设备型号" prop="deviceCode">
            <el-input
              v-model="dateQueryParams.deviceModel"
              placeholder="请输入设备型号"
              clearable
              size="small"
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item label="物联网编号" prop="deviceAddr">
            <el-input
              v-model="dateQueryParams.iotNo"
              placeholder="请输入物联网编号"
              clearable
              size="small"
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item>
            <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQueryData">搜索</el-button>
            <el-button icon="el-icon-refresh" size="mini" @click="resetQueryDate">重置</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="dialogFormVisible = true"
              v-hasPermi="['device:device:add']"
            >新增</el-button>
          </el-col>
          <el-col :span="1.5">
            <el-button
              type="danger"
              plain
              icon="el-icon-delete"
              size="mini"
              :disabled="multiple"
              @click="deleteListDetailInfo"
              v-hasPermi="['device:device:remove']"
            >删除</el-button>
          </el-col>
          <right-toolbar :showSearch.sync="showSearch" @queryTable="getDataList"></right-toolbar>
        </el-row>
        <el-table v-loading="loadings" ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" max-height="250" @selection-change="tableDataSelectionChange">
          <el-table-column type="selection" width="55"  align="center"></el-table-column>
          <el-table-column label="设备名称" align="center" prop="deviceName" />
          <el-table-column label="设备型号" align="center" prop="deviceModel" />
          <el-table-column label="设备类型" align="center" prop="deviceType" />
          <el-table-column label="物联网编号" align="center" prop="iotNo" />
          <el-table-column label="备注" align="center" prop="remarksn" />
          <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-delete"
                @click="deleteDetailInfo(scope.row)"
                v-hasPermi="['device:device:remove']"
              >删除</el-button>
            </template>
          </el-table-column>
        </el-table>
        <div slot="footer" class="dialog-footer">
          <el-button type="primary" @click="insertListDetailInfo"> </el-button>
          <el-button @click="dialogTableVisible=false"> </el-button>
        </div>
      </template>
    </el-dialog>

    <!-------------------------------------------------------------------------------------------------------------------------->
340

wuqinghua's avatar
wuqinghua committed
341 342 343 344 345
    <!--添加关联设备弹出框-->
    <el-dialog title="添加关联设备"  :visible.sync="dialogFormVisible">
      <el-form ref="formDetailInfo" :model="formDetailInfo" :rules="formDetailInfoRules" label-width="95px" style="height: 230px">

        <el-row>
346
          <el-col :span="11">
wuqinghua's avatar
wuqinghua committed
347 348 349 350 351 352 353 354 355
            <el-form-item label="设备名称" prop="deviceName">
              <el-input v-model="formDetailInfo.deviceName" placeholder="请输入设备名称" autocomplete="off"></el-input>
            </el-form-item>
          </el-col>

          <el-col :span="11">
            <el-form-item label="设备型号" prop="deviceModel">
              <el-input v-model="formDetailInfo.deviceModel" placeholder="请输入设备型号" />
            </el-form-item>
356 357 358 359 360
          </el-col>
        </el-row>

        <el-row>
          <el-col :span="11">
wuqinghua's avatar
wuqinghua committed
361 362 363 364
            <el-form-item label="设备类型"  prop="deviceType">
              <el-select v-model="formDetailInfo.deviceType" placeholder="请选择设备类型">
                <el-option label="压力表" value="1" />
                <el-option label="流量计" value="2" />
365 366 367
              </el-select>
            </el-form-item>
          </el-col>
wuqinghua's avatar
wuqinghua committed
368 369 370 371 372 373

          <el-col :span="11">
            <el-form-item label="物联网编号" prop="iotNo" >
              <el-input v-model="formDetailInfo.iotNo" placeholder="请输入物联网编号" />
            </el-form-item>
          </el-col>
374 375 376 377
        </el-row>

        <el-row>
          <el-col :span="22">
wuqinghua's avatar
wuqinghua committed
378 379 380
            <el-form-item label="备注" prop="remarksn">
              <el-input v-model="formDetailInfo.remarksn" type="textarea" placeholder="请输入备注" />
            </el-form-item>
381 382
          </el-col>
        </el-row>
wuqinghua's avatar
wuqinghua committed
383 384
      </el-form>
      <div slot="footer" class="dialog-footer">
wuqinghua's avatar
wuqinghua committed
385 386
        <el-button type="primary" @click="addDetailInfo"> </el-button>
        <el-button @click="dialogFormVisible=false"> </el-button>
wuqinghua's avatar
wuqinghua committed
387 388
      </div>
    </el-dialog>
wuqinghua's avatar
wuqinghua committed
389 390 391 392 393 394 395 396

    <GetPos
      :dialogVisible.sync="dialogTableVisibles"
      device=""
      :devicePos="devicePos"
      @close="dialogcancelFun"
      @getPath="getPath"
    />
wuqinghua's avatar
wuqinghua committed
397 398 399 400 401
  </div>
</template>

<script>
import { listStation, getStation, delStation, addStation, updateStation, exportStation ,selectTEnterprise} from "@/api/regulation/station";
wuqinghua's avatar
wuqinghua committed
402 403
import { getDdeviceDetailInfo,addDetailInfos,deleteDetailInfo,deleteeListDetailInfo,selectDetailInfoList,deleteDeviceDetailInfo,updateDetailInfoLists} from "@/api/regulation/device";
import GetPos from '@/components/GetPos';
wuqinghua's avatar
wuqinghua committed
404 405 406
export default {
  name: "Station",
  components: {
wuqinghua's avatar
wuqinghua committed
407
    GetPos
wuqinghua's avatar
wuqinghua committed
408 409 410
  },
  data() {
    return {
wuqinghua's avatar
wuqinghua committed
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
      /**-------------------弹出框所用数据-------------------------------*/
      //下级设备数据数组
      tableData: [],
      //下级数据的遮罩层
      loadings:true,
      //存储已被选中的下级数据id
      DetailInfoListId :[],
      //存储已经选中的下级关联数据
      DetailInfoList:[],
      dialogTableVisible: false,
      //添加关联设备弹出层控制
      dialogFormVisible: false,
      /*添加关联设备*/
      formDetailInfo:{
        relationDeviceDetailId:'',
        deviceName: '',
        deviceModel:'',
        deviceType:'',
        iotNo:'',
        remarksn:''
      },
      //关联设备下级数据 表单校验
      formDetailInfoRules:{
        deviceName:[
          { required: true, message: "请输入设备名称", trigger: "blur" },
        ],
        deviceModel:[
          { required: true, message: "请输入设备型号", trigger: "blur" },
        ],
        deviceType:[
          { required: true, message: "请选择设备类型", trigger: "blur" },
        ],
        iotNo:[
          { required: true, message: "请输入联网编号", trigger: "blur" },
        ],
      },
      /**-------------------弹出框所用数据-------------------------------*/
      /**--------------地图使用数据---------------*/
      dialogTableVisibles: false,
      devicePos: [],
      /**--------------地图使用数据---------------*/
wuqinghua's avatar
wuqinghua committed
452 453 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
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 场站信息表格数据
      stationList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站字典
      siteStationTypeOptions: [],
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        siteStationName: null,
        beyondEnterpriseName: null,
        remarks: null
      },
wuqinghua's avatar
wuqinghua committed
482 483 484 485 486 487
      // 查询参数
      dateQueryParams: {
        deviceName: null,
        deviceModel: null,
        iotNo: null,
      },
wuqinghua's avatar
wuqinghua committed
488 489 490 491 492 493
      // 表单参数
      form: {},
      // 动态下拉
      test: {},
      // 表单校验
      rules: {
494 495 496 497 498 499 500 501 502 503 504 505
        siteStationType: [
          { required: true, message: "请输入场站类型", trigger: "blur" },
        ],
        siteStationName: [
          { required: true, message: "请输入场站名称", trigger: "blur" },
        ],
        buildDate: [
          { required: true, message: "请选择建设年代", trigger: "blur" },
        ],
        buildUnit: [
          { required: true, message: "请输入建设单位", trigger: "blur" },
        ],
wuqinghua's avatar
wuqinghua committed
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
      }
    };
  },
  created() {
    this.getList();
    this.getDicts("site_station_type").then(response => {
      this.siteStationTypeOptions = response.data;
    });
  },
  methods: {
    /** 查询场站信息列表 */
    getList() {
      this.loading = true;
      listStation(this.queryParams).then(response => {
        this.stationList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },
    // 场站类型:1.加气站 2.门站 3.调压站 4.储备站 5.气化站字典翻译
    siteStationTypeFormat(row, column) {
      return this.selectDictLabel(this.siteStationTypeOptions, row.siteStationType);
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      this.form = {
        siteStationId: null,
        siteStationType: null,
        siteStationName: null,
        buildDate: null,
        buildUnit: null,
        beyondEnterpriseId: null,
        beyondEnterpriseName: null,
        longitude: null,
        latitude: null,
        createBy: null,
        createTime: null,
        updateBy: null,
        updateTime: null,
        isDel: null,
wuqinghua's avatar
wuqinghua committed
551 552
        remarks: null,
        relationDeviceType:'2',
wuqinghua's avatar
wuqinghua committed
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
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.resetForm("queryForm");
      this.handleQuery();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.siteStationId)
      this.single = selection.length!==1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      //查询企业名称下拉框数据
      selectTEnterprise().then(response => {
        this.test = response.data;
      });
wuqinghua's avatar
wuqinghua committed
578 579 580 581 582 583 584 585 586 587 588
      //清空关联设备数据
      this.DetailInfoList=''
      this.loadings = true;
      //查询下级设备数据
      getDdeviceDetailInfo(this.dateQueryParams).then(response => {
        //下级设备数据 到时候换成下级数据
        this.tableData = response.rows;
        this.detailTotal = response.total;
        this.loadings = false;
      });

wuqinghua's avatar
wuqinghua committed
589 590 591 592 593 594 595 596 597 598
      this.reset();
      this.open = true;
      this.title = "添加场站信息";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      //查询企业名称下拉框数据
      selectTEnterprise().then(response => {
        this.test = response.data;
      });
wuqinghua's avatar
wuqinghua committed
599 600 601 602 603 604 605 606 607 608 609 610

      const deviceId = row.siteStationId || this.ids
      var tDeviceInfon={
        id:deviceId,
        relationDeviceType:'2' //设置关联设备类型
      }
      //查询关联设备信息数据
      selectDetailInfoList(JSON.stringify(tDeviceInfon)).then(response => {
        this.DetailInfoList = response.rows;
        this.loadings = false;
      });

wuqinghua's avatar
wuqinghua committed
611 612 613 614 615 616 617 618
      this.reset();
      const siteStationId = row.siteStationId || this.ids
      getStation(siteStationId).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "修改场站信息";
      });
    },
wuqinghua's avatar
wuqinghua committed
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640


    /** 原提交按钮 */
    // submitForm() {
    //   this.$refs["form"].validate(valid => {
    //     if (valid) {
    //       if (this.form.siteStationId != null) {
    //         updateStation(this.form).then(response => {
    //           this.msgSuccess("修改成功");
    //           this.open = false;
    //           this.getList();
    //         });
    //       } else {
    //         addStation(this.form).then(response => {
    //           this.msgSuccess("新增成功");
    //           this.open = false;
    //           this.getList();
    //         });
    //       }
    //     }
    //   });
    // },
wuqinghua's avatar
wuqinghua committed
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
    /** 删除按钮操作 */
    handleDelete(row) {
      const siteStationIds = row.siteStationId || this.ids;
      this.$confirm('是否确认删除场站信息编号为"' + siteStationIds + '"的数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(function() {
          return delStation(siteStationIds);
        }).then(() => {
          this.getList();
          this.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      const queryParams = this.queryParams;
      this.$confirm('是否确认导出所有场站信息数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          this.exportLoading = true;
          return exportStation(queryParams);
        }).then(response => {
          this.download(response.msg);
          this.exportLoading = false;
        }).catch(() => {});
wuqinghua's avatar
wuqinghua committed
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
    },

    /**-------------------后加入弹出框方法----------------------*/
    /**
     * 选择关联设备查询方法
     */
    selectDataListInfo(){
      //查询下级设备数据
      getDdeviceDetailInfo(this.dateQueryParams).then(response => {
        //下级设备数据 到时候换成下级数据
        this.tableData = response.rows;
        this.detailTotal = response.total;
        this.loadings = false;
        //打开选择关联设备弹出框
        this.dialogTableVisible = true
      });
    },

    /**
     *查询下级数据列表方法
     * */
    getDataList(){
      this.loadings = true;
      // console.log(this.dateQueryParams)
      //查询下级设备数据
      getDdeviceDetailInfo(this.dateQueryParams).then(response => {
        //下级设备数据 到时候换成下级数据
        this.tableData = response.rows;
        this.detailTotal = response.total;
        this.loadings = false;
      });
    },

    /**关联设备添加方法*/
    addDetailInfo(){
      this.$refs["formDetailInfo"].validate(valid => {
        if (valid) {
          addDetailInfos(this.formDetailInfo).then(response => {
            // this.tableData.push(this.formDetailInfo)
            //关闭弹出层
            this.dialogFormVisible = false;
            //数据表单重置
            this.formDetailInfo={
              deviceName: null,
              deviceModel:null,
              deviceType:null,
              iotNo:null,
              remarksn:null
            };
            this.getDataList();
            this.msgSuccess("新增成功");
          });
        }
      });
    },

    /**添加关联设备与设备绑定的数据  (存储到数组中)*/
    insertListDetailInfo(row){
      //获取已经选中的下级设备id
      const deviceIds =  this.ids;
      const li=this.datalist;
        if (this.form.siteStationId != null) {
          //修改
          this.DetailInfoList=this.DetailInfoList.concat(this.datalist)
          //添加到数组中 以便下次使用
          this.DetailInfoListId.push(deviceIds);
          // alert(this.DetailInfoListId)
          this.dialogTableVisible=false
          this.msgSuccess("添加成功");
        }else {
          //添加
          // this.DetailInfoList.push(this.datalist)
          //清空数组数据   将之前的数据清空
          this.DetailInfoListId.splice(row);
          this.DetailInfoList=this.datalist;
          //添加到数组中 以便下次使用
          this.DetailInfoListId.push(deviceIds);
          // alert(this.DetailInfoListId)
          this.dialogTableVisible=false
          this.msgSuccess("添加成功");
        }

    },

    /**关联设备单条删除方法*/
    deleteDetailInfo(row){
      const deviceIds = row.relationDeviceDetailId;
      this.$confirm('是否确认删除设备信息编号为"' + deviceIds + '"的数据项?', "警告", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      }).then(function() {
        return deleteDetailInfo(deviceIds);
      }).then(() => {
        // this.tableData.splice(index,1);
        this.getDataList();
        this.msgSuccess("删除成功");
      }).catch(() => {});
    },

    /**
     * 批量删除关联设备方法
     * @param row
     */
    deleteListDetailInfo(row){
      const deviceIds = this.ids;
      this.$confirm('是否确认删除设备信息编号为"' + deviceIds + '"的数据项?', "警告", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      }).then(function() {
        return deleteeListDetailInfo(deviceIds);
      }).then(() => {
        this.getDataList();
        this.msgSuccess("删除成功");
      }).catch(() => {});
    },

    /**关联设备已经选中数据删除方法*/
    deleteDataListilInfo(row,index){
      const deviceIds = row.relationDeviceDetailId;
      //判断form表单是否有id来验证是修改的删除还是添加的删除
      if (this.form.siteStationId != null) {
        deleteDeviceDetailInfo(deviceIds).then(response => {
          this.msgSuccess("删除成功");
          this.DetailInfoList.splice(index,1);
        });
      }else {
        this.DetailInfoList.splice(index,1);
        this.msgSuccess("删除成功");
      }
    },

    /**提交数据方法*/
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.form.siteStationId != null) {
            updateStation(this.form).then(response => {
              this.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
            if ( this.datalist !=null){
              this.form.relationDeviceType='2';
              var tDeviceInfon={
                tDeviceInfo:this.form,
                tDeviceInfoS:this.datalist
              }
              //重新绑定修改后的关联设备
              updateDetailInfoLists(JSON.stringify(tDeviceInfon)).then(response => {
                this.open = false;
                this.getList();
              });
            }
          } else {
            if (valid) {
              //获取已经选中的下级设备id
              const deviceIds =  this.ids;
              // alert(deviceIds)
              this.form.relationDeviceType='2';
              var tDeviceInfon={
                tDeviceInfo:this.form,
                tDeviceInfoS:this.datalist
              }
              addStation(JSON.stringify(tDeviceInfon)).then(response => {
                this.msgSuccess("新增成功");
                this.open = false;
                this.getList();
              });
            } else {
              console.log('error submit!!');
              return false;
            }
          }
        }
      });
    },

    //关联数据多选框选中数据
    tableDataSelectionChange(selection){
      this.ids = selection.map(item => item.relationDeviceDetailId)
      this.datalist=selection.map(item => item)
      //按钮 非选中禁用
      this.single = selection.length!==1
      this.multiple = !selection.length
    },

    /** 下级数据搜索*/
    handleQueryData(){
      this.getDataList();
    },

    /** 下级数据重置按钮操作  搜索框重置*/
    resetQueryDate(){
      this.dateQueryParams={
        deviceName: null,
        deviceModel: null,
        iotNo: null,
      }
    },

    /**
     * 经纬度坐标方法
     */
    MapdialogFun() {
      this.dialogTableVisibles = true;
    },
    /**
     * 地图关闭方法
     */
    dialogcancelFun() {
      this.dialogTableVisibles = false;
    },
    /**
     * 经纬度 选择
     * @param res
     */
    getPath(res){
      //确认选择经纬度
      this.form.longitude = res[0];
      this.form.latitude = res[1];
wuqinghua's avatar
wuqinghua committed
891
    }
wuqinghua's avatar
wuqinghua committed
892

wuqinghua's avatar
wuqinghua committed
893 894 895
  }
};
</script>