|
@ -1,7 +1,9 @@ |
|
|
<template> |
|
|
<template> |
|
|
<div |
|
|
<div |
|
|
:class=" |
|
|
:class=" |
|
|
activeIndex == 0 ? 'header_container' : 'header_container not_first' |
|
|
|
|
|
|
|
|
[0, 15].includes(activeIndex) |
|
|
|
|
|
? 'header_container' |
|
|
|
|
|
: 'header_container not_first' |
|
|
" |
|
|
" |
|
|
> |
|
|
> |
|
|
<img :src="logo()" alt="logo" class="logo" @click="scrollToPage(0)" /> |
|
|
<img :src="logo()" alt="logo" class="logo" @click="scrollToPage(0)" /> |
|
@ -67,6 +69,9 @@ const fontColor = () => { |
|
|
return 'flex_center white' |
|
|
return 'flex_center white' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
if (swiperStore.activeIndex == 15) { |
|
|
|
|
|
return 'flex_center white' |
|
|
|
|
|
} |
|
|
return 'flex_center font_change' |
|
|
return 'flex_center font_change' |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|