imatrix-ui 2.8.5-tmp4 → 2.8.5-tmp6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imatrix-ui",
3
- "version": "2.8.5-tmp4",
3
+ "version": "2.8.5-tmp6",
4
4
  "description": "前端组件库:表格、表单、组织结构树等",
5
5
  "main": "lib/super-ui.umd.min.js",
6
6
  "private": false,
@@ -73,4 +73,48 @@ body .el-table colgroup.gutter {
73
73
 
74
74
  .formContent .el-form-item {
75
75
  margin-bottom: 0;
76
+ }
77
+
78
+ .operation-area,.grid-search-form .search-button,.grid-area .grid-operation-buttons {
79
+ .el-button:not(:first-child){
80
+ margin-left: 10px;
81
+ }
82
+ }
83
+
84
+ .button-at-top {
85
+ width: 100%;
86
+ background: rgb(255, 255, 255);
87
+ line-height: 72px;
88
+ height: 72px;
89
+ position: absolute;
90
+ z-index: 100;
91
+ top: 0px;
92
+ left: 0px;
93
+ right: 0px;
94
+ }
95
+
96
+ .button-at-bottom {
97
+ width: 100%;
98
+ background: rgb(255, 255, 255);
99
+ line-height: 72px;
100
+ height: 72px;
101
+ position: absolute;
102
+ bottom: 0px;
103
+ z-index: 100;
104
+ left: 0px;
105
+ right: 0px;
106
+ }
107
+
108
+ .form-top-button {
109
+ height: 72px;
110
+ float: left;
111
+ padding-left: 24px;
112
+ line-height: 72px;
113
+ }
114
+
115
+ .form-bottom-button {
116
+ height: 72px;
117
+ float: right;
118
+ padding-right: 24px;
119
+ line-height: 72px;
76
120
  }
@@ -113,7 +113,7 @@
113
113
 
114
114
 
115
115
  .form-container {
116
- height: calc(100vh - 82px);
116
+ height: calc(100vh - 100px);
117
117
  overflow: auto;
118
118
  }
119
119
 
@@ -3,7 +3,6 @@
3
3
  @import './card-style.scss';
4
4
  @import './tab-style.scss';
5
5
  @import './input-style.scss';
6
- @import './form-style.scss';
7
6
  @import './scrollbar-style.scss';
8
7
 
9
8
  .gray {
@@ -39,7 +39,6 @@ export default {
39
39
  }
40
40
 
41
41
  if (title) {
42
- debugger
43
42
  let width = '130px'
44
43
  if (hasChildren) {
45
44
  // 当是父菜单时,为了使后面的三角能显示出来,需要将宽度设小点
@@ -58,7 +58,6 @@ export default {
58
58
  }
59
59
  },
60
60
  created() {
61
- debugger
62
61
  // 登录超时,给父iframe发送信号
63
62
  window.addEventListener('message', this.recieveMessage)
64
63
  },
@@ -1,41 +0,0 @@
1
- .gray {
2
-
3
- .button-at-top {
4
- width: 100%;
5
- background: rgb(255, 255, 255);
6
- line-height: 72px;
7
- height: 72px;
8
- position: absolute;
9
- z-index: 100;
10
- top: 0px;
11
- left: 0px;
12
- right: 0px;
13
- }
14
-
15
- .button-at-bottom {
16
- width: 100%;
17
- background: rgb(255, 255, 255);
18
- line-height: 72px;
19
- height: 72px;
20
- position: absolute;
21
- bottom: 0px;
22
- z-index: 100;
23
- left: 0px;
24
- right: 0px;
25
- }
26
-
27
- .form-top-button {
28
- height: 72px;
29
- float: left;
30
- padding-left: 24px;
31
- line-height: 72px;
32
- }
33
-
34
- .form-bottom-button {
35
- height: 72px;
36
- float: right;
37
- padding-right: 24px;
38
- line-height: 72px;
39
- }
40
-
41
- }