<template> <div class="app-container"> <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="108px"> <el-form-item label="场站名称" prop="siteStationName" label-width="70px"> <el-input v-model="queryParams.siteStationName" placeholder="请输入场站名称" clearable size="small" @keyup.enter.native="handleQuery" /> </el-form-item> <el-form-item label="权属单位名称" label-width="100px" prop="beyondEnterpriseName"> <el-input v-model="queryParams.beyondEnterpriseName" placeholder="请输入权属单位名称" clearable size="small" @keyup.enter.native="handleQuery" /> </el-form-item> <!-- <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>--> <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" /> <!-- 添加或修改场站信息对话框 --> <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body> <el-form ref="form" :model="form" :rules="rules" label-width="90px"> <el-row> <el-col :span="11"> <el-form-item label="场站类型" prop="siteStationType"> <el-select v-model="form.siteStationType" placeholder="请选择场站类型" style="width: 100%"> <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> </el-col> <el-col :span="11"> <el-form-item label="权属单位" prop="beyondEnterpriseName"> <el-select style="width: 100%" 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> </el-row> <el-row> <el-col :span="11"> <el-form-item label="建设年代" prop="buildDate"> <el-date-picker clearable size="small" style="width: 100%" v-model="form.buildDate" type="date" value-format="yyyy-MM-dd" placeholder="选择建设年代"> </el-date-picker> </el-form-item> </el-col> <el-col :span="11"> <el-form-item label="建设单位" prop="buildUnit"> <el-input v-model="form.buildUnit" placeholder="请输入建设单位" /> </el-form-item> </el-col> </el-row> <!-- <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>--> <!-- <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>--> <el-row> <el-col :span="24"> <el-form-item label="经纬度坐标" prop="longitude"> <el-col :span="8"> <el-input v-model="form.longitude" placeholder="请输入经度" /> </el-col> <el-col :span="8" style="margin-left: 20px"> <el-input v-model="form.latitude" placeholder="请输入纬度"/> </el-col> <el-col :span="4" 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="请输入备注" /> </el-form-item> </el-col> </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> <!--选择关联设备弹出框--> <el-dialog title="选择关联设备" width="1100px" :visible.sync="dialogTableVisible" > <template> <el-form :model="dateQueryParams" ref="queryForm" :inline="true" v-show="showSearch" > <el-form-item label="设备名称" prop="deviceName" > <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> <!--------------------------------------------------------------------------------------------------------------------------> <!--添加关联设备弹出框--> <el-dialog title="添加关联设备" :visible.sync="dialogFormVisible"> <el-form ref="formDetailInfo" :model="formDetailInfo" :rules="formDetailInfoRules" label-width="95px" style="height: 230px"> <el-row> <el-col :span="11"> <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> </el-col> </el-row> <el-row> <el-col :span="11"> <el-form-item label="设备类型" prop="deviceType"> <el-select v-model="formDetailInfo.deviceType" placeholder="请选择设备类型"> <el-option label="压力表" value="1" /> <el-option label="流量计" value="2" /> </el-select> </el-form-item> </el-col> <el-col :span="11"> <el-form-item label="物联网编号" prop="iotNo" > <el-input v-model="formDetailInfo.iotNo" placeholder="请输入物联网编号" /> </el-form-item> </el-col> </el-row> <el-row> <el-col :span="22"> <el-form-item label="备注" prop="remarksn"> <el-input v-model="formDetailInfo.remarksn" type="textarea" placeholder="请输入备注" /> </el-form-item> </el-col> </el-row> </el-form> <div slot="footer" class="dialog-footer"> <el-button type="primary" @click="addDetailInfo">提 交</el-button> <el-button @click="dialogFormVisible=false">取 消</el-button> </div> </el-dialog> <GetPos :dialogVisible.sync="dialogTableVisibles" device="" :devicePos="devicePos" @close="dialogcancelFun" @getPath="getPath" /> </div> </template> <script> import { listStation, getStation, delStation, addStation, updateStation, exportStation ,selectTEnterprise} from "@/api/regulation/station"; import { getDdeviceDetailInfo,addDetailInfos,deleteDetailInfo,deleteeListDetailInfo,selectDetailInfoList,deleteDeviceDetailInfo,updateDetailInfoLists} from "@/api/regulation/device"; import GetPos from '@/components/GetPos'; export default { name: "Station", components: { GetPos }, data() { return { /**-------------------弹出框所用数据-------------------------------*/ //下级设备数据数组 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: [], /**--------------地图使用数据---------------*/ // 遮罩层 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 }, // 查询参数 dateQueryParams: { deviceName: null, deviceModel: null, iotNo: null, }, // 表单参数 form: {}, // 动态下拉 test: {}, // 表单校验 rules: { siteStationType: [ { required: true, message: "请输入场站类型", trigger: "blur" }, ], siteStationName: [ { required: true, message: "请输入场站名称", trigger: "blur" }, ], buildDate: [ { required: true, message: "请选择建设年代", trigger: "blur" }, ], buildUnit: [ { required: true, message: "请输入建设单位", trigger: "blur" }, ], } }; }, 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, remarks: null, relationDeviceType:'2', }; 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; }); //清空关联设备数据 this.DetailInfoList='' this.loadings = true; //查询下级设备数据 getDdeviceDetailInfo(this.dateQueryParams).then(response => { //下级设备数据 到时候换成下级数据 this.tableData = response.rows; this.detailTotal = response.total; this.loadings = false; }); this.reset(); this.open = true; this.title = "添加场站信息"; }, /** 修改按钮操作 */ handleUpdate(row) { //查询企业名称下拉框数据 selectTEnterprise().then(response => { this.test = response.data; }); 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; }); this.reset(); const siteStationId = row.siteStationId || this.ids getStation(siteStationId).then(response => { this.form = response.data; this.open = true; this.title = "修改场站信息"; this.devicePos = [response.data.longitude, response.data.latitude]; }); }, /** 原提交按钮 */ // 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(); // }); // } // } // }); // }, /** 删除按钮操作 */ 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(() => {}); }, /**-------------------后加入弹出框方法----------------------*/ /** * 选择关联设备查询方法 */ 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, } this.getDataList(); }, /** * 经纬度坐标方法 */ MapdialogFun() { this.dialogTableVisibles = true; }, /** * 地图关闭方法 */ dialogcancelFun() { this.dialogTableVisibles = false; }, /** * 经纬度 选择 * @param res */ getPath(res){ //确认选择经纬度 this.form.longitude = res[0]; this.form.latitude = res[1]; } } }; </script>