模板,表格,登陆修改

This commit is contained in:
谢洪龙
2017-07-27 16:55:13 +08:00
parent 65a221f013
commit 548e91b0e0
985 changed files with 242952 additions and 569 deletions
@@ -1,6 +1,7 @@
package com.ifish.controller;
import com.ifish.helper.SecurityService;
import com.ifish.util.SpringSecurityUtils;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
@@ -10,6 +11,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.jsp.jstl.core.Config;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
@@ -64,6 +66,29 @@ public class Index {
public ModelAndView test1() {
ModelAndView mv = new ModelAndView();
mv.setViewName("index");
mv.addObject("myjs", "<!-- Other plugins ( load only nessesary plugins for every page) -->\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.pie.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.resize.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.time.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.growraf.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.categories.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.stack.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/jquery.flot.tooltip.min.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/flot/date.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/sparklines/jquery.sparkline.js\"></script>\n"
+ " <script src=\"static/assets/plugins/charts/pie-chart/jquery.easy-pie-chart.js\"></script>\n"
+ " <script src=\"static/assets/plugins/forms/icheck/jquery.icheck.js\"></script>\n"
+ " <script src=\"static/assets/plugins/forms/tags/jquery.tagsinput.min.js\"></script>\n"
+ " <script src=\"static/assets/plugins/forms/tinymce/tinymce.min.js\"></script>\n"
+ " <script src=\"static/assets/plugins/misc/highlight/highlight.pack.js\"></script>\n"
+ " <script src=\"static/assets/plugins/misc/countTo/jquery.countTo.js\"></script>\n"
+ " <script src=\"static/assets/plugins/ui/weather/skyicons.js\"></script>\n"
+ " <script src=\"static/assets/plugins/ui/notify/jquery.gritter.js\"></script>\n"
+ " <script src=\"static/assets/plugins/ui/calendar/fullcalendar.js\"></script>\n"
+ " <script src=\"static/assets/js/jquery.sprFlat.js\"></script>\n"
+ " <script src=\"static/assets/js/app.js\"></script>\n"
+ " <script src=\"static/assets/js/pages/dashboard.js\"></script>");
return mv;
}