Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
f2c4f296
提交
f2c4f296
编写于
8月 05, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
树调整
上级
cce1471a
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
58 行增加
和
24 行删除
+58
-24
CONTROL-BASE.template.ftl
@CONTROL/树视图/CONTROL-BASE.template.ftl
+30
-24
CONTROL-BASE.vue.ftl
@CONTROL/树视图/CONTROL-BASE.vue.ftl
+8
-0
CONTROL.less.ftl
@CONTROL/树视图/CONTROL.less.ftl
+20
-0
未找到文件。
@CONTROL/树视图/CONTROL-BASE.template.ftl
浏览文件 @
f2c4f296
...
@@ -3,30 +3,35 @@
...
@@ -3,30 +3,35 @@
<#if ctrl.render??>
<#if ctrl.render??>
${ctrl.render.code}
${ctrl.render.code}
<#else>
<#else>
<mt-tab-container v-if="!isOptional" @input="deleteNode" v-model="active" swipeable>
<ion-searchbar></ion-searchbar>
<mt-tab-container-item :id="index" v-for="(nodelist,index) in nodeArray" :key="index">
<div class="treeNav">
<div v-for="(node,index) in nodelist" :key="index">
<template v-for="(item,index) in treeNav">
<mt-cell :title="node.srfmajortext">
<ion-label :key="index" :class="index+1 < treeNav.length? 'treeNav-active':'' ">{{item}}</ion-label>
<van-icon v-if="node.leaf === false" name="wap-nav" @click.native="show(node)"/>
<span class="tree-span" :key="index+'span'" v-if="index+1 < treeNav.length">></span>
</mt-cell>
</template>
</div>
</div>
</mt-tab-container-item>
<div class="tree-partition"></div>
</mt-tab-container>
<#if ctrl.getPSDETreeNodes?? && ctrl.getPSDETreeNodes()??>
<ion-list>
<van-checkbox-group v-if="isOptional" v-model="checkedList">
<#list ctrl.getPSDETreeNodes() as node>
<mt-tab-container v-model="active" @input="deleteNode" swipeable>
<#if node.isRootNode?? && node.isRootNode()?? && node.isRootNode()>
<mt-tab-container-item :id="index" v-for="(nodelist,index) in nodeArray" :key="index">
<#if node.getPSDETreeNodeRSs?? && node.getPSDETreeNodeRSs()??>
<template v-for="(node,index2) in nodelist" >
<#list node.getPSDETreeNodeRSs() as nodeitem>
<mt-cell v-if="node.leaf === false" :title="node.text" :key="'cell'+index2" @click.native="show(node)">
<#if nodeitem.getChildPSDETreeNode?? && nodeitem.getChildPSDETreeNode()??>
<van-icon name="wap-nav" />
<#assign nodeitemchild = nodeitem.getChildPSDETreeNode()>
</mt-cell>
<#if nodeitemchild.hasPSDETreeNodeRSs?? && nodeitemchild.hasPSDETreeNodeRSs()?? && nodeitemchild.hasPSDETreeNodeRSs()>
<mt-cell v-else :title="node.text" :key="'cell'+index2" @click.native="toggle(node)">
<ion-item>
<van-checkbox :name="node.id"></van-checkbox>
<ion-label>${nodeitemchild.getName}</ion-label>
</mt-cell>
<ion-icon class="tree-icon" slot="end" name="chevron-forward-outline"></ion-icon>
</template>
</ion-item>
</mt-tab-container-item>
</#if>
</mt-tab-container>
</#if>
</van-checkbox-group>
</#list>
</#if>
</#if>
</#list>
</ion-list>
</#if>
</#if>
</#if>
</div>
</div>
</template>
</template>
\ No newline at end of file
@CONTROL/树视图/CONTROL-BASE.vue.ftl
浏览文件 @
f2c4f296
...
@@ -17,6 +17,14 @@ import { Util } from '@ibiz-core/utils'
...
@@ -17,6 +17,14 @@ import { Util } from '@ibiz-core/utils'
*/
*/
public treeName = '<#if ctrl.getLogicName?? && ctrl.getLogicName()??>${ctrl.getLogicName()}</#if>' ;
public treeName = '<#if ctrl.getLogicName?? && ctrl.getLogicName()??>${ctrl.getLogicName()}</#if>' ;
/**
* 树视图导航数组名称
*
* @type {string[]}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public treeNav = [];
/**
/**
* 获取多项数据
* 获取多项数据
*
*
...
...
@CONTROL/树视图/CONTROL.less.ftl
浏览文件 @
f2c4f296
<#ibizinclude>
<#ibizinclude>
../@MACRO/CSS/DEFAULT.less.ftl
../@MACRO/CSS/DEFAULT.less.ftl
</#ibizinclude>
</#ibizinclude>
.app-mob-treeview {
.treeNav {
padding-left: 14px;
.treeNav-active {
color: #705697;
}
.tree-span {
padding: 0 3px;
}
}
.tree-partition {
margin-top: 10px;
height: 8px;
background-color: #ededed;
}
.tree-icon{
color: #ccc;
font-size: 20px;
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录