|
|
@@ -75,14 +75,20 @@ export function getBillGroup (groupItem, groupIndex, isDetail) {
|
|
|
billModel.appwidth = fieldItem.appwidth
|
|
|
billModel.length = fieldItem.length
|
|
|
billModel.isdefault = fieldItem.isdefault
|
|
|
- billModel.caption = fieldItem.caption
|
|
|
- billModel.type = fieldItem.type//前端类型
|
|
|
- billModel.sourcetype = fieldItem.sourcetype//字段原类型
|
|
|
billModel.readOnly = (fieldItem.readOnly || isDetail)
|
|
|
billModel.field = fieldItem.field
|
|
|
billModel.logicType = fieldItem.logicType
|
|
|
billModel.findFunctionName = fieldItem.findfunctionname
|
|
|
billModel.allowBlank = (fieldItem.allowBlank || isDetail)
|
|
|
+ billModel.caption = fieldItem.caption
|
|
|
+
|
|
|
+ billModel.type = fieldItem.type//前端类型
|
|
|
+ billModel.sourcetype = fieldItem.sourcetype//字段原类型
|
|
|
+ if (billModel.type === 'MF' && !billGroup.isForm) {
|
|
|
+ //移动端不支持从表的放大镜多选类型
|
|
|
+ //将多选类型识别为放大镜单选类型
|
|
|
+ billModel.type = 'DF'
|
|
|
+ }
|
|
|
|
|
|
billModel.value = fieldItem.value
|
|
|
billModel.display = fieldItem.display
|