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
.dialogs{
.el-dialog__header{
position: relative;
padding: 16px;
.el-dialog__title{
font-size: 16px;
line-height: 16px;
color: #383838;
}
&:after{
content: "";
width: calc(100% - 32px);
height: 1px;
left: 16px;
position: absolute;
bottom:0;
border-bottom: 1px solid #eee;
}
}
.el-dialog__body{
padding: 16px;
.el-form-item{
margin-bottom: 16px;
.el-form-item__label{
line-height: 32px;
}
.el-form-item__content{
.el-input__inner{
height: 32px;
line-height: 32px;
}
}
}
}
.el-dialog__footer{
padding: 16px;
position: relative;
&:before{
content: "";
display: inline-block;
width: calc(100% - 32px);
height: 1px;
position: absolute;
left: 16px;
top: 0;
background-color: #eee;
}
}
.addGoods{
.el-form-item{
.el-input{
width: 280px;
}
&.chargeInput{
.el-input{
width: 88px;
}
.unit{
margin-left: 10px;
}
}
}
}
}