Commit 1fb4b7a9 authored by hanfeng's avatar hanfeng

车辆排班

parent 1e12c2e8
...@@ -1540,12 +1540,15 @@ ...@@ -1540,12 +1540,15 @@
}); });
}, },
setImgStyle(el) { setImgStyle(el) {
if (el.eq('show')) {
this.imgStyle=true; console.log('鼠标移入事件:setImgStyle')
} else if (el.eq('hide')) { if (el === 'show') {
this.imgStyle=false; this.imgStyle = true;
} else if (el === 'hide') {
this.imgStyle = false;
} }
}, },
},
/** /**
* 清空出车弹框数据 * 清空出车弹框数据
*/ */
...@@ -1567,7 +1570,7 @@ ...@@ -1567,7 +1570,7 @@
departurePic: '', departurePic: '',
remark: null, remark: null,
bookStartDate: null, bookStartDate: null,
}; }
}, },
cleanArrivalForm() { cleanArrivalForm() {
this.arrivalForm = { this.arrivalForm = {
...@@ -1583,7 +1586,6 @@ ...@@ -1583,7 +1586,6 @@
remark: '', remark: '',
bookRecordId: null bookRecordId: null
} }
},
} }
} }
</script> </script>
...@@ -1609,8 +1611,8 @@ ...@@ -1609,8 +1611,8 @@
width: 100%; width: 100%;
height: 550px; height: 550px;
display: block; display: block;
position:relative; position: relative;
bottom:55px; bottom: 55px;
} }
.el-card__body, .el-card { .el-card__body, .el-card {
......
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