bri-components 1.1.2 → 1.1.4
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/10.bri-components.min.js +1 -0
- 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/8.bri-components.min.js +1 -1
- package/lib/9.bri-components.min.js +1 -1
- package/lib/bri-components.min.js +6 -6
- package/lib/styles/bri-components.css +1 -1
- package/package.json +1 -1
- package/src/abolish/DshCascaders.less +11 -0
- package/src/{components/controls/base/DshCascaderMultiple.vue → abolish/DshCascaders.vue} +17 -27
- package/src/{components/list → abolish}/DshFlatTable.vue +1 -1
- package/src/abolish/DshTexts.less +13 -0
- package/src/{components/controls/base/textMultiple/DshTextMultiple.vue → abolish/DshTexts.vue} +17 -25
- package/src/components/controls/base/{textMultiple/MultipleInput.vue → BriInputs.vue} +18 -17
- package/src/components/controls/base/{ZUpload/YUploadImage.vue → BriUpload/BriUploadImage.vue} +56 -15
- package/src/components/controls/base/{ZUpload → BriUpload}/index.vue +24 -21
- package/src/components/controls/base/{ZUpload → BriUpload}/upload-list.vue +20 -13
- package/src/components/controls/base/{ZUpload → BriUpload}/uploadMixin.js +7 -3
- package/src/components/controls/base/{DshCascader.vue → DshCascader/DshCascader.vue} +33 -26
- package/src/components/controls/base/DshCheckbox.vue +17 -20
- package/src/components/controls/base/DshCoordinates.vue +119 -110
- package/src/components/controls/base/DshDate.vue +24 -37
- package/src/components/controls/base/DshDaterange.vue +3 -1
- package/src/components/controls/base/DshEditor.vue +73 -60
- package/src/components/controls/base/DshInput.vue +72 -60
- package/src/components/controls/base/DshNumber/BriInputNumber/BriInputNumber.vue +1 -1
- package/src/components/controls/base/DshNumber/DshNumber.vue +52 -48
- package/src/components/controls/base/DshNumberange.vue +11 -21
- package/src/components/controls/base/DshSelect.vue +13 -17
- package/src/components/controls/controlMap.js +12 -11
- package/src/components/controls/controlMixin.js +40 -29
- package/src/components/controls/controlShow.vue +44 -0
- package/src/components/controls/{base → senior}/BriLabels.vue +7 -12
- package/src/components/controls/{base → senior}/DshPackage.vue +6 -25
- package/src/components/controls/senior/cascaderTable.vue +52 -51
- package/src/components/controls/senior/flatTable.vue +20 -17
- package/src/components/controls/{base → special}/DshBack.vue +4 -4
- package/src/components/controls/{base → special}/DshUndeveloped.vue +3 -1
- package/src/components/form/DshAdvSearchForm.vue +10 -1
- package/src/components/form/DshForm.vue +10 -3
- package/src/components/list/BriFlatTable.vue +5 -5
- package/src/components/list/BriTable.vue +6 -8
- package/src/components/list/DshBox/DshBox.vue +7 -24
- package/src/components/list/DshBox/DshCard.vue +15 -74
- package/src/components/list/DshBox/DshCrossTable.vue +4 -8
- package/src/components/list/DshBox/DshList.vue +8 -136
- package/src/components/list/DshBox/DshPanel.vue +0 -110
- package/src/components/list/DshBox/DshTable.vue +1 -4
- package/src/components/list/DshCascaderTable.vue +1 -1
- package/src/components/list/ZTree.vue +0 -58
- package/src/components/other/ZIframe.vue +5 -0
- package/src/components/small/DshControlDefine.vue +6 -2
- package/src/components/small/DshModal.vue +0 -134
- package/src/components/small/DshPage.vue +1 -0
- package/src/components/unit/DshFormItem.vue +7 -10
- package/src/components/unit/DshUnit.vue +1 -11
- package/src/components/unit/unitMixin.js +8 -5
- package/src/index.js +16 -33
- package/src/styles/common/control.less +63 -27
- package/src/styles/components/controls/{MultipleInput.less → BriInputs.less} +1 -1
- package/src/styles/components/controls/BriLabels.less +4 -2
- package/src/styles/components/controls/{ZUpload.less → BriUpload.less} +5 -6
- package/src/styles/components/controls/DshCheckbox.less +45 -42
- package/src/styles/components/controls/DshCoordinates.less +66 -59
- package/src/styles/components/controls/DshDate.less +1 -52
- package/src/styles/components/controls/DshEditor.less +51 -34
- package/src/styles/components/controls/DshInput.less +13 -34
- package/src/styles/components/controls/DshNumber.less +51 -0
- package/src/styles/components/controls/DshNumberange.less +8 -3
- package/src/styles/components/controls/DshSelect.less +78 -92
- package/src/styles/components/{other → controls}/InfoCascader.less +4 -4
- package/src/styles/components/controls/cascaderTable.less +10 -24
- package/src/styles/components/controls/controlShow.less +3 -1
- package/src/styles/components/controls/flatTable.less +10 -23
- package/src/styles/components/form/DshAdvSearchForm.less +0 -9
- package/src/styles/components/form/DshDefaultSearch.less +0 -20
- package/src/styles/components/index.less +24 -17
- package/src/styles/components/list/DshBox/DshBox.less +20 -0
- package/src/styles/components/list/DshBox/DshCard.less +59 -0
- package/src/styles/components/list/DshBox/DshList.less +142 -0
- package/src/styles/components/list/DshBox/DshPanel.less +107 -0
- package/src/styles/components/list/DshBox/DshTable.less +4 -0
- package/src/styles/components/list/ZTree.less +52 -0
- package/src/styles/components/small/DshControlDefine.less +4 -7
- package/src/styles/components/small/DshDropdown.less +1 -0
- package/src/styles/components/small/DshModal.less +207 -0
- package/src/styles/components/unit/DshFormItem.less +2 -0
- package/src/styles/reset.less +14 -0
- package/src/styles/variables.less +1 -0
- package/src/utils/table.js +5 -4
- package/src/components/controls/base/DshLabels.vue +0 -309
- package/src/components/controls/base/YSerialNumber.vue +0 -36
- package/src/components/controls/base/controlShow.vue +0 -52
- package/src/components/list/easyTable/index.js +0 -23
- package/src/components/list/easyTable/src/directives/clickoutside.js +0 -32
- package/src/components/list/easyTable/src/mixins/layerAdjustment.js +0 -62
- package/src/components/list/easyTable/src/settings/settings.js +0 -11
- package/src/components/list/easyTable/src/utils/deepClone.js +0 -256
- package/src/components/list/easyTable/src/utils/dom.js +0 -41
- package/src/components/list/easyTable/src/utils/utils.js +0 -190
- package/src/components/list/easyTable/v-checkbox/index.js +0 -7
- package/src/components/list/easyTable/v-checkbox/src/checkbox.vue +0 -127
- package/src/components/list/easyTable/v-checkbox-group/index.js +0 -7
- package/src/components/list/easyTable/v-checkbox-group/src/checkbox-group.vue +0 -68
- package/src/components/list/easyTable/v-dropdown/index.js +0 -7
- package/src/components/list/easyTable/v-dropdown/src/dropdown.vue +0 -337
- package/src/components/list/easyTable/v-table/index.js +0 -7
- package/src/components/list/easyTable/v-table/src/body-cell-merge-mixin.js +0 -141
- package/src/components/list/easyTable/v-table/src/cell-edit-mixin.js +0 -102
- package/src/components/list/easyTable/v-table/src/checkbox-selection-mixin.js +0 -189
- package/src/components/list/easyTable/v-table/src/classes-mixin.js +0 -56
- package/src/components/list/easyTable/v-table/src/drag-width-mixin.js +0 -202
- package/src/components/list/easyTable/v-table/src/export-csv.js +0 -74
- package/src/components/list/easyTable/v-table/src/frozen-columns-mixin.js +0 -134
- package/src/components/list/easyTable/v-table/src/loading.vue +0 -49
- package/src/components/list/easyTable/v-table/src/scroll-bar-control-mixin.js +0 -21
- package/src/components/list/easyTable/v-table/src/scroll-control-mixin.js +0 -92
- package/src/components/list/easyTable/v-table/src/sort-control-mixin.js +0 -108
- package/src/components/list/easyTable/v-table/src/table-empty-mixin.js +0 -73
- package/src/components/list/easyTable/v-table/src/table-empty.vue +0 -66
- package/src/components/list/easyTable/v-table/src/table-filters-mixin.js +0 -126
- package/src/components/list/easyTable/v-table/src/table-footer-mixin.js +0 -122
- package/src/components/list/easyTable/v-table/src/table-resize-mixin.js +0 -279
- package/src/components/list/easyTable/v-table/src/table-row-mouse-events-mixin.js +0 -123
- package/src/components/list/easyTable/v-table/src/table.vue +0 -1565
- package/src/components/list/easyTable/v-table/src/title-cell-merge-mixin.js +0 -115
- package/src/components/list/evTable/EvTable.vue +0 -321
- package/src/components/list/evTable/EvTableMixin.js +0 -26
- package/src/styles/components/controls/DshLabels.less +0 -187
- package/src/styles/components/list/evTable.less +0 -79
- package/src/styles/components/list/evtable/animation.less +0 -141
- package/src/styles/components/list/evtable/font/fontello.eot +0 -0
- package/src/styles/components/list/evtable/font/fontello.svg +0 -32
- package/src/styles/components/list/evtable/font/fontello.ttf +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff +0 -0
- package/src/styles/components/list/evtable/font/fontello.woff2 +0 -0
- package/src/styles/components/list/evtable/fontello.less +0 -68
- package/src/styles/components/list/evtable/index.less +0 -5
- package/src/styles/components/list/evtable/v-checkbox.less +0 -167
- package/src/styles/components/list/evtable/v-dropdown.less +0 -235
- package/src/styles/components/list/evtable/v-table.less +0 -334
- package/src/styles/components/list/ivu_reset.less +0 -49
- /package/src/{styles/components/list → abolish}/DshFlatTable.less +0 -0
- /package/src/components/{pages/Error → Error}/Error403.vue +0 -0
- /package/src/components/{pages/Error → Error}/Error404.vue +0 -0
- /package/src/components/{pages/Error → Error}/Error500.vue +0 -0
- /package/src/components/{pages/Error → Error}/error.less +0 -0
- /package/src/components/{pages/Error → Error}/errorBack.vue +0 -0
- /package/src/components/controls/base/{ZUpload → BriUpload}/upload-listItem.vue +0 -0
- /package/src/components/{other → controls/base/DshCascader}/InfoCascader.vue +0 -0
- /package/src/styles/components/list/{DshCrossTable.less → DshBox/DshCrossTable.less} +0 -0
- /package/src/styles/components/list/{DshSingleData.less → DshBox/DshSingleData.less} +0 -0
|
@@ -1,33 +1,20 @@
|
|
|
1
1
|
.flatTable {
|
|
2
2
|
width: 100%;
|
|
3
|
+
|
|
3
4
|
&-unit {
|
|
4
|
-
.unit-show()
|
|
5
|
+
.unit-show();
|
|
6
|
+
|
|
7
|
+
&-text {
|
|
8
|
+
|
|
9
|
+
}
|
|
5
10
|
}
|
|
11
|
+
|
|
6
12
|
&-btns {
|
|
7
13
|
text-align: right;
|
|
8
14
|
color: @textColor;
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
overflow:hidden;
|
|
13
|
-
&-icon {
|
|
14
|
-
font-size: 18px;
|
|
15
|
-
color: @themeColor;
|
|
16
|
-
}
|
|
17
|
-
&-outspan {
|
|
18
|
-
display: inline-block;
|
|
19
|
-
height: 24px;
|
|
20
|
-
line-height: 24px;
|
|
21
|
-
padding: 0 5px;
|
|
22
|
-
margin: auto;
|
|
23
|
-
background: rgba(96, 144, 237, 0.15);
|
|
24
|
-
border-radius: 12px;
|
|
25
|
-
text-align: center;
|
|
26
|
-
color: @themeColor;
|
|
27
|
-
}
|
|
28
|
-
&-innerspan {
|
|
29
|
-
font-size: 14px;
|
|
30
|
-
color: @themeColor;
|
|
15
|
+
|
|
16
|
+
&-item {
|
|
17
|
+
|
|
31
18
|
}
|
|
32
19
|
}
|
|
33
20
|
}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
.DshDefaultSearch {
|
|
2
2
|
position: relative;
|
|
3
3
|
|
|
4
|
-
// .ivu-input {
|
|
5
|
-
// border-radius: 0;
|
|
6
|
-
// }
|
|
7
|
-
|
|
8
|
-
// .DshLabels-show {
|
|
9
|
-
// border-radius: 0;
|
|
10
|
-
// }
|
|
11
|
-
|
|
12
4
|
&-item {
|
|
13
5
|
padding: 0 !important;
|
|
14
6
|
padding-bottom: 6px !important;
|
|
@@ -17,18 +9,6 @@
|
|
|
17
9
|
margin-bottom: 0px !important;
|
|
18
10
|
|
|
19
11
|
&-name {}
|
|
20
|
-
|
|
21
|
-
&.DshFormItem-labels {
|
|
22
|
-
.DshLabels {
|
|
23
|
-
position: static;
|
|
24
|
-
width: 100%;
|
|
25
|
-
padding: 0;
|
|
26
|
-
|
|
27
|
-
&-searchResult {
|
|
28
|
-
position: fixed;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
12
|
}
|
|
33
13
|
|
|
34
14
|
&-form {
|
|
@@ -1,36 +1,43 @@
|
|
|
1
1
|
// controls
|
|
2
|
-
@import "./controls/DshCheckbox.less";
|
|
3
|
-
@import "./controls/DshCoordinates.less";
|
|
4
|
-
@import "./controls/DshDaterange.less";
|
|
5
|
-
@import "./controls/DshDivider.less";
|
|
6
2
|
@import "./controls/DshInput.less";
|
|
3
|
+
@import "./controls/BriInputs.less";
|
|
4
|
+
@import "./controls/DshNumber.less";
|
|
7
5
|
@import "./controls/DshNumberange.less";
|
|
6
|
+
@import "./controls/DshCheckbox.less";
|
|
8
7
|
@import "./controls/DshSelect.less";
|
|
9
|
-
@import "./controls/
|
|
8
|
+
@import "./controls/DshDate.less";
|
|
9
|
+
@import "./controls/DshDaterange.less";
|
|
10
10
|
@import "./controls/DshCascader.less";
|
|
11
|
+
@import "./controls/InfoCascader.less";
|
|
12
|
+
@import "./controls/DshCoordinates.less";
|
|
11
13
|
@import "./controls/DshEditor.less";
|
|
12
|
-
@import "./controls/
|
|
13
|
-
|
|
14
|
-
@import "./controls/
|
|
15
|
-
@import "./controls/DshPackage.less";
|
|
14
|
+
@import "./controls/DshDivider.less";
|
|
15
|
+
|
|
16
|
+
@import "./controls/BriUpload.less";
|
|
16
17
|
@import "./controls/flatTable.less";
|
|
17
18
|
@import "./controls/cascaderTable.less";
|
|
19
|
+
@import "./controls/BriLabels.less";
|
|
20
|
+
@import "./controls/DshPackage.less";
|
|
21
|
+
|
|
18
22
|
@import "./controls/controlShow.less";
|
|
19
|
-
@import "./controls/DshDate.less";
|
|
20
23
|
|
|
21
24
|
// form
|
|
22
25
|
@import "./form/DshAdvSearchForm.less";
|
|
23
26
|
@import "./form/DshDefaultSearch.less";
|
|
24
27
|
|
|
25
28
|
// list
|
|
26
|
-
@import "./list/
|
|
27
|
-
@import "./list/
|
|
28
|
-
|
|
29
|
-
@import "./list/
|
|
30
|
-
@import "./list/
|
|
31
|
-
@import "./list/
|
|
29
|
+
@import "./list/DshBox/DshBox.less";
|
|
30
|
+
@import "./list/DshBox/DshTable.less";
|
|
31
|
+
@import "./list/DshBox/DshCrossTable.less";
|
|
32
|
+
@import "./list/DshBox/DshCard.less";
|
|
33
|
+
@import "./list/DshBox/DshPanel.less";
|
|
34
|
+
@import "./list/DshBox/DshSingleData.less";
|
|
35
|
+
@import "./list/DshBox/DshList.less";
|
|
36
|
+
|
|
32
37
|
@import "./list/BriTable.less";
|
|
33
38
|
@import "./list/BriFlatTable.less";
|
|
39
|
+
@import "./list/DshCascaderTable.less";
|
|
40
|
+
@import "./list/ZTree.less";
|
|
34
41
|
|
|
35
42
|
// other
|
|
36
43
|
@import "./other/DshEditPanel.less";
|
|
@@ -39,7 +46,6 @@
|
|
|
39
46
|
@import "./other/ZCode.less";
|
|
40
47
|
@import "./other/ZCollapseTree.less";
|
|
41
48
|
@import "./other/ZGantt.less";
|
|
42
|
-
@import "./other/InfoCascader.less";
|
|
43
49
|
@import "./other/ZLoading.less";
|
|
44
50
|
@import "./other/BriTransfer.less";
|
|
45
51
|
|
|
@@ -54,6 +60,7 @@
|
|
|
54
60
|
@import "./small/DshControlDefine.less";
|
|
55
61
|
@import "./small/BriButton.less";
|
|
56
62
|
@import "./small/BriDrawer.less";
|
|
63
|
+
@import "./small/DshModal.less";
|
|
57
64
|
|
|
58
65
|
// unit
|
|
59
66
|
@import "./unit/DshFormItem.less";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.DshBox {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
|
|
7
|
+
&-list {
|
|
8
|
+
width: 100%;
|
|
9
|
+
flex: 1;
|
|
10
|
+
min-height: 60px;
|
|
11
|
+
margin-bottom: 10px;
|
|
12
|
+
background: #fff;
|
|
13
|
+
overflow: auto;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&-page {
|
|
17
|
+
width: 100%;
|
|
18
|
+
height: 30px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.DshCard {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
background-color: #ffffff;
|
|
5
|
+
padding: 0 40px;
|
|
6
|
+
|
|
7
|
+
&-item {
|
|
8
|
+
width: 250px;
|
|
9
|
+
height: 210px;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
margin: 10px 16px 30px;
|
|
12
|
+
border-radius: 6px;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
box-shadow: 0px 4px 8px 0px rgba(222, 222, 222, 0.75);
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
position: relative;
|
|
19
|
+
|
|
20
|
+
&-dropdown {
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: 5px;
|
|
23
|
+
right: 5px;
|
|
24
|
+
}
|
|
25
|
+
&-image {
|
|
26
|
+
padding-top: 20px;
|
|
27
|
+
height: 122px;
|
|
28
|
+
}
|
|
29
|
+
&-info {
|
|
30
|
+
flex: 1;
|
|
31
|
+
padding: 8px 15px;
|
|
32
|
+
overflow: hidden;
|
|
33
|
+
background: #F7FBFF;
|
|
34
|
+
&-title {
|
|
35
|
+
font-size: 14px;
|
|
36
|
+
font-weight: 600;
|
|
37
|
+
}
|
|
38
|
+
&-col {
|
|
39
|
+
height: 24px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.unit {
|
|
43
|
+
display: flex;
|
|
44
|
+
flex-direction: row;
|
|
45
|
+
&-label {
|
|
46
|
+
max-width: 60px;
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
color: #515A6E;
|
|
49
|
+
}
|
|
50
|
+
&-colon {
|
|
51
|
+
|
|
52
|
+
}
|
|
53
|
+
&-value {
|
|
54
|
+
flex: 1;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
.DshList {
|
|
2
|
+
@height:44px;
|
|
3
|
+
|
|
4
|
+
.list {
|
|
5
|
+
&-loading {
|
|
6
|
+
min-height: 100px;
|
|
7
|
+
|
|
8
|
+
&-wrap {
|
|
9
|
+
display: block;
|
|
10
|
+
height: 100%;
|
|
11
|
+
width: 100%;
|
|
12
|
+
background-color: #fff;
|
|
13
|
+
z-index: 99999;
|
|
14
|
+
position: relative;
|
|
15
|
+
opacity: 0.6;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&-content {
|
|
19
|
+
z-index: 9999999;
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 30px;
|
|
22
|
+
left: 50%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&-icon {
|
|
26
|
+
-moz-animation: spin 2.3s infinite linear;
|
|
27
|
+
-o-animation: spin 2.3s infinite linear;
|
|
28
|
+
-webkit-animation: spin 2.3s infinite linear;
|
|
29
|
+
animation: spin 2.3s infinite linear;
|
|
30
|
+
display: inline-block;
|
|
31
|
+
font-size: 28px;
|
|
32
|
+
opacity:0.6;
|
|
33
|
+
|
|
34
|
+
&:before {
|
|
35
|
+
content: '\e838';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&-cols,
|
|
41
|
+
&-rows {
|
|
42
|
+
position: relative;
|
|
43
|
+
&-left {
|
|
44
|
+
width: 48px;
|
|
45
|
+
text-align: center;
|
|
46
|
+
position: absolute;
|
|
47
|
+
left: 0;
|
|
48
|
+
top: 0;
|
|
49
|
+
label {
|
|
50
|
+
display: inline-block;
|
|
51
|
+
height: 36px;
|
|
52
|
+
padding: 9px 5px;
|
|
53
|
+
margin: 0px;
|
|
54
|
+
line-height: 18px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.row {
|
|
59
|
+
width: 100%;
|
|
60
|
+
line-height: 20px;
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: space-between;
|
|
63
|
+
&-item {
|
|
64
|
+
min-width: 120px;
|
|
65
|
+
height: 100%;
|
|
66
|
+
padding: 0 16px;
|
|
67
|
+
font-size: 14px;
|
|
68
|
+
align-items: center;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&-cols {
|
|
74
|
+
height: @height;
|
|
75
|
+
background: #f0f0f0;
|
|
76
|
+
&-left {}
|
|
77
|
+
&-right {}
|
|
78
|
+
|
|
79
|
+
.row {
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
&-item {
|
|
82
|
+
padding: 10px 16px;
|
|
83
|
+
border-top: 1px #e5e5e5 solid;
|
|
84
|
+
border-bottom: 1px #f0f0f0 solid;
|
|
85
|
+
border-left: 1px #e5e5e5 solid;
|
|
86
|
+
|
|
87
|
+
&:last-child{
|
|
88
|
+
border-right: 1px #e5e5e5 solid;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&-inner {
|
|
92
|
+
.dsh-ellipsis{
|
|
93
|
+
font-size: 14px;
|
|
94
|
+
color: #666;
|
|
95
|
+
font-weight: 700;
|
|
96
|
+
line-height: 24px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&-rows {
|
|
104
|
+
&-left {
|
|
105
|
+
label {
|
|
106
|
+
height: 44px;
|
|
107
|
+
line-height: 20px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
&-right {}
|
|
111
|
+
|
|
112
|
+
.row {
|
|
113
|
+
height: 44px;
|
|
114
|
+
line-height: 20px;
|
|
115
|
+
|
|
116
|
+
cursor: pointer;
|
|
117
|
+
&-item {
|
|
118
|
+
display: flex;
|
|
119
|
+
border: 1px solid #E5E5E5;
|
|
120
|
+
border-width: 0 0 1px 1px;
|
|
121
|
+
|
|
122
|
+
&:last-child{
|
|
123
|
+
border-width: 0 1px 1px 1px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&-inner {
|
|
127
|
+
width: 100%;
|
|
128
|
+
font-size: 14px;
|
|
129
|
+
color: #333;
|
|
130
|
+
font-weight: 400;
|
|
131
|
+
line-height: 24px;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&-noData {
|
|
138
|
+
padding: 10px 0px;
|
|
139
|
+
text-align: center;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
.DshPanel {
|
|
2
|
+
min-width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: row;
|
|
6
|
+
|
|
7
|
+
&-group {
|
|
8
|
+
width: 300px;
|
|
9
|
+
min-width: 300px;
|
|
10
|
+
max-width: 300px;
|
|
11
|
+
height: 100%;
|
|
12
|
+
padding: 10px;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
|
|
17
|
+
&-title {
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 50px;
|
|
20
|
+
padding: 15px 10px;
|
|
21
|
+
display: flex;
|
|
22
|
+
border-radius: 10px 10px 0px 0px;
|
|
23
|
+
font-size: 14px;
|
|
24
|
+
|
|
25
|
+
&-name {
|
|
26
|
+
max-width: 120px;
|
|
27
|
+
}
|
|
28
|
+
&-number {
|
|
29
|
+
font-weight: bold;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&-list {
|
|
34
|
+
width: 100%;
|
|
35
|
+
flex: 1;
|
|
36
|
+
min-height: 0px;
|
|
37
|
+
border: 1px dashed #cccccc;
|
|
38
|
+
border-top: none;
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
|
|
42
|
+
.list-drag {
|
|
43
|
+
width: 100%;
|
|
44
|
+
flex: 1;
|
|
45
|
+
min-height: 0px;
|
|
46
|
+
|
|
47
|
+
&-transition {
|
|
48
|
+
display: block;
|
|
49
|
+
width: 100%;
|
|
50
|
+
height: 100%;
|
|
51
|
+
padding: 10px;
|
|
52
|
+
overflow: auto;
|
|
53
|
+
|
|
54
|
+
.item {
|
|
55
|
+
height: 60px;
|
|
56
|
+
padding: 10px 17px;
|
|
57
|
+
margin-bottom: 10px;
|
|
58
|
+
border: 1px solid rgba(102, 110, 126, 0.1);
|
|
59
|
+
border-radius: 4px;
|
|
60
|
+
background: #FFFFFF;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
position: relative;
|
|
63
|
+
|
|
64
|
+
&-dropdown {
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 5px;
|
|
67
|
+
right: 5px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&-title {
|
|
71
|
+
width: calc(100% - 22px);
|
|
72
|
+
margin-bottom: 2px;
|
|
73
|
+
font-family: Source Han Sans CN;
|
|
74
|
+
font-size: 14px;
|
|
75
|
+
font-weight: 500;
|
|
76
|
+
color: #515A6E;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&-cols {}
|
|
80
|
+
|
|
81
|
+
.unit {
|
|
82
|
+
display: flex;
|
|
83
|
+
flex-direction: row;
|
|
84
|
+
color: #515A6E;
|
|
85
|
+
&-label {
|
|
86
|
+
max-width: 60px;
|
|
87
|
+
}
|
|
88
|
+
&-colon {
|
|
89
|
+
|
|
90
|
+
}
|
|
91
|
+
&-value {
|
|
92
|
+
flex: 1;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.list-btns {
|
|
100
|
+
width: 100%;
|
|
101
|
+
height: 40px;
|
|
102
|
+
padding: 0px 10px;
|
|
103
|
+
text-align: center;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
.ZTree {
|
|
2
|
+
max-width: 1200px;
|
|
3
|
+
min-width: 720px;
|
|
4
|
+
height: 100%;
|
|
5
|
+
margin: 0px auto;
|
|
6
|
+
background: #fff;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
|
|
10
|
+
&-action {
|
|
11
|
+
padding: 10px;
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: flex-end;
|
|
14
|
+
|
|
15
|
+
&-create {
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: row;
|
|
18
|
+
align-items: center;
|
|
19
|
+
|
|
20
|
+
.ivu-icon {
|
|
21
|
+
font-size: 20px;
|
|
22
|
+
font-weight: bold;
|
|
23
|
+
margin-right: -10px;
|
|
24
|
+
vertical-align: middle;
|
|
25
|
+
transform: translate(0, -1px);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&-tree {
|
|
31
|
+
width: 100%;
|
|
32
|
+
flex: 1;
|
|
33
|
+
min-height: 0px;
|
|
34
|
+
overflow: auto;
|
|
35
|
+
|
|
36
|
+
.ivu-tree-title {
|
|
37
|
+
width: calc(100% - 18px);
|
|
38
|
+
}
|
|
39
|
+
.ivu-tree-arrow {
|
|
40
|
+
margin-top: 5px;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
&-dropdown-menu.DshColorPanel-list {
|
|
44
|
+
width: 242px!important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&-create-content {
|
|
48
|
+
.textRight {
|
|
49
|
+
text-align: right;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
&-multiplerow {
|
|
5
5
|
height: 70px;
|
|
6
|
-
|
|
7
6
|
.dsh-control-define-text {
|
|
7
|
+
overflow-y: auto;
|
|
8
8
|
.DshTags {
|
|
9
9
|
flex-wrap: wrap;
|
|
10
10
|
}
|
|
@@ -23,13 +23,10 @@
|
|
|
23
23
|
width: 100%;
|
|
24
24
|
height: 100%;
|
|
25
25
|
display: flex;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
overflow-x: auto;
|
|
26
|
+
padding: 2px 8px;
|
|
27
|
+
.bri-scrollbar3();
|
|
29
28
|
overflow-y: hidden;
|
|
30
|
-
|
|
31
|
-
.bri-scrollbar6();
|
|
32
|
-
|
|
29
|
+
|
|
33
30
|
.DshTags {
|
|
34
31
|
display: flex;
|
|
35
32
|
white-space: nowrap;
|