diff --git a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotel_report.js b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotel_report.js index 4223f36..3a4fe07 100644 --- a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotel_report.js +++ b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotel_report.js @@ -10,14 +10,14 @@ function queryCompositeDetail_hotel(data) { if (data.length>0) { $("#total").html(data[0].comments_total); $("#total_tb").html(judgeRatio(data[0].total_equal_rate)); - + $("#goodNum").html('好评' + data[0].positive_comments_count); $("#goodRate").html(data[0].positive_comments_rate + "%"); $("#good_tb").html(judgeRatio(data[0].positive_equal_rate)); - + $("#badNum").html('差评' + data[0].negative_comments_count); $("#bad_tb").html(judgeRatio(data[0].negative_equal_rate)); - + $(".grade").html(data[0].common_mark + '分'); composite_detail_good.push(data[0].positive_equal_count); @@ -25,7 +25,7 @@ function queryCompositeDetail_hotel(data) { composite_detail_bad.push(data[0].negative_equal_count); var equal_total = parseInt(data[0].positive_equal_count)+parseInt(data[0].moderate_equal_count)+parseInt(data[0].negative_equal_count); composite_detail_total.push(equal_total); - + if(date_type != "3"){//年的没有环比 $('#total_hbname').css('display',''); $('#good_hbname').css('display',''); @@ -33,7 +33,7 @@ function queryCompositeDetail_hotel(data) { $("#total_hb").html(judgeRatio(data[0].total_circle_rate)); $("#good_hb").html(judgeRatio(data[0].positive_circle_rate)); $("#bad_hb").html(judgeRatio(data[0].negative_circle_rate)); - + composite_detail_good.push(data[0].positive_circle_count); composite_detail_middle.push(data[0].moderate_circle_count); composite_detail_bad.push(data[0].negative_circle_count); @@ -43,7 +43,7 @@ function queryCompositeDetail_hotel(data) { $('#total_hbname').css('display','none'); $('#good_hbname').css('display','none'); $('#bad_hbname').css('display','none'); - + $("#total_hb").html(''); $("#good_hb").html(''); $("#bad_hb").html(''); @@ -276,13 +276,13 @@ function queryPeopleDimension_hotel(data) { if (data.length > 0) { $("#f_dimension_name").html(data[0].dname + ', ' + data[1].dname + ', ' + data[2].dname); $("#s_dimension_name").html(data[data.length - 1].dname + ', ' + data[data.length - 2].dname); - + //按好评数量排序 var goodSort = data.sort(function (a, b) { return (b.znum - a.znum); }); $("#good_dimension_name").html(goodSort[0].dname + ', ' + goodSort[1].dname); - + //按差评数量排序 var badSort = data.sort(function (a, b) { return (b.fnum - a.fnum); @@ -488,7 +488,7 @@ function queryNegativeWord_hotel(data) { words += data[i].words + ","; } } - + var num = data.length<5 ? data.length : 5; $("#bad_words").html('' + words.substr(0, words.length - 1) + '成为本季度游客差评使用频率最高的' + num + '个词'); @@ -641,7 +641,7 @@ function gotohotwordList(hotWords){ title : "", anim : 2, shade: [0.7, '#333'], - area : [ '1200px', '475px' ], + area : [ '1200px', '650px' ], content : _CTX + "/v2/hotword/gotohotellist.do?hotWords="+encodeURI(encodeURI(hotWords))+'&date_type='+date_type+'&year='+nian+'&quarter='+jidu+'&month='+yue }); } diff --git a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotword_comments_list.jsp b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotword_comments_list.jsp index 173e4ae..5e8848f 100644 --- a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotword_comments_list.jsp +++ b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/hotelReport/hotword_comments_list.jsp @@ -39,7 +39,7 @@

热词"${hotWords}"详情

-
@@ -58,7 +58,7 @@ -
+
@@ -77,4 +77,4 @@ - \ No newline at end of file + diff --git a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/hotword_comments_list.jsp b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/hotword_comments_list.jsp index 6822b3f..2ed3b67 100644 --- a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/hotword_comments_list.jsp +++ b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/hotword_comments_list.jsp @@ -40,7 +40,7 @@

热词"${hotWords}"详情

- @@ -59,7 +59,7 @@
-
+
@@ -78,4 +78,4 @@ - \ No newline at end of file + diff --git a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/scenic_report.js b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/scenic_report.js index 11f705e..29ae1a2 100644 --- a/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/scenic_report.js +++ b/WebRoot/hbcyjc/region/130000/pages/lywangping/InterReview/scenicReport/scenic_report.js @@ -9,14 +9,14 @@ function queryCompositeDetail_scenic(data) { if (data.length>0) { $("#total").html((isEmpty(data[0].comments_total)?0:data[0].comments_total)); //总评论数 $("#total_tb").html(judgeRatio(data[0].total_equal_rate)); // 同比 - + $("#goodNum").html('好评' + (isEmpty(data[0].positive_comments_count)?0:data[0].positive_comments_count)); // 好评数 $("#goodRate").html((isEmpty(data[0].positive_comments_rate)?0:data[0].positive_comments_rate) + "%"); // 好评数占比 $("#good_tb").html(judgeRatio(data[0].positive_equal_rate)); // 好评同比 - + $("#badNum").html('差评' + (isEmpty(data[0].negative_comments_count)?0:data[0].negative_comments_count)); // 差评 $("#bad_tb").html(judgeRatio(data[0].negative_equal_rate)); // 差评同比 - + $(".grade").html((isEmpty(data[0].common_mark)?0:data[0].common_mark) + '分'); // 所有景区游客满意度平均分值 composite_detail_good.push(data[0].positive_equal_count); // 好 @@ -24,7 +24,7 @@ function queryCompositeDetail_scenic(data) { composite_detail_bad.push(data[0].negative_equal_count); // 差 var equal_total = parseInt(data[0].positive_equal_count)+parseInt(data[0].moderate_equal_count)+parseInt(data[0].negative_equal_count); composite_detail_total.push(equal_total); - + if(date_type != "3"){//年的没有环比 $('#total_hbname').css('display',''); $('#good_hbname').css('display',''); @@ -32,7 +32,7 @@ function queryCompositeDetail_scenic(data) { $("#total_hb").html(judgeRatio(data[0].total_circle_rate)); $("#good_hb").html(judgeRatio(data[0].positive_circle_rate)); $("#bad_hb").html(judgeRatio(data[0].negative_circle_rate)); - + composite_detail_good.push(data[0].positive_circle_count); composite_detail_middle.push(data[0].moderate_circle_count); composite_detail_bad.push(data[0].negative_circle_count); @@ -42,7 +42,7 @@ function queryCompositeDetail_scenic(data) { $('#total_hbname').css('display','none'); $('#good_hbname').css('display','none'); $('#bad_hbname').css('display','none'); - + $("#total_hb").html(''); $("#good_hb").html(''); $("#bad_hb").html(''); @@ -279,7 +279,7 @@ function queryPeopleDimension_scenic(data) { if (data.length > 0) { $("#f_dimension_name").html(data[0].dname + ', ' + data[1].dname + ', ' + data[2].dname); $("#s_dimension_name").html(data[data.length - 1].dname + ', ' + data[data.length - 2].dname); - + //按好评数量排序 var goodSort = data.sort(function (a, b) { return (b.znum - a.znum); @@ -466,7 +466,7 @@ function showPositiveWord_scenic(netWordArr) { }; if (option && typeof option === "object") { positive_word_chart.setOption(option, true); - + positive_word_chart.on('click', function(params) { var hotWords = params.name; gotohotwordList(hotWords); @@ -643,7 +643,7 @@ function gotohotwordList(hotWords){ title : "", anim : 2, shade: [0.7, '#333'], - area : [ '1200px', '475px' ], + area : [ '1200px', '650px' ], content : _CTX + "/v2/hotword/gotosceniclist.do?hotWords="+encodeURI(encodeURI(hotWords))+'&date_type='+date_type+'&year='+nian+'&quarter='+jidu+'&month='+yue }); -} \ No newline at end of file +} diff --git a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp index 7e8f396..cc7e937 100644 --- a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp +++ b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp @@ -242,7 +242,7 @@ } - +
@@ -685,4 +685,4 @@ - \ No newline at end of file + diff --git a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglexpert/add_yjglexpert.jsp b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglexpert/add_yjglexpert.jsp index 60c580e..910648c 100644 --- a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglexpert/add_yjglexpert.jsp +++ b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglexpert/add_yjglexpert.jsp @@ -6,7 +6,7 @@ -
+
  • diff --git a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglwarehouse/add_yjglwarehouse.jsp b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglwarehouse/add_yjglwarehouse.jsp index 50cf758..7519c70 100644 --- a/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglwarehouse/add_yjglwarehouse.jsp +++ b/WebRoot/hbcyjc/region/130000/pages/yjglddxt/yjzh/yjglwarehouse/add_yjglwarehouse.jsp @@ -276,7 +276,7 @@
    -
    +
      @@ -413,7 +413,7 @@ 重置

      @@ -601,4 +601,4 @@ - \ No newline at end of file + diff --git a/WebRoot/hbcyjc/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp b/WebRoot/hbcyjc/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp index 5109e29..df53a20 100644 --- a/WebRoot/hbcyjc/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp +++ b/WebRoot/hbcyjc/yjglddxt/yjglyjyagl/add_yjglyjyagl.jsp @@ -22,11 +22,13 @@ - - - +<%----%> +<%----%> +<%----%> <%@include file="/common/theme_css.jsp"%> + + @@ -242,7 +244,7 @@ } - +
      @@ -685,4 +687,4 @@ - \ No newline at end of file +