Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
68a6d5df
提交
68a6d5df
编写于
8月 19, 2020
作者:
Neuromancer255
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
多数据部件全选ui逻辑调整
上级
bb96071a
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
72 行增加
和
46 行删除
+72
-46
CONTROL-BASE.template.ftl
@CONTROL/移动端多项数据控件/CONTROL-BASE.template.ftl
+20
-12
CONTROL-BASE.vue.ftl
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
+52
-34
未找到文件。
@CONTROL/移动端多项数据控件/CONTROL-BASE.template.ftl
浏览文件 @
68a6d5df
...
...
@@ -43,10 +43,11 @@
<#--多数据视图||多数据视图(部件视图)-->
<template v-if="(viewType == 'DEMOBMDVIEW') && controlStyle != 'SWIPERVIEW' ">
<div class="selectall">
<ion-checkbox :checked="selectAllIschecked" v-show="showCheack" @ionChange="checkboxAll"></ion-checkbox>
<ion-label class="selectal-label" v-show="showCheack">全选</ion-label>
<van-checkbox class="checkAllBtn" v-model="selectAllIschecked" v-show="showCheack" @click="checkboxAll">全选</van-checkbox>
</div>
<ion-item-sliding :ref="item.srfkey" v-for="(item, index) in items" @click="item_click(item)" :key="index" class="app-mob-mdctrl-item">
<van-checkbox-group v-model="checkedResult" ref="checkboxGroup">
<van-cell-group>
<van-swipe-cell v-for="(item, index) in items" :key="index" class="app-mob-mdctrl-item">
<#-- BENGIN:输出界面行为组 -->
<@outPutActionGroup ctrl />
<#-- END:输出界面行为组 -->
...
...
@@ -55,20 +56,27 @@
<@outPutItemLaoutPanel ctrl />
<#-- END:输出项布局面板 -->
<#else>
<ion-item>
<ion-checkbox :checked="item.checked" v-show="showCheack" @click.stop="checkboxSelect(item)"></ion-checkbox>
<van-cell :ref="item.srfkey" @click="item_click(item)">
<#--实体列表项集合-->
<#if ctrl.getPSDEListItems()??>
<!-- 列表视图样式 -->
<app-list-default <#if ctrl.getPSDEListItems()??>:dataItemNames = "[<#list ctrl.getPSDEListItems() as item><#if item.getDataItemName()??>'${item.getDataItemName()}',</#if></#list>]"</#if> :item="item" major="<#if appde.getMajorPSAppDEField()??>${appde.getMajorPSAppDEField().getCodeName()?lower_case}<#else>srfmajortext</#if>" v-if="controlStyle.substring(0,8) === 'LISTVIEW'"></app-list-default>
<!-- 图标视图样式 -->
<app-icon-list :item="item" v-if="controlStyle === 'ICONVIEW'"></app-icon-list>
<!-- 列表视图样式 -->
<app-list-default <#if ctrl.getPSDEListItems()??>:dataItemNames = "[<#list ctrl.getPSDEListItems() as item><#if item.getDataItemName()??>'${item.getDataItemName()}',</#if></#list>]"</#if> :item="item" major="<#if appde.getMajorPSAppDEField()??>${appde.getMajorPSAppDEField().getCodeName()?lower_case}<#else>srfmajortext</#if>" v-if="controlStyle.substring(0,8) === 'LISTVIEW'"></app-list-default>
<!-- 图标视图样式 -->
<app-icon-list :item="item" v-if="controlStyle === 'ICONVIEW'"></app-icon-list>
<template #right-icon>
<van-checkbox :checked="item.checked" v-show="showCheack" :name="item.mobentityname"/>
</template>
<#else>
<div>暂无数据</div>
<div>暂无数据</div>
</#if>
</ion-item>
</van-cell>
<template #right>
<van-button square type="danger" text="删除" style="height:100%" @click="remove([item])"/>
</template>
</#if>
</ion-item-sliding>
</van-swipe-cell>
</van-cell-group>
</van-checkbox-group>
<ion-button size="small" color="secondary" v-if="!isTempMode && !allLoaded" style ="position: relative;left: calc( 50% - 44px);" @click="loadBottom">{{$t('app.button.loadmore')}}</ion-button>
</template>
<template v-else-if="(viewType == 'DEMOBMDVIEW9')">
...
...
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
浏览文件 @
68a6d5df
...
...
@@ -565,26 +565,6 @@
return response;
}
/**
* 点击回调事件
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public item_click(item:any){
if(this.showCheack){
let count = this.selectedArray.findIndex((i) => {
return i.mobentityid == item.mobentityid;
});
if (count === -1) {
this.selectedArray.push(item);
} else {
this.selectedArray.splice(count, 1);
}
} else {
this.goPage(item)
}
}
/**
* 点击列表数据跳转
*
...
...
@@ -743,6 +723,34 @@
*/
@Prop({default:false}) showCheack?: boolean;
/**
* 全选按钮选中状态
*
* @memberof ${srfclassname('${ctrl.name}')}
*/
public selectAllIschecked = false;
/**
* 列表项点击回调事件
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public item_click(item:any){
if(this.showCheack){
let count = this.selectedArray.findIndex((i) => {
return i.mobentityid == item.mobentityid;
});
if (count === -1) {
this.selectedArray.push(item);
} else {
this.selectedArray.splice(count, 1);
}
this.checkboxSelect(item)
} else {
this.goPage(item)
}
}
/**
* 选中或取消事件
*
...
...
@@ -750,20 +758,20 @@
*/
public checkboxSelect(item:any){
let count = this.selectedArray.findIndex((i) => {
return i.
${appde.getKeyPSAppDEField().getCodeName()?lower_case} == item.${appde.getKeyPSAppDEField().getCodeName()?lower_case}
;
return i.
mobentityid == item.mobentityid
;
});
let re =
fals
e;
let re =
tru
e;
if(count == -1){
re = true;
this.selectedArray.push(item);
}else{
this.selectedArray.splice(count,1);
re = false;
}
this.items.forEach((_item:any,index:number)=>{
if(_item.
${appde.getKeyPSAppDEField().getCodeName()?lower_case} == item.${appde.getKeyPSAppDEField().getCodeName()?lower_case}
){
if(_item.
mobentityid == item.mobentityid
){
this.items[index].checked = re;
}
});
console.log(this.items);
this.$forceUpdate();
}
}
/**
...
...
@@ -771,8 +779,8 @@
*
* @memberof ${srfclassname('${ctrl.name}')}
*/
public checkboxAll(
item:any
) {
this.
selectAllIschecked = item.detail.checked
;
public checkboxAll() {
this.
$refs.checkboxGroup.toggleAll()
;
if(this.selectAllIschecked){
this.selectedArray = JSON.parse(JSON.stringify(this.items));
}else{
...
...
@@ -781,17 +789,27 @@
this.items.forEach((item:any,index:number)=>{
this.items[index].checked = this.selectAllIschecked
});
this.$forceUpdate();
}
/**
*
全选按钮选中状态
*
监听选中数组(全选,反选)
*
* @memberof ${srfclassname('${ctrl.name}')}
*/
public selectAllIschecked = false;
@Watch('selectedArray')
onItemSelectChange(newVal: any, oldVal: any) {
if (!newVal) {
return;
}
let flag = this.items.every((currVal: any)=>{
return currVal.checked === true
})
if(flag){
this.selectAllIschecked = true
} else {
this.selectAllIschecked = false
}
}
/**
* 关闭滑动项
...
...
wanghn255
@wanghn255
被提及 commit
a3fbc4c6
·
8月 19, 2020
被提及 commit
a3fbc4c6
被提及 commit a3fbc4c6009365a136275ccebe89e74064ad9615
切换提交列表
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录