Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
bea8bd84
提交
bea8bd84
编写于
9月 15, 2020
作者:
Neuromancer255
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
多数据视图分组代码表 --fix8
上级
23fa8c67
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
60 行增加
和
4 行删除
+60
-4
MOBMDVIEW.vue.ftl
@VIEW/@MACRO/MOBMDVIEW.vue.ftl
+60
-4
未找到文件。
@VIEW/@MACRO/MOBMDVIEW.vue.ftl
浏览文件 @
bea8bd84
...
...
@@ -87,7 +87,6 @@
if (mdctrl) {
let response = await mdctrl.quickSearch(this.query);
if (response) {
<#-- console.log(1231231231); -->
}
}
}
...
...
@@ -325,9 +324,62 @@
<#noparse>console.log(`----${quickGroupCodeList.tag}----代码表不存在`);</#noparse>
});
}
this.parentCodeItem(this.quickGroupModel);
this.quickGroupModel.forEach((item:any) => {
if (item.default) {
this.quickGroupValueChange(item.id)
}
})
</#if>
}
/**
* 快速分组代码表父代码项处理
*
* @memberof TaskMobMDViewBase
*/
public parentCodeItem (inputArray:Array<any>) {
// 对代码项分类(父代码项,非父代码项)
let parentItems:Array<any> = []; //父代码项
let tempList :Array<any> = []; //非父代码项
inputArray.forEach((codeItem:any) => {
if (codeItem.subItem) {
parentItems.push(codeItem);
} else {
tempList.push(codeItem);
}
})
// 遍历父代码项的子项和非父代码项,补全子项的内容
let subItems:Array<any> = [];
parentItems.forEach((parent:any) => {
parent.subItem.forEach((item:any) => {
tempList.forEach((codeItem:any) => {
if (codeItem.id.toLowerCase() === item.id.toLowerCase()) {
item = Object.assign(item,codeItem);
subItems.push(item)
}
})
})
})
// 替换父代码项
this.quickGroupModel.forEach((codeItem:any) => {
parentItems.forEach((parentItem:any) => {
if (parentItem.id.toLowerCase() === codeItem.id.toLowerCase()) {
codeItem = Object.assign(parentItem,codeItem);
}
})
})
// 删除子项
subItems.forEach((subItem:any) => {
this.quickGroupModel.splice(this.quickGroupModel.findIndex((item:any) => {
item.id === subItem.id;
}),1)
})
}
/**
* 处理快速分组模型动态数据部分(%xxx%)
*
...
...
@@ -360,9 +412,13 @@
*
* @memberof ${srfclassname('${view.name}')}Base
*/
public quickGroupValueChange ($event:any) {
if ($event) {
this.quickGroupData = $event;
public quickGroupValueChange (groupId:any) {
if (groupId) {
this.quickGroupModel.forEach((group:any) => {
if (group.id === groupId) {
this.quickGroupData = group;
}
})
if (this.isEmitQuickGroupValue) {
}
...
...
wanghn255
@wanghn255
被提及 commit
286e9c40
·
9月 15, 2020
被提及 commit
286e9c40
被提及 commit 286e9c404bf214394fb960e2c90c426873e07466
切换提交列表
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录