spring
2025-03-06 f2bc9fde40010ddb6fdbc4c36ee9fc0e83af8f03
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<style scoped>
.ins_order_add {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
 
.ins_order_add::-webkit-scrollbar {
  width: 0;
}
 
.title {
  height: 60px;
  line-height: 60px;
}
 
.search {
  width: calc(100% - 40px);
  background-color: #fff;
  padding: 5px 40px 5px 0;
}
 
.search_thing {
  display: flex;
  align-items: center;
  height: 50px;
}
 
.search_label {
  width: 120px;
  font-size: 14px;
  text-align: right;
}
 
.search_input {
  width: calc(100% - 120px);
}
 
.node_i {
  color: orange;
  font-size: 18px;
}
 
.el-select-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.pairing {
  text-align: center;
  line-height: 36px;
  margin: 3px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
 
.askRts {
  width: 100px;
  font-size: 12px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
  border-radius: 2px;
  line-height: 24px;
  margin-top: 5px;
}
.circulateTable {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.opticalProject {
  width: 38%;
}
.temperatureList {
  width: 60%;
}
.temperatureListTitle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 30px;
}
</style>
<style>
.ins_order_add .el-input-group__append,
.el-input-group__prepend {
  padding: 0 10px;
}
 
.ins_order_add .el-tree-node__content {
  height: 32px;
  font-size: 14px;
  border-radius: 2px;
}
 
.ins_order_add
  .el-tree--highlight-current
  .el-tree-node.is-current
  > .el-tree-node__content {
  color: #3a7bfa;
}
 
.ins_order_add .has-gutter .el-table__cell .cell {
  line-height: 30px;
  background-color: #fafafa;
}
 
.ins_order_add .has-gutter .el-table__cell {
  background-color: #fafafa !important;
}
 
.ins_order_add .el-table__row .cell {
  font-size: 12px;
}
 
.ins_order_add .el-table .warning-row .cell {
  color: #3a7bfa;
}
 
.ins_order_add .el-select .is-disabled {
  background: transparent !important;
}
 
.ins_order_add .el-select .is-disabled .el-input__inner {
  background: transparent !important;
}
</style>
 
<template>
  <div>add</div>
</template>
 
<script>
export default {};
</script>