Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
e6133dd5
提交
e6133dd5
编写于
8月 06, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
树面包屑
上级
decbd3ca
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
17 行增加
和
45 行删除
+17
-45
CONTROL-BASE.template.ftl
@CONTROL/树视图/CONTROL-BASE.template.ftl
+3
-3
CONTROL-BASE.vue.ftl
@CONTROL/树视图/CONTROL-BASE.vue.ftl
+14
-42
未找到文件。
@CONTROL/树视图/CONTROL-BASE.template.ftl
浏览文件 @
e6133dd5
...
...
@@ -6,14 +6,14 @@
<ion-searchbar></ion-searchbar>
<div class="treeNav">
<template v-for="(item,index) in treeNav">
<ion-label :key="index"
:class="index+1 < treeNav.length? 'treeNav-active':'' ">{{item
}}</ion-label>
<ion-label :key="index"
class="sc-ion-label-ios-h sc-ion-label-ios-s ios hydrated" :class="index+1 < treeNav.length? 'treeNav-active':'' " @click="nav_click(item)">{{item.text
}}</ion-label>
<span class="tree-span" :key="index+'span'" v-if="index+1 < treeNav.length">></span>
</template>
</div>
<div class="tree-partition"></div>
<ion-list>
<template v-for="item in nodes">
<ion-item v-if="i
sNode(item.id)
" :key="item.id" @click="click_node(item)">
<ion-item v-if="i
tem.isNode
" :key="item.id" @click="click_node(item)">
<ion-label>{{item.text}}</ion-label>
<ion-icon class="tree-icon" slot="end" name="chevron-forward-outline"></ion-icon>
</ion-item>
...
...
@@ -22,7 +22,7 @@
<div class="tree-partition tree-partition-bigger"></div>
<ion-list>
<template v-for="
item in nodes
">
<template v-for="
!item.isNode
">
<ion-item v-if="!isNode(item.id)" :key="item.id">
<ion-label>{{item.text}}</ion-label>
</ion-item>
...
...
@CONTROL/树视图/CONTROL-BASE.vue.ftl
浏览文件 @
e6133dd5
...
...
@@ -23,7 +23,7 @@ import { Util } from '@ibiz-core/utils'
* @type {string[]}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public treeNav = [];
public treeNav
:any
= [];
/**
* 获取多项数据
...
...
@@ -118,47 +118,6 @@ import { Util } from '@ibiz-core/utils'
this.load({data:data});
}
/**
* 节点值
*
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public treenodes:any = [
<#assign rootnode = "">
<#if ctrl.getRootPSDETreeNode?? && ctrl.getRootPSDETreeNode()?? && ctrl.getRootPSDETreeNode().getNodeType?? && ctrl.getRootPSDETreeNode().getNodeType()??>
<#assign rootnode = ctrl.getRootPSDETreeNode().getNodeType() >
</#if>
<#if ctrl.getPSDETreeNodeRSs?? && ctrl.getPSDETreeNodeRSs()??>
<#list ctrl.getPSDETreeNodeRSs() as node>
<#if node.getChildPSDETreeNode?? && node.getChildPSDETreeNode()??>
<#assign nodeitemchild = node.getChildPSDETreeNode()>
<#assign hasnoders = false>
<#assign isstatic = false>
<#if nodeitemchild.hasPSDETreeNodeRSs?? && nodeitemchild.hasPSDETreeNodeRSs()??>
<#assign hasnoders = nodeitemchild.hasPSDETreeNodeRSs() >
</#if>
<#if nodeitemchild.getTreeNodeType?? && nodeitemchild.getTreeNodeType()?? && nodeitemchild.getTreeNodeType() != 'STATIC'>
<#assign isstatic = true >
</#if>
<#if hasnoders || isstatic>
'${nodeitemchild.getNodeType()};${rootnode}',
</#if>
</#if>
</#list>
'${rootnode};${rootnode}'
</#if>
]
/**
* 选中值变化
*
* @param {string} key
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public isNode(key:string) {
return this.treenodes.includes(key);
}
/**
* 选中值变化
*
...
...
@@ -182,6 +141,19 @@ import { Util } from '@ibiz-core/utils'
}
}
/**
* 导航点击行为
*
* @param {*} newVal
* @param {*} oldVal
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public nav_click(item:any) {
const count = this.treeNav.findIndex((i:any) => item.id === i.id) + 1;
this.treeNav.splice(count,this.treeNav.length- count);
this.load({data:item});
}
/**
* 回显选中数据集合
*
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录