fix: 手持下拉框
This commit is contained in:
@@ -932,8 +932,8 @@ public class SlitterServiceImpl implements SlitterService {
|
|||||||
JSONArray jsonArray = list.stream()
|
JSONArray jsonArray = list.stream()
|
||||||
.map(item -> {
|
.map(item -> {
|
||||||
JSONObject jsonObject = new JSONObject();
|
JSONObject jsonObject = new JSONObject();
|
||||||
jsonObject.put("text", item.getPoint_code());
|
jsonObject.put("text", item.getPoint_name());
|
||||||
jsonObject.put("value", item.getPoint_name());
|
jsonObject.put("value", item.getPoint_code());
|
||||||
return jsonObject;
|
return jsonObject;
|
||||||
})
|
})
|
||||||
.collect(Collectors.toCollection(JSONArray::new));
|
.collect(Collectors.toCollection(JSONArray::new));
|
||||||
|
|||||||
Reference in New Issue
Block a user