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

Compare commits

..

2 Commits

@ -12,10 +12,8 @@ import com.ruoyi.system.service.TdMeetingService;
import com.ruoyi.web.controller.manager.TdMeetingManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.time.LocalDate;
@ -91,5 +89,15 @@ public class SysMeetingnumController extends BaseController {
return AjaxResult.success(obj);
}
/**
*
*/
@GetMapping("/detail/{id}")
public String view(@PathVariable("id") String id, ModelMap mmap) {
TdMeeting meeting = tdMeetingManager.selectTdMeeting(id);
mmap.put("meeting", meeting);
return prefix + "/detail";
}
}
Loading…
Cancel
Save