文件属性表格类型vue端返回数据调整

This commit is contained in:
anhc 2022-06-28 17:04:01 +08:00
parent dbd7e2d13b
commit 1e3ab9da10
3 changed files with 5 additions and 0 deletions

View File

@ -868,6 +868,9 @@ public class PalManageWeb extends ActionWeb {
} else if ("awsorg".equals(attr.getType())) {
JSONObject refObj = JSONObject.parseObject(ref);
obj.put("awsorgRef", refObj);
} else if ("table".equals(attr.getType())){
JSONObject refObj = JSONObject.parseObject(ref);
obj.put("tableRef", refObj);
} else {
obj.put("ref", attr.getRef());
}

View File

@ -123,6 +123,8 @@ public class PalManageUtil {
}
}
refName = StringUtils.join(refNameList, ",") + "(" + (multiple ? "多选" : "单选") + ")";
}else if ("table".equals(type)){
refName = "";
}
return refName;
}