Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
12d87a58
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1195
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看板
提交
12d87a58
编写于
7月 17, 2022
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【高级搜索】支持动态数据配置
上级
53135e25
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
45 addition
and
22 deletion
+45
-22
web/src/main/resources/template/assets/lib/layui/customer/tableUtil/initTableSearchUtil.js
...ssets/lib/layui/customer/tableUtil/initTableSearchUtil.js
+45
-22
未找到文件。
web/src/main/resources/template/assets/lib/layui/customer/tableUtil/initTableSearchUtil.js
浏览文件 @
12d87a58
...
...
@@ -161,7 +161,12 @@ var initTableSearchUtil = {
return
''
;
}
else
if
(
type
===
'
virtualSelect
'
)
{
// 接口-下拉框 virtualDataFrom: {"url": "", "valueKey": "", "showKey": ""}
return
''
;
var
dataFrom
=
initTableSearchUtil
.
getVirtualSelectData
(
searchParam
);
var
options
=
"
<option value=''>全部</option>
"
;
$
.
each
(
dataFrom
,
function
(
i
,
item
)
{
options
+=
'
<option value="
'
+
item
[
searchParam
.
virtualDataFrom
.
valueKey
]
+
'
">
'
+
item
[
searchParam
.
virtualDataFrom
.
showKey
]
+
'
</option>
'
;
});
return
initTableSearchUtil
.
setSelectBox
(
fieldId
,
operator
,
options
);
}
else
if
(
type
===
'
constantSelect
'
)
{
// 常量-下拉框 constantDataFrom: [{"id": "", "name": ""}]
var
dataFrom
=
searchParam
.
constantDataFrom
;
...
...
@@ -169,15 +174,42 @@ var initTableSearchUtil = {
$
.
each
(
dataFrom
,
function
(
i
,
item
)
{
options
+=
'
<option value="
'
+
item
.
id
+
'
">
'
+
item
.
name
+
'
</option>
'
;
});
if
(
operator
==
'
in
'
)
{
return
'
<select id="
'
+
fieldId
+
'
" multiple lay-filter="
'
+
fieldId
+
'
" lay-search="" >
'
+
options
+
'
</select>
'
;
}
return
'
<select id="
'
+
fieldId
+
'
" lay-filter="
'
+
fieldId
+
'
" lay-search="" >
'
+
return
initTableSearchUtil
.
setSelectBox
(
fieldId
,
operator
,
options
);
}
},
/**
* 接口-下拉框 获取数据
*
* @param searchParam 高级查询的参数
* @returns {*[]}
*/
getVirtualSelectData
:
function
(
searchParam
)
{
var
url
=
""
;
eval
(
'
url =
'
+
searchParam
.
virtualDataFrom
.
service
+
'
+ "
'
+
searchParam
.
virtualDataFrom
.
url
+
'
"
'
);
var
dataFrom
=
[];
AjaxPostUtil
.
request
({
url
:
url
,
params
:
{},
type
:
'
json
'
,
method
:
searchParam
.
virtualDataFrom
.
method
,
callback
:
function
(
json
)
{
dataFrom
=
[].
concat
(
json
.
rows
);
},
async
:
false
});
return
dataFrom
;
},
/**
* 设置下拉框的属性
*
* @param fieldId 字段列id
* @param operator 筛选条件
* @param options 可选项
*/
setSelectBox
:
function
(
fieldId
,
operator
,
options
)
{
if
(
operator
==
'
in
'
)
{
return
'
<select id="
'
+
fieldId
+
'
" multiple lay-filter="
'
+
fieldId
+
'
" lay-search="" >
'
+
options
+
'
</select>
'
;
}
return
'
<select id="
'
+
fieldId
+
'
" lay-filter="
'
+
fieldId
+
'
" lay-search="" >
'
+
options
+
'
</select>
'
;
},
/**
...
...
@@ -225,11 +257,8 @@ var initTableSearchUtil = {
}
else
if
(
type
===
'
userStaff
'
)
{
// 员工
return
''
;
}
else
if
(
type
===
'
virtualSelect
'
)
{
// 接口-下拉框 virtualDataFrom: {"url": "", "valueKey": "", "showKey": ""}
return
$
(
"
#
"
+
fieldId
).
find
(
"
option:selected
"
).
text
();
}
else
if
(
type
===
'
constantSelect
'
)
{
// 常量-下拉框 constantDataFrom: [{"id": "", "name": ""}]
}
else
if
(
type
===
'
virtualSelect
'
||
type
===
'
constantSelect
'
)
{
// 接口-下拉框 virtualDataFrom / 常量-下拉框 constantDataFrom
if
(
operator
==
'
in
'
)
{
var
text
=
[];
$
.
each
(
$
(
"
#
"
+
fieldId
).
find
(
"
option:selected
"
),
function
(
i
,
item
)
{
...
...
@@ -269,11 +298,8 @@ var initTableSearchUtil = {
}
else
if
(
type
===
'
userStaff
'
)
{
// 员工
return
''
;
}
else
if
(
type
===
'
virtualSelect
'
)
{
// 接口-下拉框 virtualDataFrom: {"url": "", "valueKey": "", "showKey": ""}
return
$
(
"
#
"
+
fieldId
).
val
();
}
else
if
(
type
===
'
constantSelect
'
)
{
// 常量-下拉框 constantDataFrom: [{"id": "", "name": ""}]
}
else
if
(
type
===
'
virtualSelect
'
||
type
===
'
constantSelect
'
)
{
// 接口-下拉框 virtualDataFrom / 常量-下拉框 constantDataFrom
if
(
operator
==
'
in
'
)
{
var
value
=
[];
$
.
each
(
$
(
"
#
"
+
fieldId
).
val
(),
function
(
i
,
item
)
{
...
...
@@ -317,11 +343,8 @@ var initTableSearchUtil = {
// 用户
}
else
if
(
type
===
'
userStaff
'
)
{
// 员工
}
else
if
(
type
===
'
virtualSelect
'
)
{
// 接口-下拉框 virtualDataFrom: {"url": "", "valueKey": "", "showKey": ""}
$
(
"
#
"
+
fieldId
).
val
(
confimValue
.
hideValue
);
}
else
if
(
type
===
'
constantSelect
'
)
{
// 常量-下拉框 constantDataFrom: [{"id": "", "name": ""}]
}
else
if
(
type
===
'
virtualSelect
'
||
type
===
'
constantSelect
'
)
{
// 接口-下拉框 virtualDataFrom / 常量-下拉框 constantDataFrom
if
(
operator
==
'
in
'
)
{
$
(
"
#
"
+
fieldId
).
val
(
confimValue
.
hideValue
.
replaceAll
(
"
'
"
,
""
).
split
(
'
,
'
));
}
else
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录