替换遗漏图片

This commit is contained in:
Dragon
2023-08-18 16:49:36 +08:00
parent 898dd8270d
commit a27aa111c6
4 changed files with 7 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -56,7 +56,7 @@
<li> <li>
<img src="./images/2.png" alt=""> <img src="./images/2.png" alt="">
<p>情意卷轴</p> <p>情意卷轴</p>
<b>37 钻</b> <b>27 钻</b>
</li> </li>
<li> <li>
<img src="./images/3.png" alt=""> <img src="./images/3.png" alt="">
@@ -88,7 +88,7 @@
<li> <li>
<img src="./images/2.png" alt=""> <img src="./images/2.png" alt="">
<p>情意卷轴</p> <p>情意卷轴</p>
<b>37 钻</b> <b>27 钻</b>
</li> </li>
<li> <li>
<img src="./images/3.png" alt=""> <img src="./images/3.png" alt="">
@@ -197,7 +197,7 @@
</div> </div>
<!-- 祈愿按钮 --> <!-- 祈愿按钮 -->
<div class="but"></div> <div class="but"></div>
<p class="introduction">每获得10喜鹊即可自动获得祈愿红绳*1</p> <p class="introduction">每获得10喜鹊即可自动获得祈愿红绳*1</p>
<!-- 刷新 --> <!-- 刷新 -->
<div class="refresh"> <div class="refresh">
<img src="./images/refresh.png" alt="" class="refreshIcon"> <img src="./images/refresh.png" alt="" class="refreshIcon">

View File

@@ -668,10 +668,10 @@ function getCpRank () {
success (res) { success (res) {
if (res.code === 200) { if (res.code === 200) {
if (res.data.senderNick) { if (res.data.senderNick) {
$('.page4 .loveList .txL').attr('src', res.data.senderAvatar); $('.page4 .loveList .txL').attr('src', res.data.receiverAvatar);
$('.page4 .loveList .txR').attr('src', res.data.receiverAvatar); $('.page4 .loveList .txR').attr('src', res.data.senderAvatar);
$('.page4 .loveList .leftName').text(res.data.senderNick); $('.page4 .loveList .leftName').text(res.data.receiverNick);
$('.page4 .loveList .rightName').text(res.data.receiverNick); $('.page4 .loveList .rightName').text(res.data.senderNick);
} else { } else {
$('.page4 .loveList .txL').attr('src', './images/logo.png'); $('.page4 .loveList .txL').attr('src', './images/logo.png');
$('.page4 .loveList .txR').attr('src', './images/logo.png'); $('.page4 .loveList .txR').attr('src', './images/logo.png');