<template>
|
<div style="padding:10px 0px">
|
<div class="duty-info-header">
|
<div class="workstation-div">
|
<i class="icon-workstation"></i>
|
<span style="margin-left:8px">ZYX-轧机004</span>
|
</div>
|
<div class="duty-day-div">
|
<i class="icon-duty-day"></i>
|
<span style="margin-left:8px">2021-04-12</span>
|
</div>
|
<div class="edit-duty-div">
|
<i class="icon-duty-edit"></i>
|
</div>
|
</div>
|
<div class="duty-info-content"></div>
|
</div>
|
</template>
|
<style lang="scss" scoped>
|
.duty-info-header {
|
display: flex;
|
height: 50px;
|
line-height: 50px;
|
position: relative;
|
}
|
.workstation-div {
|
padding-left: 18px;
|
width: 45%;
|
font-size: 18px;
|
color: #fff;
|
}
|
.duty-day-div {
|
padding-left: 18px;
|
width: 45%;
|
font-size: 18px;
|
color: #fff;
|
}
|
.edit-duty-div {
|
width: 10%;
|
}
|
.icon-duty-edit {
|
background: url('/img/workbench/icon_edit.png') center center no-repeat;
|
background-size: cover;
|
font-size: 16px !important;
|
height: 16px;
|
cursor: pointer;
|
position: absolute;
|
top: 2px;
|
right: 12px;
|
}
|
|
.icon-duty-edit:before {
|
content: '编';
|
font-size: 16px;
|
visibility: hidden;
|
}
|
.icon-workstation {
|
background: url('/img/workbench/icon_zj.png') center center no-repeat;
|
background-size: cover;
|
font-size: 20px !important;
|
}
|
.icon-workstation:before {
|
content: '机';
|
font-size: 20px;
|
visibility: hidden;
|
}
|
.icon-duty-day {
|
background: url('/img/workbench/icon_sj.png') center center no-repeat;
|
background-size: cover;
|
font-size: 20px !important;
|
}
|
.icon-duty-day:before {
|
content: '日';
|
font-size: 20px;
|
visibility: hidden;
|
}
|
.duty-info-content {
|
height: calc(100% - 50px);
|
}
|
</style>
|