We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c35608 commit fb2e803Copy full SHA for fb2e803
ant.mgr/mgr.core/Areas/Admin/Views/Role/RoleAction.cshtml
@@ -6,6 +6,10 @@
6
7
8
<style>
9
+ body{
10
+ min-width: 800px;
11
+ overflow-x: auto;
12
+ }
13
.top {
14
position: fixed;
15
top: 50%;
@@ -40,6 +44,7 @@
40
44
height: 80%;
41
45
overflow: auto;
42
46
padding-top: 250px;
47
+ text-align: center;
43
48
}
49
</style>
50
@@ -105,6 +110,11 @@
105
110
},
106
111
ready: function () {
107
112
auth();
113
+
114
+ //设置tree的初始化高度
115
+ $('.left').css('height',$(window).height());
116
+ $('.right').css('height',$(window).height());
117
108
118
//获取总的数据
109
119
QQT.ajax('/Admin/Home/GetMenuActionTree', 'Post', {})
120
.done(function (response) {
0 commit comments