Skip to content

Commit

Permalink
【issues/6113】online表单生成代码, 关联表生成vue3模板里的 *.data.ts 这个文件会有报错
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdaiscott committed Apr 17, 2024
1 parent fb95cf7 commit 13d00a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ export const superQuerySchema = {
fields: {
<#list sub.colums as subCol>
<#-- update-begin---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && po.fieldName !='delFlag'>
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && subCol.fieldName !='delFlag'>
<#-- update-end---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
${superQueryFieldListForVue3(subCol,subCol_index)},
</#if>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ export const superQuerySchema = {
fields: {
<#list sub.colums as subCol>
<#-- update-begin---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && po.fieldName !='delFlag'>
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && subCol.fieldName !='delFlag'>
<#-- update-end---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
${superQueryFieldListForVue3(subCol,subCol_index)},
</#if>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ export const superQuerySchema = {
fields: {
<#list sub.colums as subCol>
<#-- update-begin---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && po.fieldName !='delFlag'>
<#if subCol.isShowList =='Y' && subCol.fieldName !='id' && subCol.fieldName !='delFlag'>
<#-- update-end---author:chenrui ---date:20240108 for:[issues/5755]vue代码不加入逻辑删除字段---------- -->
${superQueryFieldListForVue3(subCol,subCol_index)},
</#if>
Expand Down

0 comments on commit 13d00a8

Please sign in to comment.