|
@@ -167,8 +167,8 @@
|
|
|
<div
|
|
|
:class="[
|
|
|
'vc-left vc-left-grey',
|
|
|
- isShowLeft && bgIndex == 0 ? 'vc-left-black' : '',
|
|
|
- isShowLeft && bgIndex == 1 ? 'vc-left-white' : '',
|
|
|
+ bgIndex == 0 ? 'vc-left-black' : '',
|
|
|
+ bgIndex == 1 ? 'vc-left-white' : '',
|
|
|
curSentIndex == 0 ? 'hidden' : ''
|
|
|
]"
|
|
|
@click="prevSentence"
|
|
@@ -607,8 +607,8 @@
|
|
|
<div
|
|
|
:class="[
|
|
|
'vc-left vc-right-grey',
|
|
|
- isShowRight && bgIndex == 0 ? 'vc-right-black' : '',
|
|
|
- isShowRight && bgIndex == 1 ? 'vc-right-white' : '',
|
|
|
+ bgIndex == 0 ? 'vc-right-black' : '',
|
|
|
+ bgIndex == 1 ? 'vc-right-white' : '',
|
|
|
curSentIndex == sentList.length - 1 ? 'hidden' : ''
|
|
|
]"
|
|
|
@click="nextSentence"
|