fix: 触控交互

This commit is contained in:
stream 2026-03-24 10:59:50 +08:00
parent 5be7f81924
commit 8065faebcb

View File

@ -40,7 +40,7 @@ public class TiVehicleFunctionServiceImpl extends ServiceImpl<TiVehicleFunctionM
@Override
public JSONObject selectTiVehicleFunctionDetailById(Long id) {
JSONObject jsonObject = JSONObject.from(this.getById(id));
jsonObject.put("funcName", id== 26 ? "首页" : "设置");
jsonObject.put("funcName", sysDictDataService.selectDictLabel("ti_function_config", jsonObject.getString("funcKey")));
return jsonObject;
}