修复:平台后台显示用户地址和坐标
仅在已授权的用户地址列表与详情接口恢复真实地址、经度和纬度。前端增加六位小数、未填写提示及编辑回填,并同步安全规范、项目文档和操作日志。
This commit is contained in:
@@ -189,6 +189,12 @@ export function displayResourceField(
|
||||
if (hasOptionSource && field.unknownValueLabel) {
|
||||
return `${field.unknownValueLabel}(${String(value)})`;
|
||||
}
|
||||
if (field.displayPrecision != null) {
|
||||
const numericValue = Number(value);
|
||||
return Number.isFinite(numericValue)
|
||||
? numericValue.toFixed(field.displayPrecision)
|
||||
: String(value);
|
||||
}
|
||||
if (field.type === 'identity' && typeof value === 'string') {
|
||||
return relationLabel(field, value, relationOptions);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user