|
@@ -181,19 +181,20 @@ var C = {
|
|
|
initTab:function(){
|
|
|
var isPc = !/Android|webOS|iPhone|Windows Phone|iPod|BlackBerry|SymbianOS/i.test(window.navigator.userAgent) && !/[\?&]pc(?:[=&].*|$)/.test(window.location.href)
|
|
|
// console.log(isPc)
|
|
|
- var mtIdOne = 1
|
|
|
+ var mtIdOne = parseInt($('.nav_item.active').attr('data-mt'))
|
|
|
var subIdOne = 1
|
|
|
var $conTwo = $('.scroe-content-two .score-content')
|
|
|
|
|
|
- if(isPc){
|
|
|
- $conTwo.eq(0).show()
|
|
|
- }else{
|
|
|
- $conTwo.eq(4).show()
|
|
|
- }
|
|
|
+ // if(isPc){
|
|
|
+ // $conTwo.eq(0).show()
|
|
|
+ // }else{
|
|
|
+ // $conTwo.eq(4).show()
|
|
|
+ // }
|
|
|
+ $conTwo.eq(2).show()
|
|
|
|
|
|
- $('[data-type=statuList]').show()
|
|
|
+ $('[data-type=statuImg]').show()
|
|
|
|
|
|
- $(' .nav_item').on('mouseenter',function(){
|
|
|
+ $(' .nav_item').on('click',function(){
|
|
|
$(this).addClass('active').siblings().removeClass('active')
|
|
|
mtIdOne = $(this).attr('data-mt')
|
|
|
if(parseInt(mtIdOne)==1){
|
|
@@ -208,7 +209,7 @@ var C = {
|
|
|
show($conTwo)
|
|
|
})
|
|
|
|
|
|
- $(' .nav_item_sub span').on('mouseenter',function(){
|
|
|
+ $(' .nav_item_sub span').on('click',function(){
|
|
|
$(this).parent().addClass('active').siblings().removeClass('active')
|
|
|
subIdOne = $(this).parent().attr('data-st')
|
|
|
show($conTwo)
|
|
@@ -217,7 +218,7 @@ var C = {
|
|
|
function show($con){
|
|
|
if(parseInt(mtIdOne) ==1&& parseInt(subIdOne) ==1){
|
|
|
if(!isPc){
|
|
|
- console.log('111')
|
|
|
+ // console.log('111')
|
|
|
$con.eq(4).show().siblings().hide()
|
|
|
}else{
|
|
|
$con.eq(0).show().siblings().hide()
|
|
@@ -225,7 +226,7 @@ var C = {
|
|
|
}
|
|
|
if(parseInt(mtIdOne)==1&&parseInt(subIdOne) ==2){
|
|
|
if(!isPc){
|
|
|
- console.log('2222')
|
|
|
+ // console.log('2222')
|
|
|
$con.eq(5).show().siblings().hide()
|
|
|
}else{
|
|
|
$con.eq(1).show().siblings().hide()
|