|
@@ -1148,6 +1148,11 @@
|
|
|
}
|
|
|
//回车事件
|
|
|
document.onkeydown = function () {
|
|
|
+ var isNowIndex = $(".tabs-box .tabs-nav .active").index()
|
|
|
+ if(isNowIndex === 2) {
|
|
|
+ SuperSearch.isMyPage = false
|
|
|
+ EntSearch.isMyPage = false
|
|
|
+ }
|
|
|
if(window.event && window.event.keyCode == 13) {
|
|
|
window.event.returnValue = false;
|
|
|
//超级搜索
|
|
@@ -1155,7 +1160,6 @@
|
|
|
if ($("#search-header-input").val().trim() === '') {
|
|
|
return
|
|
|
}
|
|
|
- var isNowIndex = $(".tabs-box .tabs-nav .active").index()
|
|
|
if (!$(".tabs-box").hasClass('hidden') && isNowIndex !== 0) {
|
|
|
if (isNowIndex === 1) {
|
|
|
$("#supersearchPage input[name=super_searchinput]").blur();
|
|
@@ -1183,13 +1187,14 @@
|
|
|
}
|
|
|
EntSearch.formSubmit();
|
|
|
} else {
|
|
|
- var isNowIndex = $(".tabs-box .tabs-nav .active").index()
|
|
|
+ // var isNowIndex = $(".tabs-box .tabs-nav .active").index()
|
|
|
+ var setEntStatus = sessionStorage.getItem('setEntStatus')
|
|
|
if (!$(".tabs-box").hasClass('hidden') && isNowIndex !== 0) {
|
|
|
- if (isNowIndex === 1) {
|
|
|
- $("#supersearchPage input[name=super_searchinput]").blur();
|
|
|
+ if (isNowIndex === 2 && (SuperSearch.isEntNicheNew || setEntStatus == "true")) {
|
|
|
+ $("#supersearchPage input[name=super_searchinput]").blur()
|
|
|
window.isKeyDownToEntSearch = true
|
|
|
- if (vEntSearchComponent) {
|
|
|
- vEntSearchComponent.toggleEntShow(true)
|
|
|
+ if (vBuyerSearchComponent) {
|
|
|
+ vBuyerSearchComponent.toggleEntShow(true)
|
|
|
}
|
|
|
}
|
|
|
}
|