vue主键为输入框的时候,不验证主键重复问题

This commit is contained in:
thinkgem
2025-06-27 17:13:31 +08:00
parent 26587e106f
commit bf8b05a49e

View File

@@ -491,7 +491,7 @@ for (c in table.columnList){
<%
for (c in table.columnList){
if (c.isPk == '1' || c.showType == 'hidden'){ %>
${c.attrName}: record.value.${c.attrName},
${c.attrName}: record.value.${c.attrName} || data.${c.attrName},
<%
}
}