Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
7c81f4a2
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1173
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7c81f4a2
编写于
10月 07, 2023
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
删除多余统计
上级
3d408dfc
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
0 addition
and
629 deletion
+0
-629
gateway/src/main/resources/template/js/erpProducePage/departmentMachin.js
.../resources/template/js/erpProducePage/departmentMachin.js
+0
-59
gateway/src/main/resources/template/js/erpProducePage/departmentPatchMaterial.js
...ces/template/js/erpProducePage/departmentPatchMaterial.js
+0
-88
gateway/src/main/resources/template/js/erpProducePage/departmentPickMaterial.js
...rces/template/js/erpProducePage/departmentPickMaterial.js
+0
-88
gateway/src/main/resources/template/js/erpProducePage/departmentReturnMaterial.js
...es/template/js/erpProducePage/departmentReturnMaterial.js
+0
-88
gateway/src/main/resources/template/tpl/erpProducePage/departmentMachin.html
...sources/template/tpl/erpProducePage/departmentMachin.html
+0
-75
gateway/src/main/resources/template/tpl/erpProducePage/departmentPatchMaterial.html
.../template/tpl/erpProducePage/departmentPatchMaterial.html
+0
-77
gateway/src/main/resources/template/tpl/erpProducePage/departmentPickMaterial.html
...s/template/tpl/erpProducePage/departmentPickMaterial.html
+0
-77
gateway/src/main/resources/template/tpl/erpProducePage/departmentReturnMaterial.html
...template/tpl/erpProducePage/departmentReturnMaterial.html
+0
-77
未找到文件。
gateway/src/main/resources/template/js/erpProducePage/departmentMachin.js
已删除
100644 → 0
浏览文件 @
3d408dfc
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
,
echarts
:
'
../echarts/echarts
'
,
echartsTheme
:
'
../echarts/echartsTheme
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
,
'
echarts
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
,
form
=
layui
.
form
;
var
charts1
;
var
myDate
=
new
Date
();
year
=
myDate
.
getFullYear
();
laydate
.
render
({
elem
:
'
#year
'
,
type
:
'
year
'
,
value
:
year
,
trigger
:
'
click
'
,
done
:
function
(
value
,
date
){
initCustomDocumentaryByType
(
value
);
}
});
initCustomDocumentaryByType
(
year
);
// 统计当前部门月度新建加工单图
function
initCustomDocumentaryByType
(
year
){
AjaxPostUtil
.
request
({
url
:
reqBasePath
+
"
erpproduce004
"
,
params
:
{
year
:
year
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
renderCharts1
(
json
.
rows
);
matchingLanguage
();
}});
}
function
renderCharts1
(
rows
)
{
charts1
=
echarts
.
init
(
document
.
getElementById
(
"
charts1
"
));
var
name
=
new
Array
();
var
num
=
new
Array
();
$
.
each
(
rows
,
function
(
i
,
item
)
{
name
.
push
(
item
.
yearMonth
);
num
.
push
(
item
.
orderNum
);
});
var
option
=
getOption
(
'
当前部门新增加工单分析
'
,
'
统计在指定年份当前部门新建加工单的数量分析
'
,
name
,
"
部门新建加工单数量
"
,
num
,
'
line
'
);
charts1
.
setOption
(
option
);
// 加载表格
$
(
"
#tHead
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableHeader
"
).
html
(),
{
rows
:
name
}));
$
(
"
#tBody
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableBody
"
).
html
(),
{
rows
:
rows
}));
form
.
render
();
}
window
.
onresize
=
function
(){
charts1
.
resize
();
}
exports
(
'
departmentMachin
'
,
{});
});
gateway/src/main/resources/template/js/erpProducePage/departmentPatchMaterial.js
已删除
100644 → 0
浏览文件 @
3d408dfc
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
,
echarts
:
'
../echarts/echarts
'
,
echartsTheme
:
'
../echarts/echartsTheme
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
,
'
echarts
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
,
form
=
layui
.
form
;
var
charts1
;
var
myDate
=
new
Date
();
year
=
myDate
.
getFullYear
();
laydate
.
render
({
elem
:
'
#year
'
,
type
:
'
year
'
,
value
:
year
,
trigger
:
'
click
'
,
done
:
function
(
value
,
date
){
initCustomDocumentaryByType
(
value
);
}
});
initCustomDocumentaryByType
(
year
);
// 统计当前部门月度补料图
function
initCustomDocumentaryByType
(
year
){
AjaxPostUtil
.
request
({
url
:
reqBasePath
+
"
erpproduce002
"
,
params
:
{
year
:
year
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
renderCharts1
(
json
.
rows
);
matchingLanguage
();
}});
}
function
renderCharts1
(
rows
)
{
charts1
=
echarts
.
init
(
document
.
getElementById
(
"
charts1
"
));
var
name
=
new
Array
();
var
num
=
new
Array
();
var
materialName
=
""
;
var
materialNameList
=
new
Array
();
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
==
0
){
materialName
=
item
.
materialName
;
$
.
each
(
item
.
yearPatchMaterialNum
,
function
(
j
,
bean
){
name
.
push
(
bean
.
yearMonth
);
num
.
push
(
bean
.
needNum
);
});
}
});
materialNameList
.
push
(
materialName
);
var
option
=
getOption
(
'
当前部门补料分析
'
,
'
统计在指定年份当前部门补料的数量分析
'
,
name
,
materialName
,
num
,
'
line
'
);
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
!=
0
){
materialName
=
item
.
materialName
;
materialNameList
.
push
(
materialName
);
num
=
new
Array
();
$
.
each
(
item
.
yearPatchMaterialNum
,
function
(
j
,
bean
){
num
.
push
(
bean
.
needNum
);
});
option
.
series
.
push
({
name
:
materialName
,
type
:
'
line
'
,
smooth
:
true
,
data
:
[].
concat
(
num
)
});
}
});
option
[
"
legend
"
]
=
{
data
:
materialNameList
,
y
:
'
bottom
'
};
charts1
.
setOption
(
option
);
// 加载表格
$
(
"
#tHead
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableHeader
"
).
html
(),
{
rows
:
name
}));
$
(
"
#tBody
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableBody
"
).
html
(),
{
rows
:
rows
}));
form
.
render
();
}
window
.
onresize
=
function
(){
charts1
.
resize
();
}
exports
(
'
departmentPatchMaterial
'
,
{});
});
gateway/src/main/resources/template/js/erpProducePage/departmentPickMaterial.js
已删除
100644 → 0
浏览文件 @
3d408dfc
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
,
echarts
:
'
../echarts/echarts
'
,
echartsTheme
:
'
../echarts/echartsTheme
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
,
'
echarts
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
,
form
=
layui
.
form
;
var
charts1
;
var
myDate
=
new
Date
();
year
=
myDate
.
getFullYear
();
laydate
.
render
({
elem
:
'
#year
'
,
type
:
'
year
'
,
value
:
year
,
trigger
:
'
click
'
,
done
:
function
(
value
,
date
){
initCustomDocumentaryByType
(
value
);
}
});
initCustomDocumentaryByType
(
year
);
// 统计当前部门月度领料图
function
initCustomDocumentaryByType
(
year
){
AjaxPostUtil
.
request
({
url
:
reqBasePath
+
"
erpproduce001
"
,
params
:
{
year
:
year
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
renderCharts1
(
json
.
rows
);
matchingLanguage
();
}});
}
function
renderCharts1
(
rows
)
{
charts1
=
echarts
.
init
(
document
.
getElementById
(
"
charts1
"
));
var
name
=
new
Array
();
var
num
=
new
Array
();
var
materialName
=
""
;
var
materialNameList
=
new
Array
();
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
==
0
){
materialName
=
item
.
materialName
;
$
.
each
(
item
.
yearPickMaterialNum
,
function
(
j
,
bean
){
name
.
push
(
bean
.
yearMonth
);
num
.
push
(
bean
.
needNum
);
});
}
});
materialNameList
.
push
(
materialName
);
var
option
=
getOption
(
'
当前部门领料分析
'
,
'
统计在指定年份当前部门领料的数量分析
'
,
name
,
materialName
,
num
,
'
line
'
);
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
!=
0
){
materialName
=
item
.
materialName
;
materialNameList
.
push
(
materialName
);
num
=
new
Array
();
$
.
each
(
item
.
yearPickMaterialNum
,
function
(
j
,
bean
){
num
.
push
(
bean
.
needNum
);
});
option
.
series
.
push
({
name
:
materialName
,
type
:
'
line
'
,
smooth
:
true
,
data
:
[].
concat
(
num
)
});
}
});
option
[
"
legend
"
]
=
{
data
:
materialNameList
,
y
:
'
bottom
'
};
charts1
.
setOption
(
option
);
// 加载表格
$
(
"
#tHead
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableHeader
"
).
html
(),
{
rows
:
name
}));
$
(
"
#tBody
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableBody
"
).
html
(),
{
rows
:
rows
}));
form
.
render
();
}
window
.
onresize
=
function
(){
charts1
.
resize
();
}
exports
(
'
departmentPickMaterial
'
,
{});
});
gateway/src/main/resources/template/js/erpProducePage/departmentReturnMaterial.js
已删除
100644 → 0
浏览文件 @
3d408dfc
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
,
echarts
:
'
../echarts/echarts
'
,
echartsTheme
:
'
../echarts/echartsTheme
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
,
'
echarts
'
,
'
laydate
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
laydate
=
layui
.
laydate
,
form
=
layui
.
form
;
var
charts1
;
var
myDate
=
new
Date
();
year
=
myDate
.
getFullYear
();
laydate
.
render
({
elem
:
'
#year
'
,
type
:
'
year
'
,
value
:
year
,
trigger
:
'
click
'
,
done
:
function
(
value
,
date
){
initCustomDocumentaryByType
(
value
);
}
});
initCustomDocumentaryByType
(
year
);
// 统计当前部门月度退料图
function
initCustomDocumentaryByType
(
year
){
AjaxPostUtil
.
request
({
url
:
reqBasePath
+
"
erpproduce003
"
,
params
:
{
year
:
year
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
renderCharts1
(
json
.
rows
);
matchingLanguage
();
}});
}
function
renderCharts1
(
rows
)
{
charts1
=
echarts
.
init
(
document
.
getElementById
(
"
charts1
"
));
var
name
=
new
Array
();
var
num
=
new
Array
();
var
materialName
=
""
;
var
materialNameList
=
new
Array
();
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
==
0
){
materialName
=
item
.
materialName
;
$
.
each
(
item
.
yearReturnMaterialNum
,
function
(
j
,
bean
){
name
.
push
(
bean
.
yearMonth
);
num
.
push
(
bean
.
needNum
);
});
}
});
materialNameList
.
push
(
materialName
);
var
option
=
getOption
(
'
当前部门退料分析
'
,
'
统计在指定年份当前部门退料的数量分析
'
,
name
,
materialName
,
num
,
'
line
'
);
$
.
each
(
rows
,
function
(
i
,
item
)
{
if
(
i
!=
0
){
materialName
=
item
.
materialName
;
materialNameList
.
push
(
materialName
);
num
=
new
Array
();
$
.
each
(
item
.
yearReturnMaterialNum
,
function
(
j
,
bean
){
num
.
push
(
bean
.
needNum
);
});
option
.
series
.
push
({
name
:
materialName
,
type
:
'
line
'
,
smooth
:
true
,
data
:
[].
concat
(
num
)
});
}
});
option
[
"
legend
"
]
=
{
data
:
materialNameList
,
y
:
'
bottom
'
};
charts1
.
setOption
(
option
);
// 加载表格
$
(
"
#tHead
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableHeader
"
).
html
(),
{
rows
:
name
}));
$
(
"
#tBody
"
).
html
(
getDataUseHandlebars
(
$
(
"
#tableBody
"
).
html
(),
{
rows
:
rows
}));
form
.
render
();
}
window
.
onresize
=
function
(){
charts1
.
resize
();
}
exports
(
'
departmentReturnMaterial
'
,
{});
});
gateway/src/main/resources/template/tpl/erpProducePage/departmentMachin.html
已删除
100644 → 0
浏览文件 @
3d408dfc
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body
style=
"background-color: rgb(242, 242, 242);"
>
<div
class=
"layui-fluid"
>
<form
class=
"layui-form"
action=
""
>
<div
class=
"layui-col-xs12 margin-top-10 layui-col-space15"
>
<div
class=
"layui-form-item layui-col-xs3"
>
<label
class=
"layui-form-label"
>
指定年度
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"year"
name=
"year"
win-verify=
"required"
placeholder=
"请选择年"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度新建加工单分析
</div>
<div
class=
"layui-card-body"
>
<div
id=
"charts1"
class=
"layui-row"
style=
"height: 400px;"
>
</div>
</div>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度新建加工单表格分析
</div>
<div
class=
"layui-card-body"
>
<table
class=
"layui-table"
>
<thead
id=
tHead
>
</thead>
<tbody
id=
"tBody"
>
</tbody>
</table>
</div>
</div>
</div>
</div>
</form>
</div>
<script
type=
"text/html"
id=
"tableHeader"
>
<
tr
>
<
th
>
日期
<
/th
>
{{
#
each
rows
}}
<
th
>
{{
this
}}
<
/th
>
{{
/
each
}}
<
/tr
>
</script>
<script
type=
"text/html"
id=
"tableBody"
>
<
tr
>
<
th
>
新增数量
<
/th
>
{{
#
each
rows
}}
<
td
>
{{
orderNum
}}
<
/td
>
{{
/
each
}}
<
/tr
>
</script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/erpProducePage/
'
}).
use
(
'
departmentMachin
'
);
</script>
</body>
</html>
\ No newline at end of file
gateway/src/main/resources/template/tpl/erpProducePage/departmentPatchMaterial.html
已删除
100644 → 0
浏览文件 @
3d408dfc
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body
style=
"background-color: rgb(242, 242, 242);"
>
<div
class=
"layui-fluid"
>
<form
class=
"layui-form"
action=
""
>
<div
class=
"layui-col-xs12 margin-top-10 layui-col-space15"
>
<div
class=
"layui-form-item layui-col-xs3"
>
<label
class=
"layui-form-label"
>
指定年度
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"year"
name=
"year"
win-verify=
"required"
placeholder=
"请选择年"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度补料分析
</div>
<div
class=
"layui-card-body"
>
<div
id=
"charts1"
class=
"layui-row"
style=
"height: 400px;"
>
</div>
</div>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度补料表格分析
</div>
<div
class=
"layui-card-body"
>
<table
class=
"layui-table"
>
<thead
id=
tHead
>
</thead>
<tbody
id=
"tBody"
>
</tbody>
</table>
</div>
</div>
</div>
</div>
</form>
</div>
<script
type=
"text/html"
id=
"tableHeader"
>
<
tr
>
<
th
>
日期
<
/th
>
{{
#
each
rows
}}
<
th
>
{{
this
}}
<
/th
>
{{
/
each
}}
<
/tr
>
</script>
<script
type=
"text/html"
id=
"tableBody"
>
{{
#
each
rows
}}
<
tr
>
<
th
>
{{
materialName
}}
<
/th
>
{{
#
each
yearPatchMaterialNum
}}
<
td
>
{{
needNum
}}
<
/td
>
{{
/
each
}}
<
/tr
>
{{
/
each
}}
</script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/erpProducePage/
'
}).
use
(
'
departmentPatchMaterial
'
);
</script>
</body>
</html>
\ No newline at end of file
gateway/src/main/resources/template/tpl/erpProducePage/departmentPickMaterial.html
已删除
100644 → 0
浏览文件 @
3d408dfc
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body
style=
"background-color: rgb(242, 242, 242);"
>
<div
class=
"layui-fluid"
>
<form
class=
"layui-form"
action=
""
>
<div
class=
"layui-col-xs12 margin-top-10 layui-col-space15"
>
<div
class=
"layui-form-item layui-col-xs3"
>
<label
class=
"layui-form-label"
>
指定年度
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"year"
name=
"year"
win-verify=
"required"
placeholder=
"请选择年"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度领料分析
</div>
<div
class=
"layui-card-body"
>
<div
id=
"charts1"
class=
"layui-row"
style=
"height: 400px;"
>
</div>
</div>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度领料表格分析
</div>
<div
class=
"layui-card-body"
>
<table
class=
"layui-table"
>
<thead
id=
tHead
>
</thead>
<tbody
id=
"tBody"
>
</tbody>
</table>
</div>
</div>
</div>
</div>
</form>
</div>
<script
type=
"text/html"
id=
"tableHeader"
>
<
tr
>
<
th
>
日期
<
/th
>
{{
#
each
rows
}}
<
th
>
{{
this
}}
<
/th
>
{{
/
each
}}
<
/tr
>
</script>
<script
type=
"text/html"
id=
"tableBody"
>
{{
#
each
rows
}}
<
tr
>
<
th
>
{{
materialName
}}
<
/th
>
{{
#
each
yearPickMaterialNum
}}
<
td
>
{{
needNum
}}
<
/td
>
{{
/
each
}}
<
/tr
>
{{
/
each
}}
</script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/erpProducePage/
'
}).
use
(
'
departmentPickMaterial
'
);
</script>
</body>
</html>
\ No newline at end of file
gateway/src/main/resources/template/tpl/erpProducePage/departmentReturnMaterial.html
已删除
100644 → 0
浏览文件 @
3d408dfc
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body
style=
"background-color: rgb(242, 242, 242);"
>
<div
class=
"layui-fluid"
>
<form
class=
"layui-form"
action=
""
>
<div
class=
"layui-col-xs12 margin-top-10 layui-col-space15"
>
<div
class=
"layui-form-item layui-col-xs3"
>
<label
class=
"layui-form-label"
>
指定年度
<i
class=
"red"
>
*
</i></label>
<div
class=
"layui-input-block"
>
<input
type=
"text"
id=
"year"
name=
"year"
win-verify=
"required"
placeholder=
"请选择年"
class=
"layui-input"
/>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度退料分析
</div>
<div
class=
"layui-card-body"
>
<div
id=
"charts1"
class=
"layui-row"
style=
"height: 400px;"
>
</div>
</div>
</div>
</div>
<div
class=
"layui-col-xs12"
>
<div
class=
"layui-card"
>
<div
class=
"layui-card-header"
>
部门月度退料表格分析
</div>
<div
class=
"layui-card-body"
>
<table
class=
"layui-table"
>
<thead
id=
tHead
>
</thead>
<tbody
id=
"tBody"
>
</tbody>
</table>
</div>
</div>
</div>
</div>
</form>
</div>
<script
type=
"text/html"
id=
"tableHeader"
>
<
tr
>
<
th
>
日期
<
/th
>
{{
#
each
rows
}}
<
th
>
{{
this
}}
<
/th
>
{{
/
each
}}
<
/tr
>
</script>
<script
type=
"text/html"
id=
"tableBody"
>
{{
#
each
rows
}}
<
tr
>
<
th
>
{{
materialName
}}
<
/th
>
{{
#
each
yearReturnMaterialNum
}}
<
td
>
{{
needNum
}}
<
/td
>
{{
/
each
}}
<
/tr
>
{{
/
each
}}
</script>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/erpProducePage/
'
}).
use
(
'
departmentReturnMaterial
'
);
</script>
</body>
</html>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录