Commit b326fd97 authored by 李苏's avatar 李苏 💬

新增总生成量查询

parent 00f651bc
...@@ -267,6 +267,17 @@ ...@@ -267,6 +267,17 @@
} }
}); });
} }
/* 新增总生成量 */
function apiqueryZscl(){
HTTP.post("queryZscl", {}, function(result) {
if (result['success']) {
let data=result.data.records||{};
$("#zscl").text(data.wgsl||0);
} else {
console.log("请求失败")
}
});
}
/* pdf */ /* pdf */
function getPdf(time){ function getPdf(time){
pdfshow("getPdf","gylct",time||20000) pdfshow("getPdf","gylct",time||20000)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment