Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/ad3ebf8f0c81a365cd7c32746f080e69977a6c10?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix:会议详情

pg_adapter
wangxy 9 months ago
parent 8fac5179cd
commit ad3ebf8f0c

@ -107,4 +107,16 @@ public class TdMeetingController extends BaseController {
}
/**
*
*/
@RequiresPermissions("system:tdmeeting:view")
@GetMapping("/view/{id}")
public String view(@PathVariable("id") String id, ModelMap mmap) {
TdMeeting meeting = meetingManager.selectTdMeeting(id);
mmap.put("meeting", meeting);
return prefix + "/view";
}
}

Loading…
Cancel
Save