zouyu
2023-11-17 d8ac6057eaad648687699e25a575f3b7b8c1b102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
<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>