|
@@ -1503,9 +1503,8 @@ var SuperSearch = {
|
|
|
ListHtmlObj.on("tap", function(event){
|
|
|
var h = $(this).find("a.bt").attr("s");
|
|
|
var sid = $(this).find("a.bt").attr("sid");
|
|
|
- var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
var industry = $(this).find(".industry").text();
|
|
|
- SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+ SuperSearch.myredirect(h,sid,industry);
|
|
|
});
|
|
|
$('#supersearchPage #list').append(ListHtmlObj);
|
|
|
$(".loading_").hide();
|
|
@@ -1513,9 +1512,8 @@ var SuperSearch = {
|
|
|
// TableHtmlobj.on("tap",function(event){
|
|
|
// var h = $(this).attr("s");
|
|
|
// var sid = $(this).attr("sid");
|
|
|
-// var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
// var industry = $(this).attr("i");
|
|
|
-// SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+// SuperSearch.myredirect(h,sid,industry);
|
|
|
// });
|
|
|
// $("#supersearchPage #table .content").append(TableHtmlobj);
|
|
|
},
|
|
@@ -1553,18 +1551,16 @@ var SuperSearch = {
|
|
|
ListHtmlObj.on("tap", function(event){
|
|
|
var h = $(this).find("a.bt").attr("s");
|
|
|
var sid = $(this).find("a.bt").attr("sid");
|
|
|
- var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
var industry = $(this).find(".industry").text();
|
|
|
- SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+ SuperSearch.myredirect(h,sid,industry);
|
|
|
});
|
|
|
$('#supersearchPage #list').html(ListHtmlObj);
|
|
|
|
|
|
TableHtmlobj.on("tap",function(event){
|
|
|
var h = $(this).attr("s");
|
|
|
var sid = $(this).attr("sid");
|
|
|
- var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
var industry = $(this).attr("i");
|
|
|
- SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+ SuperSearch.myredirect(h,sid,industry);
|
|
|
});
|
|
|
if(SuperSearch.subtype_proposed==SuperSearch.reqParam.subtype){
|
|
|
$("#supersearchPage #table .content").html("<tr><td><div>序号</div></td><td><div style='width: 100px;'>项目代码</div></td><td><div style='width: 207px;'>项目名称</div></td><td><div style='width: 200px;'>审批事项</div></td><td><div style='width: 75px;'>审批结果</div></td><td><div style='width: 75px;'>审批时间</div></td><td><div style='width: 75px;'>发布时间</div></td></tr>");
|
|
@@ -1574,7 +1570,7 @@ var SuperSearch = {
|
|
|
$("#supersearchPage #table .content").append(TableHtmlobj);
|
|
|
$(".loading_").hide();
|
|
|
},
|
|
|
- myredirect: function (link,sid,sds,industry){ //跳转三级页
|
|
|
+ myredirect: function (link,sid,industry){ //跳转三级页
|
|
|
//保存当前页面至sessionStorage
|
|
|
SuperSearch.setSessionStorage();
|
|
|
if(userId == ""||userId == null){
|
|
@@ -1582,6 +1578,10 @@ var SuperSearch = {
|
|
|
return;
|
|
|
}
|
|
|
if(sid!=undefined){
|
|
|
+ var sds = SuperSearch.s_words;
|
|
|
+ if(SuperSearch.secondFlag=="T"&&SuperSearch.secondKWS!=null&&SuperSearch.secondKWS!=""&&SuperSearch.secondKWS!=undefined){
|
|
|
+ sds = SuperSearch.secondKWS;
|
|
|
+ }
|
|
|
//跳转
|
|
|
link = link.replace(/\n/g,"");
|
|
|
if(link!=""&&!/^http/.test(link)){
|
|
@@ -1890,9 +1890,8 @@ var SuperSearch = {
|
|
|
ListContent.on("tap", function(event){
|
|
|
var h = $(this).find("a.bt").attr("s");
|
|
|
var sid = $(this).find("a.bt").attr("sid");
|
|
|
- var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
var industry = $(this).find(".industry").text();
|
|
|
- SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+ SuperSearch.myredirect(h,sid,industry);
|
|
|
});
|
|
|
$("#supersearchPage #list").html(ListContent);
|
|
|
//
|
|
@@ -1900,9 +1899,8 @@ var SuperSearch = {
|
|
|
TableContent.on("tap",function(event){
|
|
|
var h = $(this).attr("s");
|
|
|
var sid = $(this).attr("sid");
|
|
|
- var sds = SuperSearch.s_words.replace(/\+/g,"+");
|
|
|
var industry = $(this).attr("i");
|
|
|
- SuperSearch.myredirect(h,sid,sds,industry);
|
|
|
+ SuperSearch.myredirect(h,sid,industry);
|
|
|
});
|
|
|
$("#supersearchPage #table .data .content").html(TableContent);
|
|
|
//
|