提交 455cbdfd 编写于 作者: Neuromancer255's avatar Neuromancer255

Revert "多数据视图分组代码表 --fix1"

This reverts commit 4ba86d77.
上级 3241d13a
......@@ -11,6 +11,25 @@
</#ibizinclude>
<#if view.hasPSControl('searchform')>
<#assign searchform = view.getPSControl('searchform')>
<#if view.getQuickGroupPSCodeList?? && view.getQuickGroupPSCodeList()??>
<#assign quickGroup = view.getQuickGroupPSCodeList()>
/**
* 快速分组代码表
*
* @type {Array<any>}
* @memberof ${srfclassname('${view.name}')}Base
*/
public fastGroupCodeList: Array<any> = [
<#if quickGroup.getAllPSCodeItems?? && quickGroup.getAllPSCodeItems()??>
<#list quickGroup.getAllPSCodeItems() as item>
{currIndex:${item_index},text:'${item.getText()}',data:'${item.getData()}',<#if item.getPSCodeItems?? && item.getPSCodeItems()??>codeItems:${item.getPSCodeItems()}</#if>},
</#list>
</#if>
]
</#if>
/**
* 搜索表单状态
*
......@@ -93,24 +112,7 @@
}
</#if>
<#-- 输出快速搜索:END -->
<#-- 输出快速分组代码表:BEGIN -->
<#if view.getQuickGroupPSCodeList?? && view.getQuickGroupPSCodeList()??>
<#assign quickGroup = view.getQuickGroupPSCodeList()>
/**
* 快速分组代码表
*
* @type {Array<any>}
* @memberof ${srfclassname('${view.name}')}Base
*/
public fastGroupCodeList: Array<any> = [
<#if quickGroup.getAllPSCodeItems?? && quickGroup.getAllPSCodeItems()??>
<#list quickGroup.getAllPSCodeItems() as item>
{currIndex:${item_index},text:'${item.getText()}',data:'${item.getData()}',<#if item.getPSCodeItems?? && item.getPSCodeItems()??>codeItems:${item.getPSCodeItems()}</#if>},
</#list>
</#if>
]
</#if>
<#-- 输出快速分组代码表:END -->
/**
* 是否单选
*
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册