Commit 01c3e10c authored by 王万里's avatar 王万里

fix: 字段只读

parent 95fe3217
...@@ -146,7 +146,7 @@ angular.module('flowableModeler').controller('FieldReadConfigPopupCtrl', ['$root ...@@ -146,7 +146,7 @@ angular.module('flowableModeler').controller('FieldReadConfigPopupCtrl', ['$root
pItem.defaultUnit = item.Unit pItem.defaultUnit = item.Unit
pItem.defaultValue = item.Type pItem.defaultValue = item.Type
pItem.defaultChecked = item.IsShow === "1" ? true : false pItem.defaultChecked = item.IsShow === "1" ? true : false
pItem.defaultIsRequired = item.IsRequired pItem.defaultIsRequired = item.IsRequired === "true" ? true : false
} }
}) })
}) })
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<th>字段</th> <th>字段</th>
<th>默认值</th> <th>默认值</th>
<th>单位</th> <th>单位</th>
<th>必填</th> <th>只读</th>
</tr> </tr>
<tr ng-repeat="child in childFieldObj.properties"> <tr ng-repeat="child in childFieldObj.properties">
<td style="width: 20px;"> <td style="width: 20px;">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment