|
@@ -810,18 +810,22 @@ export default defineComponent({
|
|
{activeData.model && (
|
|
{activeData.model && (
|
|
<div class={styles.leftFixedBtns}>
|
|
<div class={styles.leftFixedBtns}>
|
|
{popupData.activeIndex != 0 && (
|
|
{popupData.activeIndex != 0 && (
|
|
- <div
|
|
|
|
- class={[styles.fullBtn, styles.prePoint]}
|
|
|
|
- onClick={() => handlePreAndNext('up')}
|
|
|
|
- >
|
|
|
|
- <img src={iconUp} />
|
|
|
|
- <span style={{ textAlign: 'center' }}>上一个</span>
|
|
|
|
|
|
+ <div class={[styles.btnsWrap, styles.prePoint]}>
|
|
|
|
+ <div
|
|
|
|
+ class={styles.fullBtn}
|
|
|
|
+ onClick={() => handlePreAndNext('up')}
|
|
|
|
+ >
|
|
|
|
+ <img src={iconUp} />
|
|
|
|
+ <span style={{ textAlign: 'center' }}>上一个</span>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
)}
|
|
{popupData.activeIndex != data.itemList.length - 1 && (
|
|
{popupData.activeIndex != data.itemList.length - 1 && (
|
|
- <div class={[styles.fullBtn]} onClick={() => handlePreAndNext('down')}>
|
|
|
|
- <span style={{ textAlign: 'center' }}>下一个</span>
|
|
|
|
- <img src={iconDown} />
|
|
|
|
|
|
+ <div class={[styles.btnsWrap, styles.prePoint]}>
|
|
|
|
+ <div class={styles.fullBtn} onClick={() => handlePreAndNext('down')}>
|
|
|
|
+ <span style={{ textAlign: 'center' }}>下一个</span>
|
|
|
|
+ <img src={iconDown} />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
)}
|
|
</div>
|
|
</div>
|