十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
我用FineReport开发了挺多报表,但集成天气预报这样提高交互和人性化的还是第一次,所以跟大家分享下。
成都创新互联公司专注于金口河企业网站建设,响应式网站建设,商城网站建设。金口河网站建设公司,为金口河等地区提供建站服务。全流程按需定制设计,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务
这个报表是综合的门店销售管理分析面板,可以查询业绩分析、店员销售分析,店铺排行分析(可以看出是个连锁店),VIP生日提醒。怎么具体制作模板,业内人士一看即明,无需多讲,就重点说下怎么集成天气吧。
先上图:
方法是加一段JS代码,具体如下:
[javascript] view plaincopy
var weather=function(){
var tmp=0;
var SWther={w:[{}],add:{}};
var SWther={};
this.getWeather=function(city,type){
//city=utf8ToGBK(city);
/*
$.getScript("http://php.weather.sina.com.cn/iframe/index/w_cl.php?code=js&day=2&city="+city+"&dfc=3",function(){if(type=='js'){echo(city);}});
**/
$.ajax({
dataType:'script',
scriptCharset:'gb2312',////////
url:"http://php.weather.sina.com.cn/iframe/index/w_cl.php?code=js&day=2&city="+city+"&dfc=3",
success:function(){
if(type=='js'){echo(city);}
}
})
}
function dis_img(weather){
var style_img="p_w_picpath/s_13.png";
if(weather.indexOf("多云")!==-1||weather.indexOf("晴")!==-1){style_img="p_w_picpath/s_1.png";}
else if(weather.indexOf("多云")!==-1&&weather.indexOf("阴")!==-1){style_img="p_w_picpath/s_2.png";}
else if(weather.indexOf("阴")!==-1&&weather.indexOf("雨")!==-1){style_img="p_w_picpath/s_3.png";}
else if(weather.indexOf("晴")!==-1&&weather.indexOf("雨")!==-1){style_img="p_w_picpath/s_12.png";}
else if(weather.indexOf("晴")!==-1&&weather.indexOf("雾")!==-1){style_img="p_w_picpath/s_12.png";}
else if(weather.indexOf("晴")!==-1){style_img="p_w_picpath/s_13.png";}
else if(weather.indexOf("多云")!==-1){style_img="p_w_picpath/s_2.png";}
else if(weather.indexOf("阵雨")!==-1){style_img="p_w_picpath/s_3.png";}
else if(weather.indexOf("小雨")!==-1){style_img="p_w_picpath/s_3.png";}
else if(weather.indexOf("中雨")!==-1){style_img="p_w_picpath/s_4.png";}
else if(weather.indexOf("大雨")!==-1){style_img="p_w_picpath/s_5.png";}
else if(weather.indexOf("暴雨")!==-1){style_img="p_w_picpath/s_5.png";}
else if(weather.indexOf("冰雹")!==-1){style_img="p_w_picpath/s_6.png";}
else if(weather.indexOf("雷阵雨")!==-1){style_img="p_w_picpath/s_7.png";}
else if(weather.indexOf("小雪")!==-1){style_img="p_w_picpath/s_8.png";}
else if(weather.indexOf("中雪")!==-1){style_img="p_w_picpath/s_9.png";}
else if(weather.indexOf("大雪")!==-1){style_img="p_w_picpath/s_10.png";}
else if(weather.indexOf("暴雪")!==-1){style_img="p_w_picpath/s_10.png";}
else if(weather.indexOf("扬沙")!==-1){style_img="p_w_picpath/s_11.png";}
else if(weather.indexOf("沙尘")!==-1){style_img="p_w_picpath/s_11.png";}
else if(weather.indexOf("雾")!==-1){style_img="p_w_picpath/s_12.png";}
else{style_img="p_w_picpath/s_2.png";}
return style_img;};
function echo(city){
$('#city').html(city);
$('#weather').html(window.SWther.w[city][0].s1);
$('#temperature').html(window.SWther.w[city][0].t1+'°');
$('#wind').html(window.SWther.w[city][0].p1);
$('#direction').html(window.SWther.w[city][0].d1);
var T_weather_img=dis_img(window.SWther.w[city][0].s1);
$('#T_weather_img').html("
");
//$('#T_temperature').html(window.SWther.w[city][0].t1+'~'+window.SWther.w[city][0].t2+'°');
$('#T_temperature').html(window.SWther.w[city][0].t1);
$('#T_weather').html(window.SWther.w[city][0].s1);
$('#T_wind').html(window.SWther.w[city][0].p1);
$('#T_direction').html(window.SWther.w[city][0].d1);
$('#M_weather').html(window.SWther.w[city][1].s1);
var M_weather_img=dis_img(window.SWther.w[city][1].s1);
$('#M_weather_img').html("");
$('#M_temperature').html(window.SWther.w[city][1].t1+'~'+window.SWther.w[city][1].t2+'°');
$('#M_wind').html(window.SWther.w[city][1].p1);
$('#M_direction').html(window.SWther.w[city][1].d1);
$('#L_weather').html(window.SWther.w[city][2].s1);
var L_weather_img=dis_img(window.SWther.w[city][2].s1);
$('#L_weather_img').html("");
$('#L_temperature').html(window.SWther.w[city][2].t1+'~'+window.SWther.w[city][2].t2+'°');
$('#L_wind').html(window.SWther.w[city][2].p1);$('#L_direction').html(window.SWther.w[city][2].d1);
}
}
//weather结束了
function jintian(){
weather_.getWeather(city,'js');
};
如此,大功告成。