提交 0f1b6078 编写于 作者: tony001's avatar tony001

修复自定义上下文大小写参数问题

上级 ae205c23
...@@ -140,7 +140,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue { ...@@ -140,7 +140,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue {
protected customViewNavContexts:any ={ protected customViewNavContexts:any ={
<#if view.getPSAppViewNavContexts()??> <#if view.getPSAppViewNavContexts()??>
<#list view.getPSAppViewNavContexts() as viewNavContext> <#list view.getPSAppViewNavContexts() as viewNavContext>
"${viewNavContext.getKey()?lower_case}":{"isRawValue":${viewNavContext.isRawValue()?c},"value":"${viewNavContext.getValue()?lower_case}"}<#if viewNavContext_has_next>,</#if> "${viewNavContext.getKey()}":{"isRawValue":${viewNavContext.isRawValue()?c},"value":"${viewNavContext.getValue()}"}<#if viewNavContext_has_next>,</#if>
</#list> </#list>
</#if> </#if>
}; };
...@@ -154,7 +154,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue { ...@@ -154,7 +154,7 @@ export default class ${srfclassname('${view.name}')}Base extends Vue {
protected customViewParams:any ={ protected customViewParams:any ={
<#if view.getPSAppViewNavParams()??> <#if view.getPSAppViewNavParams()??>
<#list view.getPSAppViewNavParams() as viewNavParam> <#list view.getPSAppViewNavParams() as viewNavParam>
"${viewNavParam.getKey()?lower_case}":{"isRawValue":${viewNavParam.isRawValue()?c},"value":"${viewNavParam.getValue()?lower_case}"}<#if viewNavParam_has_next>,</#if> "${viewNavParam.getKey()}":{"isRawValue":${viewNavParam.isRawValue()?c},"value":"${viewNavParam.getValue()}"}<#if viewNavParam_has_next>,</#if>
</#list> </#list>
</#if> </#if>
}; };
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册