Browse Source

commit

master
hhx 3 years ago
parent
commit
1a1bf31b68
  1. BIN
      04.系统编码/.vs/BeijingSafeguard/v15/.suo
  2. BIN
      04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal
  3. 4
      04.系统编码/App/Content/scripts/system-management/config-management/index.js
  4. 2
      04.系统编码/App/Content/scripts/system-management/org-management/index.js
  5. 2
      04.系统编码/App/Content/scripts/system-management/statistic-analysis/index.js
  6. 6
      04.系统编码/App/Content/scripts/system-management/user-management/index.js
  7. 11
      04.系统编码/App/Content/styles/common.css
  8. 2
      04.系统编码/App/Views/ConfigManagement/Index.cshtml
  9. 2
      04.系统编码/App/Views/OrgManagement/Index.cshtml
  10. 2
      04.系统编码/App/Views/StatisticAnalysis/Index.cshtml
  11. 2
      04.系统编码/App/Views/UserManagement/Index.cshtml

BIN
04.系统编码/.vs/BeijingSafeguard/v15/.suo

Binary file not shown.

BIN
04.系统编码/.vs/BeijingSafeguard/v15/Server/sqlite3/storage.ide-wal

Binary file not shown.

4
04.系统编码/App/Content/scripts/system-management/config-management/index.js

@ -45,7 +45,11 @@
scrollbarSize: 0,
onSelect: this.OnTaskSelected.bind(this),
onUnselect: this.OnTaskUnselected.bind(this),
onBeforeLoad: function () {
$('.data-loading').show();
},
onLoadSuccess: function (data) {
$('.data-loading').hide();
if (data.total === 0) {
var body = $(this).data().datagrid.dc.body2;
body.addClass('null-data-body');

2
04.系统编码/App/Content/scripts/system-management/org-management/index.js

@ -52,6 +52,7 @@
onUnselect: this.OnTaskUnselected.bind(this),
onBeforeLoad: this.OnTableGridBeforeLoad.bind(this),
onLoadSuccess: function (data) {
$('.data-loading').hide();
if (data.total === 0) {
var body = $(this).data().datagrid.dc.body2;
body.addClass('null-data-body');
@ -100,6 +101,7 @@
};
this.OnTableGridBeforeLoad = function () {
$('.data-loading').show();
var page = $('#task-grid').datagrid('getPager');
$(page).pagination({
beforePageText: '第',

2
04.系统编码/App/Content/scripts/system-management/statistic-analysis/index.js

@ -108,6 +108,7 @@
onUnselect: this.OnTaskUnselected.bind(this),
onBeforeLoad: this.OnTableGridBeforeLoad.bind(this),
onLoadSuccess: function (data) {
$('.data-loading').hide();
if (data.total === 0) {
var body = $(this).data().datagrid.dc.body2;
body.addClass('null-data-body');
@ -189,6 +190,7 @@
};
this.OnTableGridBeforeLoad = function () {
$('.data-loading').show();
this.statisticGrid.datagrid('getPager').pagination({
beforePageText: '第',
afterPageText: '页   共{pages}页',

6
04.系统编码/App/Content/scripts/system-management/user-management/index.js

@ -83,11 +83,12 @@
pageNumber: 1,
pageSize: 50,
pageList: [10, 20, 50, 100, 150, 200],
loadMsg: '正在加载数据,请稍后...',
loadMsg: '',
onSelect: this.OnTaskSelected.bind(this),
onUnselect: this.OnTaskUnselected.bind(this),
onBeforeLoad: this.OnTableGridBeforeLoad.bind(this),
onLoadSuccess: function (data) {
$('.data-loading').hide();
if (data.total === 0) {
var body = $(this).data().datagrid.dc.body2;
body.addClass('null-data-body');
@ -163,12 +164,15 @@
};
this.OnTableGridBeforeLoad = function () {
$('.data-loading').show();
this.userGrid.datagrid('getPager').pagination({
beforePageText: '第',
afterPageText: '页   共{pages}页',
displayMsg: '当前显示{from}-{to}条记录   共{total}条记录',
layout: ['list', 'sep', 'first', 'prev', 'sep', 'manual', 'sep', 'next', 'last', 'sep', 'refresh', 'info']
});
};
this.OnAddButtonClick = function () {

11
04.系统编码/App/Content/styles/common.css

@ -830,4 +830,15 @@
.textbox .textbox-prompt {
color: #868686;
}
.data-loading {
margin-top: 40px;
margin-left: 50px;
position: absolute;
top: 50%;
left: 50%;
z-index: 1000;
color: #3a3a3a;
display: none;
}

2
04.系统编码/App/Views/ConfigManagement/Index.cshtml

@ -32,6 +32,8 @@
</div>
</div>
<div class="data-loading">正在加载数据,请稍后...</div>
@{
Html.RenderPartial("/Views/ConfigManagement/EditLineWidth.cshtml");
Html.RenderPartial("/Views/ConfigManagement/EditLineColor.cshtml");

2
04.系统编码/App/Views/OrgManagement/Index.cshtml

@ -55,6 +55,8 @@
</div>
</div>
<div class="data-loading">正在加载数据,请稍后...</div>
@{
Html.RenderPartial("/Views/OrgManagement/AddDialog.cshtml");
Html.RenderPartial("/Views/OrgManagement/EditDialog.cshtml");

2
04.系统编码/App/Views/StatisticAnalysis/Index.cshtml

@ -44,6 +44,8 @@
</div>
</div>
<div class="data-loading">正在加载数据,请稍后...</div>
@section scripts {
<script src="~/Content/scripts/system-management/statistic-analysis/index.js"></script>
}

2
04.系统编码/App/Views/UserManagement/Index.cshtml

@ -60,6 +60,8 @@
</div>
</div>
<div class="data-loading">正在加载数据,请稍后...</div>
@{
Html.RenderPartial("/Views/UserManagement/AddDialog.cshtml");
Html.RenderPartial("/Views/UserManagement/EditDialog.cshtml");

Loading…
Cancel
Save