Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
cb89aea8
提交
cb89aea8
编写于
11月 28, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
树快速搜索
上级
9ff95458
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
46 行增加
和
0 行删除
+46
-0
CONTROL-BASE.vue.ftl
@CONTROL/树视图/CONTROL-BASE.vue.ftl
+12
-0
VIEW-BASE.vue.ftl
@VIEW/实体移动端树视图/VIEW-BASE.vue.ftl
+34
-0
未找到文件。
@CONTROL/树视图/CONTROL-BASE.vue.ftl
浏览文件 @
cb89aea8
...
@@ -895,10 +895,22 @@ import { Util } from '@ibiz-core/utils'
...
@@ -895,10 +895,22 @@ import { Util } from '@ibiz-core/utils'
public node_touch(item:any){
public node_touch(item:any){
this.activeNode = item.id.split(';')[0];
this.activeNode = item.id.split(';')[0];
this.currentselectedNode = JSON.parse(JSON.stringify(item));
this.currentselectedNode = JSON.parse(JSON.stringify(item));
this.showContext(item,{})
this.contextMenuShowStatus = true;
this.contextMenuShowStatus = true;
}
}
public webLoad(query:string){
let reNodes:any = [];
for (let index = 0; index < this.nodes.length; index++) {
const node = this.nodes[index];
if(node.srfmajortext.indexOf(query) != -1){
reNodes.push(node);
}
}
this.parseNodes(reNodes);
}
/**
/**
* 生命周期
* 生命周期
*
*
...
...
@VIEW/实体移动端树视图/VIEW-BASE.vue.ftl
浏览文件 @
cb89aea8
...
@@ -10,6 +10,40 @@
...
@@ -10,6 +10,40 @@
../@MACRO/VIEW_CONTENT-BASE.vue.ftl
../@MACRO/VIEW_CONTENT-BASE.vue.ftl
</#ibizinclude>
</#ibizinclude>
<#-- 输出快速搜索:BEGIN -->
<#if view.isEnableQuickSearch?? && view.isEnableQuickSearch() == true>
/**
* 搜索值
*
* @type {string}
* @memberof ${srfclassname('${view.name}')}Base
*/
public query: string = '';
/**
* 快速搜索值变化
*
* @param {*} event
* @returns
* @memberof ${srfclassname('${view.name}')}Base
*/
public async quickValueChange(event: any) {
let { detail } = event;
if (!detail) {
return;
}
let { value } = detail;
this.query = value;
const tree: any = this.$refs.tree;
if (tree) {
tree.webLoad(this.query);
}
}
</#if>
<#-- 输出快速搜索:END -->
<#ibizinclude>
<#ibizinclude>
../@MACRO/VIEW_BOTTOM-BASE.vue.ftl
../@MACRO/VIEW_BOTTOM-BASE.vue.ftl
</#ibizinclude>
</#ibizinclude>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录