修复:平台后台显示用户地址和坐标

仅在已授权的用户地址列表与详情接口恢复真实地址、经度和纬度。前端增加六位小数、未填写提示及编辑回填,并同步安全规范、项目文档和操作日志。
This commit is contained in:
czl231
2026-08-11 20:49:28 +08:00
parent e1e8579a2b
commit e375e9851b
8 changed files with 219 additions and 7 deletions

View File

@@ -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);
}