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/0fcc6a4a2ab4c9bf6daaa47b3f7c135e63926553?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
4 deletions
@ -12,10 +12,8 @@ import com.ruoyi.system.service.TdMeetingService;
import com.ruoyi.web.controller.manager.TdMeetingManager ;
import com.ruoyi.web.controller.manager.TdMeetingManager ;
import org.apache.shiro.authz.annotation.RequiresPermissions ;
import org.apache.shiro.authz.annotation.RequiresPermissions ;
import org.springframework.stereotype.Controller ;
import org.springframework.stereotype.Controller ;
import org.springframework.web.bind.annotation.GetMapping ;
import org.springframework.ui.ModelMap ;
import org.springframework.web.bind.annotation.PostMapping ;
import org.springframework.web.bind.annotation.* ;
import org.springframework.web.bind.annotation.RequestMapping ;
import org.springframework.web.bind.annotation.ResponseBody ;
import javax.annotation.Resource ;
import javax.annotation.Resource ;
import java.time.LocalDate ;
import java.time.LocalDate ;
@ -91,5 +89,15 @@ public class SysMeetingnumController extends BaseController {
return AjaxResult . success ( obj ) ;
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" ;
}
}
}