bri-components 1.2.8 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/0.bri-components.min.js +1 -1
- package/lib/1.bri-components.min.js +1 -1
- package/lib/2.bri-components.min.js +1 -1
- package/lib/3.bri-components.min.js +1 -1
- package/lib/4.bri-components.min.js +1 -1
- package/lib/5.bri-components.min.js +1 -1
- package/lib/6.bri-components.min.js +1 -1
- package/lib/7.bri-components.min.js +1 -1
- package/lib/bri-components.min.js +7 -7
- package/package.json +1 -1
- package/src/components/controls/BriControlInput.vue +23 -0
- package/src/components/controls/base/BriInputs.vue +1 -0
- package/src/components/controls/base/DshCheckbox.vue +15 -1
- package/src/components/controls/base/DshCoordinates.vue +163 -147
- package/src/components/controls/base/DshSelect.vue +21 -4
- package/src/components/list/BriFlatTable.vue +9 -4
- package/src/components/list/DshBox/DshTable.vue +0 -1
- package/src/styles/components/controls/BriControlInput.less +3 -0
- package/src/styles/components/controls/base/DshCheckbox.less +1 -1
- package/src/styles/components/controls/base/DshCoordinates.less +38 -17
- package/src/styles/components/list/BriFlatTable.less +57 -1
- package/src/styles/components/list/BriTable.less +3 -0
|
@@ -2,32 +2,46 @@
|
|
|
2
2
|
width: 100%;
|
|
3
3
|
|
|
4
4
|
&-edit {
|
|
5
|
-
#bri-control-wrap
|
|
5
|
+
#bri-control-wrap();
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&-show {
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&-unit {
|
|
13
|
+
|
|
6
14
|
}
|
|
7
15
|
|
|
8
16
|
&-modal {
|
|
9
17
|
&-header {
|
|
10
18
|
padding: 5px 0px;
|
|
11
19
|
|
|
12
|
-
.
|
|
13
|
-
&-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
+
.header {
|
|
21
|
+
&-edit {
|
|
22
|
+
&-message {
|
|
23
|
+
position: absolute;
|
|
24
|
+
color: red;
|
|
25
|
+
font-size: 12px;
|
|
26
|
+
bottom: -16px;
|
|
27
|
+
left: 0px;
|
|
28
|
+
}
|
|
20
29
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
30
|
+
&-text {
|
|
31
|
+
font-size: @textSize;
|
|
32
|
+
line-height: 18px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&-row {
|
|
36
|
+
margin-top: 5px;
|
|
37
|
+
}
|
|
24
38
|
}
|
|
25
|
-
}
|
|
26
39
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
40
|
+
&-show {
|
|
41
|
+
&-text {
|
|
42
|
+
text-align: right;
|
|
43
|
+
.dsh-padding-top10();
|
|
44
|
+
}
|
|
31
45
|
}
|
|
32
46
|
}
|
|
33
47
|
}
|
|
@@ -36,6 +50,13 @@
|
|
|
36
50
|
width: 100%;
|
|
37
51
|
height: 100%;
|
|
38
52
|
}
|
|
53
|
+
|
|
54
|
+
&-lnglat {
|
|
55
|
+
padding: 5px 10px;
|
|
56
|
+
background:#fff;
|
|
57
|
+
display: none;
|
|
58
|
+
position:absolute;
|
|
59
|
+
}
|
|
39
60
|
|
|
40
61
|
.ivu-modal-content {
|
|
41
62
|
overflow: hidden;
|
|
@@ -1,7 +1,63 @@
|
|
|
1
1
|
.BriFlatTable {
|
|
2
|
-
|
|
2
|
+
&-main {
|
|
3
3
|
height: auto;
|
|
4
|
+
|
|
5
|
+
.table {
|
|
6
|
+
width: 100%;
|
|
7
|
+
border-spacing: 0;
|
|
8
|
+
border-collapse: collapse;
|
|
9
|
+
border-color: #E5E5E5;
|
|
10
|
+
background-color: #fff;
|
|
11
|
+
|
|
12
|
+
&-head {
|
|
13
|
+
background-color: #f0f0f0;
|
|
14
|
+
color: #666;
|
|
15
|
+
|
|
16
|
+
&-description {
|
|
17
|
+
color: #828499;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&-row {
|
|
22
|
+
height: 50px;
|
|
23
|
+
|
|
24
|
+
&:hover {
|
|
25
|
+
.table-row-td-add {
|
|
26
|
+
display: inline-block;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&-td {
|
|
31
|
+
position: relative;
|
|
32
|
+
|
|
33
|
+
.td-inner {
|
|
34
|
+
&-compare {
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&-tip {
|
|
40
|
+
padding: 2px 5px 0px 10px;
|
|
41
|
+
font-size: 12px;
|
|
42
|
+
line-height: 1;
|
|
43
|
+
color: #ed4014;
|
|
44
|
+
position: absolute;
|
|
45
|
+
top: calc(100% - 18px);
|
|
46
|
+
left: 20px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&-add {
|
|
50
|
+
line-height: 20px;
|
|
51
|
+
position: absolute;
|
|
52
|
+
bottom: 0px;
|
|
53
|
+
right: 0px;
|
|
54
|
+
display: none;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
4
59
|
}
|
|
60
|
+
|
|
5
61
|
&-create {
|
|
6
62
|
margin-top: 8px;
|
|
7
63
|
}
|