Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
2ebfd867
提交
2ebfd867
编写于
9月 10, 2020
作者:
zhujiamin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加自动分组情况
上级
aabf76ee
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
49 行增加
和
19 行删除
+49
-19
CONTROL-BASE.vue.ftl
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
+49
-19
未找到文件。
@CONTROL/移动端多项数据控件/CONTROL-BASE.vue.ftl
浏览文件 @
2ebfd867
...
@@ -157,13 +157,21 @@
...
@@ -157,13 +157,21 @@
public isEnableGroup:boolean = <#if ctrl.isEnableGroup?? && ctrl.isEnableGroup()??> ${ctrl.isEnableGroup()?c}<#else>false</#if>;
public isEnableGroup:boolean = <#if ctrl.isEnableGroup?? && ctrl.isEnableGroup()??> ${ctrl.isEnableGroup()?c}<#else>false</#if>;
/**
/**
* 分组细节
*
代码表
分组细节
*
*
* @type {
boolean
}
* @type {
Object
}
* @memberof ${srfclassname('${ctrl.codeName}')}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
*/
public group_detail:any = <#if ctrl.getGroupPSCodeList?? && ctrl.getGroupPSCodeList()?? && ctrl.getGroupPSCodeList().getAllPSCodeItems?? && ctrl.getGroupPSCodeList().getAllPSCodeItems()??> <#assign codelist = ctrl.getGroupPSCodeList().getAllPSCodeItems()> [<#list codelist as item> <#if item.getValue?? && item.getValue()?? && item.getName?? && item.getName()??>{"value":'${item.getValue()}',"text":'${item.getName()}'},</#if></#list>]<#else>[]</#if>;
public group_detail:any = <#if ctrl.getGroupPSCodeList?? && ctrl.getGroupPSCodeList()?? && ctrl.getGroupPSCodeList().getAllPSCodeItems?? && ctrl.getGroupPSCodeList().getAllPSCodeItems()??> <#assign codelist = ctrl.getGroupPSCodeList().getAllPSCodeItems()> [<#list codelist as item> <#if item.getValue?? && item.getValue()?? && item.getName?? && item.getName()??>{"value":'${item.getValue()}',"text":'${item.getName()}'},</#if></#list>]<#else>[]</#if>;
/**
* 分组模式
*
* @type {string}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public group_mode = <#if ctrl.getGroupMode?? && ctrl.getGroupMode()??>'${ctrl.getGroupMode()}'<#else>''</#if>;
/**
/**
* 分组数据
* 分组数据
*
*
...
@@ -551,45 +559,67 @@
...
@@ -551,45 +559,67 @@
this.setSlidingDisabled(item);
this.setSlidingDisabled(item);
});
});
if(this.isEnableGroup){
if(this.isEnableGroup){
this.getGroupData(this.items);
if (this.group_mode == 'AUTO') {
this.getGroupDataAuto(this.items);
}else{
this.getGroupDataByCodeList(this.items);
}
}
}
return response;
return response;
}
}
/**
/**
* 获取分组数据
*
代码表分组,
获取分组数据
*
*
* @memberof
Mob
* @memberof
${srfclassname('${ctrl.codeName}')}
*/
*/
public getGroupData(items:any){
public getGroupDataByCodeList(items:any){
let data:any = [];
let group:Array<any> = [];
let iobj:any = {};
this.group_detail.forEach((obj:any,index:number)=>{
this.group_detail.forEach((obj:any,index:number)=>{
let
idata
let
data:any = [];
items.forEach((item:any,i:number)=>{
items.forEach((item:any,i:number)=>{
if (item[this.group_field] === obj.value) {
if (item[this.group_field] === obj.value) {
if(!iobj[ item[this.group_field] ]){
data.push(item);
iobj[ item[this.group_field] ] = item[this.group_field];
data.push(this.filterByTag(items,item[this.group_field]));
}
}
}
})
})
group.push(data);
})
})
data
.forEach((arr:any,index:number)=>{
group
.forEach((arr:any,index:number)=>{
this.group_data[index] = {};
this.group_data[index] = {};
this.group_data[index].text = this.group_detail[
index
].text;
this.group_data[index].text = this.group_detail[
index
].text;
this.group_data[index].items = arr;
this.group_data[index].items = arr;
})
})
this.group_data.forEach((item:any,i:number)=>{
if (item.items.length == 0) {
this.group_data.splice(i,1);
}
})
}
}
/**
/**
* 单条件过滤数组数据
*
* 自动分组,获取分组数据
*
*
* @memberof ${srfclassname('${ctrl.codeName}')}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
*/
public filterByTag(arr:Array<number>, tag:any) {
public getGroupDataAuto(items:any){
return arr.filter((item:any) => item[this.group_field] == tag);
let groups:Array<any> = [];
items.forEach((item:any)=>{
if(item.hasOwnProperty(this.group_field)){
groups.push(item[this.group_field]);
}
})
groups = [...new Set(groups)];
groups.forEach((group:any,index:number)=>{
this.group_data[index] = {};
this.group_data[index].items = [];
items.forEach((item:any,i:number)=>{
if (group == item[this.group_field]) {
this.group_data[index].text = group;
this.group_data[index].items.push(item);
}
})
})
}
}
/**
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录