Commit c91308fd59f1a9bde24bdcf1d8c46fc6dc7b9fc7
1 parent
f330b0303f
Exists in
master
and in
6 other branches
查询号bug修改
Showing 2 changed files with 7 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ViewController.java
View file @
c91308f
| ... | ... | @@ -239,6 +239,11 @@ |
| 239 | 239 | markFrameText(builder, (String) data.get("hivkt")); |
| 240 | 240 | data.remove("hivkt"); |
| 241 | 241 | } |
| 242 | + if (data.containsKey("isZhuan")) { | |
| 243 | + builder.moveToBookmark("isZhuan"); | |
| 244 | + markFrameText(builder, (String) data.get("isZhuan")); | |
| 245 | + data.remove("isZhuan"); | |
| 246 | + } | |
| 242 | 247 | } catch (Exception e) { |
| 243 | 248 | e.printStackTrace(); |
| 244 | 249 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
c91308f