mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-26 08:00:48 +08:00
Compare commits
1 Commits
feature/lo
...
codex/sepa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
35c6d29b8f |
@@ -12,7 +12,7 @@ spring.jpa.hibernate.ddl-auto=update
|
|||||||
# for redis
|
# for redis
|
||||||
spring.data.redis.host=${REDIS_HOST:localhost}
|
spring.data.redis.host=${REDIS_HOST:localhost}
|
||||||
spring.data.redis.port=${REDIS_PORT:6379}
|
spring.data.redis.port=${REDIS_PORT:6379}
|
||||||
spring.data.redis.database=0
|
spring.data.redis.database=${REDIS_DATABASE:0}
|
||||||
|
|
||||||
# for jwt
|
# for jwt
|
||||||
app.jwt.secret=${JWT_SECRET:jwt_sec}
|
app.jwt.secret=${JWT_SECRET:jwt_sec}
|
||||||
|
|||||||
@@ -26,12 +26,8 @@
|
|||||||
<span v-if="level >= 2" class="reply-item">
|
<span v-if="level >= 2" class="reply-item">
|
||||||
<i class="fas fa-reply reply-icon"></i>
|
<i class="fas fa-reply reply-icon"></i>
|
||||||
<span class="reply-info">
|
<span class="reply-info">
|
||||||
<BaseImage
|
<BaseImage class="reply-avatar" :src="comment.parentUserAvatar || '/default-avatar.svg'" alt="avatar"
|
||||||
class="reply-avatar"
|
@click="comment.parentUserClick && comment.parentUserClick()" />
|
||||||
:src="comment.parentUserAvatar || '/default-avatar.svg'"
|
|
||||||
alt="avatar"
|
|
||||||
@click="comment.parentUserClick && comment.parentUserClick()"
|
|
||||||
/>
|
|
||||||
<span class="reply-user-name">{{ comment.parentUserName }}</span>
|
<span class="reply-user-name">{{ comment.parentUserName }}</span>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -385,8 +381,7 @@ const handleContentClick = (e) => {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-item,
|
.reply-item, .reply-info {
|
||||||
.reply-info {
|
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -402,16 +397,13 @@ const handleContentClick = (e) => {
|
|||||||
|
|
||||||
.reply-icon {
|
.reply-icon {
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
margin-left: 10px;
|
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
margin-left: 10px;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transform: scaleX(-1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-user-name {
|
.reply-user-name {
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
display: none;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.medal-name {
|
.medal-name {
|
||||||
|
|||||||
@@ -16,8 +16,8 @@
|
|||||||
<div class="prize-count">x {{ lottery.prizeCount }}</div>
|
<div class="prize-count">x {{ lottery.prizeCount }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="prize-end-time prize-info-right">
|
<div class="prize-end-time prize-info-right">
|
||||||
<i v-if="!lotteryEnded" class="fas fa-stopwatch prize-end-time-icon"></i>
|
<i class="fas fa-stopwatch prize-end-time-icon"></i>
|
||||||
<div v-if="!isMobile && !lotteryEnded" class="prize-end-time-title">离结束</div>
|
<div v-if="!isMobile" class="prize-end-time-title">离结束</div>
|
||||||
<div class="prize-end-time-value">{{ countdown }}</div>
|
<div class="prize-end-time-value">{{ countdown }}</div>
|
||||||
<div v-if="!isMobile" class="join-prize-button-container-desktop">
|
<div v-if="!isMobile" class="join-prize-button-container-desktop">
|
||||||
<div
|
<div
|
||||||
@@ -193,7 +193,6 @@ const joinLottery = async () => {
|
|||||||
|
|
||||||
.prize-end-time-icon {
|
.prize-end-time-icon {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-right: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.prize-end-time-title {
|
.prize-end-time-title {
|
||||||
|
|||||||
Reference in New Issue
Block a user