Browse Source

commit

master
hehongxing 3 years ago
parent
commit
4fea9f6975
  1. 2
      04.系统编码/.vs/config/applicationhost.config
  2. BIN
      04.系统编码/App/Content/images/icon-dangerous.png
  3. BIN
      04.系统编码/App/Content/images/sure-btn.png
  4. 3
      04.系统编码/App/Content/scripts/menggu/result-list.js
  5. 16
      04.系统编码/App/Content/scripts/system-management/statistic-analysis/index.js
  6. 15
      04.系统编码/App/Content/styles/common.css

2
04.系统编码/.vs/config/applicationhost.config

@ -162,7 +162,7 @@
</site>
<site name="App" id="2">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="D:\Work\2022\BeijingSafeguard\04.系统编码\App" />
<virtualDirectory path="/" physicalPath="E:\Work\2021\BeijingSafeguard\04.系统编码\App" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:44332:localhost" />

BIN
04.系统编码/App/Content/images/icon-dangerous.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

BIN
04.系统编码/App/Content/images/sure-btn.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

3
04.系统编码/App/Content/scripts/menggu/result-list.js

@ -72,7 +72,8 @@
list.empty();
points.forEach(function (point) {
var time = moment(point[3], "YYYYMMDD_HHmmss");
console.log(point)
var time = moment(point[2], "YYYYMMDD_HHmmss");
var label = "<li time='{0}'>{1}</li>".format(point[2], time.format("YYYY-MM-DD HH:mm"));
list.append(label);
});

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

@ -39,26 +39,10 @@
this.OnQueryButtonClick = function () {
this.ReloadChartData();
this.ReloadGridData();
this.InitDataGrid();
this.ReLoadTableData();
};
this.ReloadGridData = function () {
$.ajax({
type: "POST",
dataType: 'text',
url: '/Task/GetList',
data: {
fromDate: this.GetParams().fromTime,
toDate: this.GetParams().toTime
},
success: function (result) {
console.log(JSON.parse(result))
}.bind(this)
});
};
this.ReLoadTableData = function () {
this.statisticGrid.datagrid({
method: "POST",

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

@ -80,6 +80,19 @@
background: url("../images/icon-dangerous.png") no-repeat;
}
.nav ul li a:hover {
color: #00d5f6;
}
.nav ul li:first-child:hover:before,
.nav ul li:nth-child(2):hover:before{
background-position: -36px 0;
}
.nav ul li:last-child:hover:before {
background-position: -90px 0;
}
.nav ul li:first-child:before,
.nav ul li:nth-child(2):before {
background-position: -18px 0;
@ -87,7 +100,7 @@
.nav ul li:last-child:before {
width: 16px;
background-position: -54px 0;
background-position: -72px 0;
}
.nav ul li.action {

Loading…
Cancel
Save