- Ext.BLANK_IMAGE_URL = 'ext-3.1.0/resources/p_w_picpaths/default/s.gif';
- #content {
- width: 100%;
- height: 100%;
- }
- .add {
- background-p_w_picpath: url(p_w_picpaths/icon/add.gif) !important;
- }
- .update {
- background-p_w_picpath: url(p_w_picpaths/icon/update.gif) !important;
- }
- .delete {
- background-p_w_picpath: url(p_w_picpaths/icon/delete.gif) !important;
- }
- .assign {
- background-p_w_picpath: url(p_w_picpaths/icon/list-items.gif) !important;
- }
- .ux-combo-selectall{
- padding:3px;
- }
- .ux-combo-selectall-icon-checked{
- background: transparent url(ext-3.1.0/resources/p_w_picpaths/default/menu/checked.gif);
- }
- .ux-combo-selectall-icon-unchecked {
- background: transparent url(ext-3.1.0/resources/p_w_picpaths/default/menu/unchecked.gif);
- }
- .ux-combo-selectall-icon {
- text-indent:1.8em;
- background-position: 3px 2px ! important;
- background-repeat:no-repeat ! important;
- height:22px;
- line-height:20px;
- font-size:12px;
- font-weight:bold;
- -moz-user-select:none;
- }
- .ux-lovcombo-icon {
- width:16px;
- height:16px;
- float:left;
- background-position: -1px -1px ! important;
- background-repeat:no-repeat ! important;
- }
- .ux-lovcombo-icon-checked {
- background: transparent url(ext-3.1.0/resources/p_w_picpaths/default/menu/checked.gif);
- }
- .ux-lovcombo-icon-unchecked {
- background: transparent url(ext-3.1.0/resources/p_w_picpaths/default/menu/unchecked.gif);
- }
- /* IE patch */
- .ext-ie .ux-lovcombo-item-text {
- position:absolute;
- left:16px;
- top:3px;
- }
- .ext-ie .ux-lovcombo-icon {
- float:none;
- }
- .ext-ie .x-combo-list-item {
- position:relative;
- }
创新互联主要从事成都做网站、网站建设、网页设计、企业做网站、公司建网站等业务。立足成都服务贵港,10余年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-86922220
后台:
- /**计算装机量(分地市)**/
- //http://localhost:8080/smartjsmgr/statistiweb.sp?method=getInstallSiteByArea
- @RequestMapping(params = "method=getInstallSiteByArea", method = RequestMethod.POST)
- public ModelAndView getInstallSiteByArea(HttpServletRequest request,HttpServletResponse response){
- Map
map = new HashMap (); - List
list=new ArrayList (); - try {
- list=statistiwebService.getInstallSiteByArea();
- if (list.size()>0) {
- map.put("date", list);
- map.put("success", "true");
- }else{
- map.put("success", "false");
- }
- } catch (Exception e) {
- // TODO: handle exception
- e.printStackTrace();
- logger.error("查询计算装机量(分地市)失败!!!");
- }
- return new ModelAndView("jsonView",map);
- }