Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibizlab-generator
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibizlab-generator
提交
2d6ab5f1
提交
2d6ab5f1
编写于
1月 19, 2022
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:表格视图支持快速搜索
上级
d3d7309d
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
32 行增加
和
6 行删除
+32
-6
md-view.ts
...r7/app_{{apps}}/src/core/modules/views/md-view/md-view.ts
+26
-1
grid-service.ts
...{{apps}}/src/core/service/control-service/grid-service.ts
+4
-3
{{pages@DEGRIDVIEW}}.vue.hbs
...dules}}/{{pages@DEGRIDVIEW}}/{{pages@DEGRIDVIEW}}.vue.hbs
+2
-2
未找到文件。
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/modules/views/md-view/md-view.ts
浏览文件 @
2d6ab5f1
...
...
@@ -116,6 +116,19 @@ export class MDView extends MainView {
this
.
next
({
tag
:
tag
,
action
:
'load'
,
data
:
viewParams
});
}
/**
* @description 快速搜索查询
* @param {*} [args={}]
* @memberof MDView
*/
public
handleQuickSearch
(
args
:
any
=
{}):
void
{
const
{
viewParams
}
=
this
.
state
;
const
query
=
args
?.
target
?.
_value
||
''
;
Object
.
assign
(
viewParams
,{
query
:
query
});
const
tag
=
this
.
getMDCtrl
().
name
;
this
.
next
({
tag
:
tag
,
action
:
'load'
,
data
:
viewParams
});
}
/**
* 搜索表单搜索
*
...
...
@@ -228,6 +241,17 @@ export class MDView extends MainView {
}
}
/**
* @description 处理快速搜索事件
* @param {any} $event
* @memberof MDView
*/
public
onQuickSearchEvent
(
$event
:
any
)
{
if
(
$event
)
{
this
.
handleQuickSearch
(
$event
);
}
}
/**
* @description 安装视图所有功能模块的方法
*
...
...
@@ -240,7 +264,8 @@ export class MDView extends MainView {
xDataControl
:
this
.
xDataControl
,
searchForm
:
this
.
searchForm
,
searchBar
:
this
.
searchBar
,
onQuickGroupEvent
:
this
.
onQuickGroupEvent
.
bind
(
this
)
onQuickGroupEvent
:
this
.
onQuickGroupEvent
.
bind
(
this
),
onQuickSearchEvent
:
this
.
onQuickSearchEvent
.
bind
(
this
)
};
}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/core/service/control-service/grid-service.ts
浏览文件 @
2d6ab5f1
...
...
@@ -41,9 +41,10 @@ export class GridService<T extends ControlVOBase> extends ControlServiceBase<T>
const
{
context
:
Context
,
data
:
Data
}
=
this
.
handleRequestData
(
context
,
data
,
opts
);
const
action
=
hasFunction
(
_entityService
,
opts
.
action
)
?
opts
.
action
:
'GET'
;
const
response
=
await
_entityService
[
action
](
Context
,
Data
,
opts
.
isLoading
);
response
.
data
?.
forEach
((
item
:
IParam
)
=>
{
item
=
this
.
newControlVO
(
item
);
})
let
resData
:
any
[]
=
response
.
data
;
for
(
let
index
=
0
;
index
<
resData
.
length
;
index
++
)
{
resData
[
index
]
=
this
.
newControlVO
(
resData
[
index
]);
}
return
this
.
handleResponse
(
response
,
opts
);
}
...
...
modules/ibizlab-generator-core/src/main/resources/templ/r7/app_{{apps}}/src/views/{{appModules}}/{{pages@DEGRIDVIEW}}/{{pages@DEGRIDVIEW}}.vue.hbs
浏览文件 @
2d6ab5f1
...
...
@@ -39,7 +39,7 @@ interface ViewEmit {
const
emit
=
defineEmits
<
ViewEmit
>
();
// 安装功能模块,提供状态和能力方法
const
{
state
,
grid
,
onCtrlEvent
,
onToolbarEvent
,
onQuickGroupEvent
}
=
new
GridView
(
viewState
,
props
,
emit
).
moduleInstall
();
const
{
state
,
grid
,
onCtrlEvent
,
onToolbarEvent
,
onQuickGroupEvent
,
onQuickSearchEvent
}
=
new
GridView
(
viewState
,
props
,
emit
).
moduleInstall
();
</script>
...
...
@@ -67,7 +67,7 @@ const { state, grid, onCtrlEvent, onToolbarEvent, onQuickGroupEvent } = new Grid
{{#if
page
.
enableFilter
}}
<template
v-slot:quickSearch
>
<div
class=
'app-quick-search'
>
<a-input/>
<a-input
@
pressEnter=
"onQuickSearchEvent($event)"
allowClear
/>
<a-popover
trigger=
"click"
:overlayStyle=
"{width: '50%'}"
>
<template
#
content
>
<
{{
codeName
}}
SearchForm
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录