Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
6bc92ec9
Commit
6bc92ec9
authored
Apr 07, 2018
by
AlanGao
Browse files
update
parent
13c79014
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/pages/common/home.jsp
View file @
6bc92ec9
...
...
@@ -704,20 +704,23 @@
//返回统计类型字符串
function
getReportType
()
{
var
reportType
=
$
(
"
#searchReportType
"
).
val
();
if
(
reportType
==
0
)
{
return
'
按资产状态统计
'
;
}
else
if
(
reportType
==
1
)
{
return
'
按资产类型统计
'
;
}
else
if
(
reportType
==
2
)
{
return
'
按供应商统计
'
;
}
else
if
(
reportType
==
3
)
{
return
'
按资产名称统计
'
;
}
else
if
(
reportType
==
4
)
{
return
'
按所属用户统计
'
;
var
reportName
=
undefined
;
switch
(
reportType
)
{
case
1
:
reportName
=
'
按资产类型统计
'
;
break
;
case
2
:
reportName
=
'
按供应商统计
'
;
break
;
case
3
:
reportName
=
'
按资产名称统计
'
;
break
;
case
4
:
reportName
=
'
按所属用户统计
'
;
break
;
default
:
reportName
=
'
按资产状态统计
'
;
break
;
}
}
</script>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment