Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
bc4d9549
提交
bc4d9549
编写于
11月 16, 2020
作者:
KK
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
树选择调整
上级
7eb050e2
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
29 行增加
和
9 行删除
+29
-9
CONTROL-BASE.template.ftl
@CONTROL/树视图/CONTROL-BASE.template.ftl
+3
-3
CONTROL-BASE.vue.ftl
@CONTROL/树视图/CONTROL-BASE.vue.ftl
+25
-5
MOBPICUPVIEW.vue.ftl
@CONTROL/视图布局面板/@MACRO/MOBPICUPVIEW.vue.ftl
+1
-1
未找到文件。
@CONTROL/树视图/CONTROL-BASE.template.ftl
浏览文件 @
bc4d9549
...
...
@@ -5,8 +5,8 @@
<#else>
<div class="treeNav">
<template v-for="(item,index) in treeNav">
<ion-label :key="i
ndex
" 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="i
ndex
+'span'" v-if="index+1 < treeNav.length">></span>
<ion-label :key="i
tem.id
" 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="i
tem.id
+'span'" v-if="index+1 < treeNav.length">></span>
</template>
</div>
<div class="tree-partition" v-if="valueNodes.length > 0" ></div>
...
...
@@ -31,7 +31,7 @@
<ion-list v-else-if="viewType == 'DEMOBPICKUPTREEVIEW' && !isSingleSelect">
<template v-for="item in valueNodes">
<ion-item :key="item.srfkey">
<ion-checkbox color="secondary" v-if="viewType == 'DEMOBPICKUPTREEVIEW' && !isSingleSelect" :checked="item.selected" :value="item.srfkey" slot="end" @ionChange="onChecked"></ion-checkbox>
<ion-checkbox color="secondary" v-if="viewType == 'DEMOBPICKUPTREEVIEW' && !isSingleSelect"
:ref="item.srfkey+'checkbox'"
:checked="item.selected" :value="item.srfkey" slot="end" @ionChange="onChecked"></ion-checkbox>
<ion-label>{{item.text}}</ion-label>
</ion-item>
</template>
...
...
@CONTROL/树视图/CONTROL-BASE.vue.ftl
浏览文件 @
bc4d9549
...
...
@@ -183,18 +183,29 @@ import { Util } from '@ibiz-core/utils'
public parseNodes(nodes:any) {
let rootNodes :any= [];
let valueNodes :any= [];
nodes.forEach((item:any) => {
for (let index = 0; index < nodes.length; index++) {
const item = nodes[index];
let ele :any= this.$refs[item.srfkey+'checkbox'];
if(!item.leaf){
rootNodes.push(item);
}else{
if(this.selectedNodes.findIndex((temp:any)=>{return temp.srfkey == item.srfkey}) > -1){
item.selected = true;
if(ele && ele[0]){
ele[0].ariaChecked = true;
}
}else{
item.selected = false;
if(ele && ele[0]){
ele[0].ariaChecked = false;
}
}
valueNodes.push(item);
}
}
);
}
this.rootNodes = rootNodes;
this.valueNodes = valueNodes;
this.$forceUpdate();
}
/**
...
...
@@ -366,6 +377,11 @@ import { Util } from '@ibiz-core/utils'
if (Object.is('refresh_parent', action)) {
this.refresh_parent();
}
if (Object.is('refresh', action)) {
this.selectedNodes = data;
this.parseNodes(this.nodes);
this.parseNodes(this.nodes);
}
});
}
if(AppCenterService && AppCenterService.getMessageCenter()){
...
...
@@ -788,15 +804,19 @@ ${P.getCtrlCode(childCtrl, 'CONTROL.html').code}
return;
}
let { value } = detail;
this.valueNodes.forEach((item: any, index: number) => {
for (let index = 0; index < this.valueNodes.length; index++) {
const item = this.valueNodes[index];
if (Object.is(item.srfkey, value)) {
if (detail.checked) {
this.selectedNodes.push(this.valueNodes[index]);
} else {
this.selectedNodes.splice(this.selectedNodes.findIndex((i: any) => i.srfkey === item.srfkey), 1)
let i = this.selectedNodes.findIndex((i: any) => i.srfkey === item.srfkey)
if(i>-1){
this.selectedNodes.splice(i, 1)
}
}
}
}
});
this.$emit('selectchange', this.selectedNodes);
}
...
...
@CONTROL/视图布局面板/@MACRO/MOBPICUPVIEW.vue.ftl
浏览文件 @
bc4d9549
...
...
@@ -32,7 +32,7 @@ ${P.getCtrlCode('pickupviewpanel', 'CONTROL.html').code}
</van-action-sheet>
</#if>
</#if>
<div class="selectedCount">已选择:{{viewSelections.length}}<ion-icon name="chevron-up-outline"></ion-icon></div>
<div class="selectedCount"
@click="select_click"
>已选择:{{viewSelections.length}}<ion-icon name="chevron-up-outline"></ion-icon></div>
<ion-button class="pick-btn" @click="onClickOk" :disabled="viewSelections.length === 0">{{$t('app.button.confirm')}}</ion-button>
</div>
</div>
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录