Commit 91fd1658 authored by 纪泽龙's avatar 纪泽龙

Merge branch 'develop_jzl'

parents 5e71e661 1ed1ce44
...@@ -83,6 +83,11 @@ ...@@ -83,6 +83,11 @@
<div> <div>
详细信息:<span>{{ alarmValue ? alarmValue : "-" }}</span> 详细信息:<span>{{ alarmValue ? alarmValue : "-" }}</span>
</div> </div>
<div v-if="!orderId">
工单编号:<span>{{
obj.polyline.getExtData().lineData.orderId
}}</span>
</div>
</div> </div>
<div @click.stop="stopPropatation" class="btn"> <div @click.stop="stopPropatation" class="btn">
<span @mousedown.stop="deviceMore"> <span @mousedown.stop="deviceMore">
...@@ -91,6 +96,9 @@ ...@@ -91,6 +96,9 @@
<span v-if="orderId" @mousedown.stop="createWork"> <span v-if="orderId" @mousedown.stop="createWork">
<el-button class="elbtn" type="primary">生成工单</el-button> <el-button class="elbtn" type="primary">生成工单</el-button>
</span> </span>
<span v-else @mousedown.stop="checkWork">
<el-button class="elbtn" type="primary">查看工单</el-button>
</span>
</div> </div>
</div> </div>
</div> </div>
...@@ -151,29 +159,35 @@ export default { ...@@ -151,29 +159,35 @@ export default {
this.obj.polyline.getExtData().lineData.alarmId; this.obj.polyline.getExtData().lineData.alarmId;
this.obj.polyline.getExtData().lineData.view.$refs.CreateWork.open = true; this.obj.polyline.getExtData().lineData.view.$refs.CreateWork.open = true;
// 改变外层回调 // 改变外层回调
this.obj.polyline.getExtData().lineData.view.alarmObjChange({
this.obj.polyline.getExtData().lineData.view.CreateWorkCallBack = alarmId: this.obj.polyline.getExtData().lineData.alarmId,
this.CreateWorkCallBack; type: "pipe",
});
// this.obj.polyline.getExtData().lineData.view.CreateWorkCallBack(this.CreateWorkCallBack)
}, },
close() { checkWork() {
this.obj.polyline.infoWindow.close(); this.obj.polyline.getExtData().class.view.$router.push({
path: "/basicsInfo/detail",
query: {
orderId: this.obj.polyline.getExtData().lineData.orderId,
}, },
CreateWorkCallBack() { });
console.log("polylineCallBack");
const polyline = this.obj.polyline
.getExtData()
.lineData.view.gaoMap.polyLines.filter((item) => {
return (
item.getExtData().lineData.alarmId ==
this.obj.polyline.getExtData().lineData.alarmId
);
})[0];
console.log("polyline.getExtData()", polyline.getExtData().lineData);
let options = polyline.getExtData();
// 暂时传值,到时候回重新刷新
options.lineData.orderId = "1";
polyline.setExtData(options);
}, },
// // CreateWorkCallBack(e) {
// // console.log("生成工单后传过来的参数", e);
// // const polyline = this.obj.polyline
// // .getExtData()
// // .lineData.view.gaoMap.polyLines.filter((item) => {
// // return (
// // item.getExtData().lineData.alarmId ==
// // this.obj.polyline.getExtData().lineData.alarmId
// // );
// // })[0];
// // let options = polyline.getExtData();
// // // 暂时传值,到时候回重新刷新
// // options.lineData.orderId = e;
// // polyline.setExtData(options);
// },
deviceMore() { deviceMore() {
console.log(this.obj.polyline.getExtData().lineData); console.log(this.obj.polyline.getExtData().lineData);
this.obj.polyline.getExtData().class.view.$router.push({ this.obj.polyline.getExtData().class.view.$router.push({
...@@ -183,6 +197,9 @@ export default { ...@@ -183,6 +197,9 @@ export default {
}, },
}); });
}, },
close() {
this.obj.polyline.infoWindow.close();
},
}, },
}; };
</script> </script>
......
...@@ -70,6 +70,9 @@ ...@@ -70,6 +70,9 @@
<div> <div>
详细信息:<span>{{ data.alarmValue ? data.alarmValue : "-" }}</span> 详细信息:<span>{{ data.alarmValue ? data.alarmValue : "-" }}</span>
</div> </div>
<div v-if="!orderId">
工单编号:<span>{{ data.orderId }}</span>
</div>
</div> </div>
<div class="btn"> <div class="btn">
<span @mousedown.stop="deviceMore"> <span @mousedown.stop="deviceMore">
...@@ -83,6 +86,9 @@ ...@@ -83,6 +86,9 @@
>生成工单</el-button >生成工单</el-button
> >
</span> </span>
<span v-else @mousedown.stop="checkWork">
<el-button class="elbtn" type="primary">查看工单</el-button>
</span>
</div> </div>
</div> </div>
</div> </div>
...@@ -115,19 +121,24 @@ export default { ...@@ -115,19 +121,24 @@ export default {
this.data.view.$refs.CreateWork.open = true; this.data.view.$refs.CreateWork.open = true;
this.data.view.$refs.CreateWork.gaoMap = this.data.view.gaoMap; this.data.view.$refs.CreateWork.gaoMap = this.data.view.gaoMap;
// 改变外层回调 // 改变外层回调
this.data.view.CreateWorkCallBack = this.CreateWorkCallBack; // this.data.view.CreateWorkCallBack = this.CreateWorkCallBack;
this.data.view.alarmObjChange({
alarmId: this.data.alarmId,
type: "device",
});
}, },
CreateWorkCallBack() { // CreateWorkCallBack(e) {
// console.log("markerCallBack") // // console.log("生成工单后传过来的参数", e);
const marker = this.data.view.gaoMap.markers.filter((item) => { // // console.log("markerCallBack");
return item.getExtData().alarmId == this.data.alarmId; // const marker = this.data.view.gaoMap.markers.filter((item) => {
})[0]; // return item.getExtData().alarmId == this.data.alarmId;
// })[0];
// console.log("marer.getExtData()", marker.getExtData()); // console.log("marer.getExtData()", marker.getExtData());
let options = marker.getExtData(); // let options = marker.getExtData();
// 暂时传值,到时候回重新刷新 // // 暂时传值,到时候回重新刷新
options.orderId = "1"; // options.orderId = e;
marker.setExtData(options); // marker.setExtData(options);
}, // },
deviceMore() { deviceMore() {
this.data.view.$router.push({ this.data.view.$router.push({
path: "/deviceAlarm/alarmdetail", path: "/deviceAlarm/alarmdetail",
...@@ -136,6 +147,15 @@ export default { ...@@ -136,6 +147,15 @@ export default {
}, },
}); });
}, },
// 查看工单
checkWork() {
this.data.view.$router.push({
path: "/basicsInfo/detail",
query: {
orderId: this.data.orderId,
},
});
},
}, },
beforeDestroy() { beforeDestroy() {
// this.data.view.createWorkOpen = false; // this.data.view.createWorkOpen = false;
......
...@@ -351,6 +351,7 @@ class gaodeMap { ...@@ -351,6 +351,7 @@ class gaodeMap {
e.target.content = this.getMarketContent( e.target.data); e.target.content = this.getMarketContent( e.target.data);
e.target.infoWindow.setContent(e.target.content); e.target.infoWindow.setContent(e.target.content);
e.target.infoWindow.open(map, e.target.getPosition()); e.target.infoWindow.open(map, e.target.getPosition());
console.log("e.target.getPosition()",e.target.getExtData())
this.boxCollision(e.target.infoWindow.dom); this.boxCollision(e.target.infoWindow.dom);
// that.addCloneDome(e.target, infoWindow); // that.addCloneDome(e.target, infoWindow);
// infoWindow.close(); // infoWindow.close();
......
...@@ -48,11 +48,10 @@ ...@@ -48,11 +48,10 @@
>确 定</el-button >确 定</el-button
> >
<!-- <el-button @click="cancel">取 消</el-button> --> <!-- <el-button @click="cancel">取 消</el-button> -->
<el-button>取 消</el-button> <el-button @click.stop="close">取 消</el-button>
</div> </div>
</el-dialog> </el-dialog>
</template> </template>
<script> <script>
import { inspectorList } from "@/api/system/user"; import { inspectorList } from "@/api/system/user";
import { addBasicsInfo } from "@/api/workOrder/basicsInfo"; import { addBasicsInfo } from "@/api/workOrder/basicsInfo";
...@@ -76,12 +75,12 @@ export default { ...@@ -76,12 +75,12 @@ export default {
appointInspector: "", appointInspector: "",
remarks: "", remarks: "",
}, },
gaoMap:"", gaoMap: "",
open: false, open: false,
title: "", title: "",
inspector: [], inspector: [],
loading: false, loading: false,
alarmId:"", alarmId: "",
rules: { rules: {
orderName: [ orderName: [
{ required: true, message: "工单名称不能为空", trigger: "blur" }, { required: true, message: "工单名称不能为空", trigger: "blur" },
...@@ -100,7 +99,7 @@ export default { ...@@ -100,7 +99,7 @@ export default {
open(value, oldValue) { open(value, oldValue) {
if (value) { if (value) {
console.log(this.alarmId); console.log(this.alarmId);
this.handleIssue(this.alarmId) this.handleIssue(this.alarmId);
} }
}, },
}, },
...@@ -130,14 +129,18 @@ export default { ...@@ -130,14 +129,18 @@ export default {
this.form.resourceId = this.form.alarmId; this.form.resourceId = this.form.alarmId;
this.form.orderType = "3"; this.form.orderType = "3";
addBasicsInfo(this.form).then((response) => { addBasicsInfo(this.form).then((response) => {
if (response.code == 200) {
console.log(response.msg);
this.msgSuccess("生成工单成功"); this.msgSuccess("生成工单成功");
this.open = false; this.open = false;
this.$emit("callback"); }
this.$emit("callback", 999);
}); });
} }
}); });
}, },
close() { close() {
console.log("关闭");
this.open = false; this.open = false;
}, },
}, },
......
...@@ -77,12 +77,14 @@ ...@@ -77,12 +77,14 @@
<div ref="drawer" class="drawer" :class="{ back: backFlag }"> <div ref="drawer" class="drawer" :class="{ back: backFlag }">
<div class="switch" @click="backFlag = !backFlag"> <div class="switch" @click="backFlag = !backFlag">
<i <!-- <i
:class="{ :class="{
'el-icon-arrow-left': !backFlag, 'el-icon-arrow-left': !backFlag,
'el-icon-arrow-right': backFlag, 'el-icon-arrow-right': backFlag,
}" }"
></i> ></i> -->
<img v-if="!backFlag" src="@/assets/images/l.png" alt="" />
<img v-else src="@/assets/images/r.png" alt="" />
<!-- <i class="el-icon-arrow-right"></i> --> <!-- <i class="el-icon-arrow-right"></i> -->
</div> </div>
<!-- 只能动态传入内嵌盒子的高 --> <!-- 只能动态传入内嵌盒子的高 -->
...@@ -132,6 +134,8 @@ ...@@ -132,6 +134,8 @@
class="animate" class="animate"
v-show="arrowRightNum.indexOf(item.value) >= 0" v-show="arrowRightNum.indexOf(item.value) >= 0"
> >
<!-- 有数据 -->
<template v-if="item.list.length > 0">
<!-- 设备以及管道 展示内容是一样的 --> <!-- 设备以及管道 展示内容是一样的 -->
<template v-if="item.value != 9"> <template v-if="item.value != 9">
<div> <div>
...@@ -148,7 +152,9 @@ ...@@ -148,7 +152,9 @@
@mousedown.stop="panToo(iten, item)" @mousedown.stop="panToo(iten, item)"
> >
<div class="no">{{ iten.no + 1 }}</div> <div class="no">{{ iten.no + 1 }}</div>
<div :title="iten.code" class="code">{{ iten.code }}</div> <div :title="iten.code" class="code">
{{ iten.code }}
</div>
<div :title="iten.deviceName" class="name"> <div :title="iten.deviceName" class="name">
{{ iten.deviceName }} {{ iten.deviceName }}
</div> </div>
...@@ -161,6 +167,7 @@ ...@@ -161,6 +167,7 @@
<div class="thead"> <div class="thead">
<div class="no">序号</div> <div class="no">序号</div>
<div class="code">人员姓名</div> <div class="code">人员姓名</div>
<div class="name">联系电话</div>
</div> </div>
<div <div
class="deviceList" class="deviceList"
...@@ -173,6 +180,9 @@ ...@@ -173,6 +180,9 @@
<div :title="iten.userName" class="code"> <div :title="iten.userName" class="code">
{{ iten.userName }} {{ iten.userName }}
</div> </div>
<div :title="iten.userPhone" class="name">
{{ iten.userPhone ? iten.userPhone : "-" }}
</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -199,6 +209,11 @@ ...@@ -199,6 +209,11 @@
> >
</div> </div>
</div> </div>
</template>
<!-- 无数据 -->
<template v-else>
<div style="padding-left: 5px">暂无数据</div>
</template>
</div> </div>
</el-collapse-transition> </el-collapse-transition>
</div> </div>
...@@ -317,7 +332,7 @@ export default { ...@@ -317,7 +332,7 @@ export default {
// 是否显示生成工单弹框 // 是否显示生成工单弹框
createWorkOpen: false, createWorkOpen: false,
// 查询用的 // 查询用的
alarmId: "", alarmObj: { alarmId: "", type: "" },
// 左边抽屉 内嵌scroll盒子的高 // 左边抽屉 内嵌scroll盒子的高
boxHeight: "", boxHeight: "",
//抽屉是否收回 //抽屉是否收回
...@@ -422,8 +437,8 @@ export default { ...@@ -422,8 +437,8 @@ export default {
}); });
}, },
//值班人员 //值班人员
getInspectorLocations() { getInspectorLocations(queryParams) {
return getInspectorLocations().then((res) => { return getInspectorLocations(queryParams).then((res) => {
if (res.code == 200) { if (res.code == 200) {
console.log(" 值班人员", res); console.log(" 值班人员", res);
// 把值班人员传进类里 // 把值班人员传进类里
...@@ -469,6 +484,7 @@ export default { ...@@ -469,6 +484,7 @@ export default {
const pipeId = item.getExtData().lineData.pipeId; const pipeId = item.getExtData().lineData.pipeId;
return deviceId == pipeId; return deviceId == pipeId;
})[0]; })[0];
if (polyline) {
let options = polyline.getExtData(); let options = polyline.getExtData();
// 增加一个报警状态 // 增加一个报警状态
// 如果有endtime说明状态已经不是报警状态了,要归位,所有东西都要变回来 // 如果有endtime说明状态已经不是报警状态了,要归位,所有东西都要变回来
...@@ -494,6 +510,7 @@ export default { ...@@ -494,6 +510,7 @@ export default {
console.log("管道报警"); console.log("管道报警");
} }
polyline.setExtData(options); polyline.setExtData(options);
}
}); });
} }
...@@ -508,8 +525,8 @@ export default { ...@@ -508,8 +525,8 @@ export default {
const id = item.getExtData().deviceId; const id = item.getExtData().deviceId;
return deviceId == id; return deviceId == id;
})[0]; })[0];
if (device) {
const options = device.getExtData(); const options = device.getExtData();
// 增加一个报警状态 // 增加一个报警状态
// 如果有endtime说明状态已经不是报警状态了,要归位,所有东西都要变回来 // 如果有endtime说明状态已经不是报警状态了,要归位,所有东西都要变回来
options.view = this; options.view = this;
...@@ -559,6 +576,7 @@ export default { ...@@ -559,6 +576,7 @@ export default {
); );
} }
} }
}
}); });
} }
if (this.ws) return; if (this.ws) return;
...@@ -707,7 +725,7 @@ export default { ...@@ -707,7 +725,7 @@ export default {
}, },
panToo(iten, item) { panToo(iten, item) {
// 如果没打对勾,就啥也不干 // 如果没打对勾,就啥也不干
if(!this.leftBarNum.includes(item.value) ) return if (!this.leftBarNum.includes(item.value)) return;
// 如果地图太大了就吸纳是不出来infowindow了,所以要固定缩放比例 // 如果地图太大了就吸纳是不出来infowindow了,所以要固定缩放比例
this.gaoMap.myMap.setZoom(11); this.gaoMap.myMap.setZoom(11);
...@@ -793,7 +811,6 @@ export default { ...@@ -793,7 +811,6 @@ export default {
}; };
}, },
// 向右的箭头的动画 // 向右的箭头的动画
arrowRightChange(item) { arrowRightChange(item) {
const index = this.arrowRightNum.indexOf(item.value); const index = this.arrowRightNum.indexOf(item.value);
...@@ -897,6 +914,7 @@ export default { ...@@ -897,6 +914,7 @@ export default {
no: index, no: index,
userId: item.userId, userId: item.userId,
userName: item.userName, userName: item.userName,
userPhone: item.phone,
}; };
}); });
console.log("值班人员", workManArr); console.log("值班人员", workManArr);
...@@ -919,7 +937,11 @@ export default { ...@@ -919,7 +937,11 @@ export default {
); );
}); });
item.maxPage = Math.ceil(this.allList[index].length / num); item.maxPage = Math.ceil(this.allList[index].length / num);
}else{
// 如果为空,就直接把item.list写成[];
item.list=[];
} }
}); });
}, },
pageBack(item) { pageBack(item) {
...@@ -1057,7 +1079,7 @@ export default { ...@@ -1057,7 +1079,7 @@ export default {
// map.remove(this.gaodeMap.markerOverlays); // map.remove(this.gaodeMap.markerOverlays);
}, },
// 搜索 // 搜索
search() { async search() {
this.searchClear(); this.searchClear();
map.clearMap(); map.clearMap();
this.gaoMap.placeSearch.clear(); this.gaoMap.placeSearch.clear();
...@@ -1070,14 +1092,36 @@ export default { ...@@ -1070,14 +1092,36 @@ export default {
this.gaoMap.searchSelectAdcode = undefined; this.gaoMap.searchSelectAdcode = undefined;
this.gaoMap.searchSelectName = undefined; this.gaoMap.searchSelectName = undefined;
} else { } else {
this.gaoMap.placeSearch.search(this.keyWord); // 左边全选
this.getDeviceInfo({ deviceName: this.keyWord }); this.leftBarNum = [1, 2, 3, 4, 7, 8, 9];
// 右转箭头的样式active判定
this.arrowRightNum = [];
// 清空左边列表
// this.changeBtnDataClear();
// this.gaoMap.placeSearch.search(this.keyWord);
await this.getDeviceInfo({ deviceName: this.keyWord });
this.gaoMap.polyLines = []; this.gaoMap.polyLines = [];
this.getPipeList({ pipeName: this.keyWord }); await this.getPipeList({ pipeName: this.keyWord });
// 值班人员 // 值班人员
this.getInspectorLocations(); await this.getInspectorLocations({ userName: this.keyWord });
// 设备报警
this.getSelectAlarmDevice();
this.pipeList();
console.log(this.changeBtnData);
console.log(this.allList)
} }
}, },
// 清空左边列表
changeBtnDataClear() {
this.allList = [];
this.changeBtnData.forEach((item) => {
// 清空list
item.list = [];
item.maxPage = 99;
item.nowPage = 1;
});
},
// 新建下拉列表关闭 window点击事件 // 新建下拉列表关闭 window点击事件
barClose() { barClose() {
// 一点windowbottomData显示 // 一点windowbottomData显示
...@@ -1110,21 +1154,32 @@ export default { ...@@ -1110,21 +1154,32 @@ export default {
openChange(bool) { openChange(bool) {
this.createWorkOpen = bool; this.createWorkOpen = bool;
}, },
CreateWorkCallBack() { // 生成工单的回调
if (!this.alarmId) return; CreateWorkCallBack(e) {
// 工单弹框生成之后执行的方法 if (!this.alarmObj.alarmId) return;
console.log("alarmObj", this.alarmObj);
if (this.alarmObj.type == "pipe") {
const polyline = this.gaoMap.polyLines.filter((item) => {
return item.getExtData().lineData.alarmId == this.alarmObj.alarmId;
})[0];
let options = polyline.getExtData();
// 暂时传值,到时候回重新刷新
options.lineData.orderId = e;
polyline.setExtData(options);
} else {
const marker = this.gaoMap.markers.filter((item) => { const marker = this.gaoMap.markers.filter((item) => {
return item.getExtData().alarmId == this.alarmId; return item.getExtData().alarmId == this.alarmObj.alarmId;
})[0]; })[0];
console.log("marer.getExtData()", marker.getExtData());
let options = marker.getExtData(); let options = marker.getExtData();
// 暂时传值,到时候回重新刷新 // 暂时传值,到时候回重新刷新
options.orderId = "1"; options.orderId = e;
marker.setExtData(options); marker.setExtData(options);
}
// 工单弹框生成之后执行的方法
}, },
alarmIdChange(alarmId) { alarmObjChange(obj) {
this.alarmId = alarmId; this.alarmObj = obj;
console.log(alarmId); console.log(this.alarmObj);
}, },
}, },
...@@ -1323,10 +1378,10 @@ input[type="radio"] { ...@@ -1323,10 +1378,10 @@ input[type="radio"] {
.switch { .switch {
position: absolute; position: absolute;
font-size: 30px; font-size: 30px;
right: -15px; right: -27px;
top: 50%; top: 50%;
margin-top: -30px; margin-top: -30px;
width: 25px; width: 40px;
border-radius: 40%; border-radius: 40%;
overflow: hidden; overflow: hidden;
cursor: pointer; cursor: pointer;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment