Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cmszMonitorAnalysis
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liuna
cmszMonitorAnalysis
Commits
e7853639
Commit
e7853639
authored
Dec 07, 2017
by
莫林毅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改弹出框样式
parent
baacc4b1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
ModelResult.jsp
src/main/webapp/WEB-INF/views/ModelManage/ModelResult.jsp
+10
-7
No files found.
src/main/webapp/WEB-INF/views/ModelManage/ModelResult.jsp
View file @
e7853639
...
...
@@ -263,11 +263,14 @@
function
lookParm
(
dataModelId
,
dataModelTitle
){
$
.
dialog
({
title
:
"数据模型标题:"
+
dataModelTitle
,
/*content:"<div id='paramList'>"+
"<div class='col-xs-12'><div class='panel panel-default'><div class='panel-heading'>参数列表</div><div class='panel-body'> <table class='table table-hover table-striped' width='500'> <thead class='col-md-12'> <tr class='row mx-0'> <th width='40%'>参数ID号</th> <th width='35%'>参数名</th><th width='35%'>参数编码</th> <th width='20%'>参数值</th> <th width='25%'>参数类型</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div>"+
"</div>",*/
content
:
"<div id='paramList'>"
+
"<div class='col-xs-12'><div class='panel panel-default'><div class='panel-heading'>参数列表</div><div class='panel-body'> <table class='table table-hover table-striped' width='300'> <thead> <tr> <th width='15%'>参数ID号</th> <th width='35%'>参数名</th><th width='35%'>参数编码</th> <th width='20%'>参数值</th> <th width='25%'>参数类型</th> </tr> </thead> <tbody
> </tbody> </table> </div> </div> </div>"
+
"<div class='col-xs-12'><div class='panel panel-default'><div class='panel-heading'>参数列表</div><div class='panel-body'> <table class='table table-striped text-center ' > <thead class='col-md-15'> <tr class='row mx-0'> <th class='col-3 text-center'>参数ID号</th> <th class='col-3 text-center'>参数名</th><th class='col-3 text-center'>参数编码</th> <th class='col-3 text-center'>参数值</th> <th class='col-3 text-center'>参数类型</th> </tr> </thead> <tbody class='col-md-15'
> </tbody> </table> </div> </div> </div>"
+
"</div>"
,
lock
:
true
,
width
:
8
00
,
width
:
7
00
,
initialize
:
function
(){
$
.
ajax
({
type
:
'GET'
,
...
...
@@ -289,11 +292,11 @@
if
(
data
[
i
].
parameterValue
==
"undefined"
||
data
[
i
].
parameterValue
==
null
||
data
[
i
].
parameterValue
==
""
){
data
[
i
].
parameterValue
=
""
;
}
paramTbody
.
append
(
$
(
"<tr
></tr>"
).
append
(
"<td
>"
+
data
[
i
].
parameterId
+
"</td>"
)
.
append
(
"<td>"
+
data
[
i
].
parameterCode
+
"</td>"
)
.
append
(
"<td>"
+
data
[
i
].
parameterName
+
"</td>"
)
.
append
(
"<td>"
+
data
[
i
].
parameterValue
+
"</td>"
)
.
append
(
"<td>"
+
data
[
i
].
parameterDataType
+
"</td>"
));
paramTbody
.
append
(
$
(
"<tr
class='row mx-0'></tr>"
).
append
(
"<td class='col-3'
>"
+
data
[
i
].
parameterId
+
"</td>"
)
.
append
(
"<td
class='col-3'
>"
+
data
[
i
].
parameterCode
+
"</td>"
)
.
append
(
"<td
class='col-3'
>"
+
data
[
i
].
parameterName
+
"</td>"
)
.
append
(
"<td
class='col-3'
>"
+
data
[
i
].
parameterValue
+
"</td>"
)
.
append
(
"<td
class='col-3'
>"
+
data
[
i
].
parameterDataType
+
"</td>"
));
}
}
}
...
...
Write
Preview
Markdown
is supported
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