导出excel
This commit is contained in:
parent
bb3bff1cbe
commit
1919489d48
|
|
@ -199,6 +199,17 @@ function setNumColor(value, type) {
|
||||||
return '<span style="color:' + color + '">' + value + "</span>";
|
return '<span style="color:' + color + '">' + value + "</span>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 导出
|
||||||
|
function exportExcel() {
|
||||||
|
let params = {
|
||||||
|
'name': $('#name').val(),
|
||||||
|
'module': $('#module').val(),
|
||||||
|
'moduleId': objParam.moduleId
|
||||||
|
}
|
||||||
|
let url = dataUrl + "backstage/export/exportDetails";
|
||||||
|
exportExcelUtil(url, '需求计划', JSON.stringify(params));
|
||||||
|
}
|
||||||
|
|
||||||
// 需求计划编号
|
// 需求计划编号
|
||||||
function demand_plan(obj) {
|
function demand_plan(obj) {
|
||||||
openIframeByParamObj2("demand_plan", "机具需求计划", "./child/apply_plan_detail.html", "92%", "95%", obj);
|
openIframeByParamObj2("demand_plan", "机具需求计划", "./child/apply_plan_detail.html", "92%", "95%", obj);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue