Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
鲁尚清
3 years ago
Commit
ad1c334e4703ad66a92ffd0303322fb873b25d65
1 parent
2a9755dd
【无】扩展字段T3和IOP点击后的弹框样式
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/commonCols.js
hg-monitor-web-base/src/main/resources/static/src/controller/commonCols.js
View file @
ad1c334
...
...
@@ -5221,10 +5221,10 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin',
//判断类型是输入框还是下拉列表
let
titleName
=
''
;
let
promptHtml
=
''
;
if
(
fieldSourceType
==
'
0
'
){
if
(
fieldSourceType
==
'
input
'
){
titleName
=
'请输入'
;
promptHtml
=
`
<
input
type
=
"text"
id
=
"promptInput"
name
=
"promptInput"
autocomplete
=
"off"
class
=
"layui-input"
>
`
}
else
if
(
fieldSourceType
==
'
1
'
){
}
else
if
(
fieldSourceType
==
'
select
'
){
titleName
=
'请选择'
;
promptHtml
=
`
<
select
id
=
"promptInput"
style
=
"width:80%;cursor:pointer;"
class
=
"layui-select"
lay
-
filter
=
"promptInput"
>
`
if
(
fieldList
){
...
...
@@ -5235,7 +5235,8 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin',
}
promptHtml
+=
`
<
/select>`
;
}
else
{
promptHtml
=
``
titleName
=
'请查看'
;
promptHtml
=
`
<
span
style
=
"border: 1px solid #d2d2d2;flex: 1;padding: 10px;"
id
=
"promptInput"
>
`
+
old_T3Dom
+
`
<
/span>
`
}
let
html_tpl
=
`
<
div
class
=
"T3-IOP-prompt"
>
`
+
promptHtml
+
`
<
/div>`
;
layer
.
open
({
...
...
Please
register
or
login
to post a comment