|
@@ -658,11 +658,33 @@
|
|
|
</template>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <div class="pattern" style="margin-right: 27px">
|
|
|
- <img src="../../../assets/NPC/biaozhu-pattern.png" alt="" />
|
|
|
+ <div
|
|
|
+ :class="['pattern', bgIndex == 1 ? 'darcColor_pattern' : '']"
|
|
|
+ style="margin-right: 27px"
|
|
|
+ >
|
|
|
+ <template v-if="bgIndex == 0">
|
|
|
+ <img src="../../../assets/NPC/biaozhu-pattern.png" alt="" />
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <img
|
|
|
+ src="../../../assets/NPC/darcColor-biaozhu-pattern.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </template>
|
|
|
</div>
|
|
|
- <div class="pattern" @click="cutPatternType('录音模式')">
|
|
|
- <img src="../../../assets/NPC/luyin-pattern.png" alt="" />
|
|
|
+ <div
|
|
|
+ :class="['pattern', bgIndex == 1 ? 'darcColor_pattern' : '']"
|
|
|
+ @click="cutPatternType('录音模式')"
|
|
|
+ >
|
|
|
+ <template v-if="bgIndex == 0">
|
|
|
+ <img src="../../../assets/NPC/luyin-pattern.png" alt="" />
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <img
|
|
|
+ src="../../../assets/NPC/darcColor-luyin-pattern.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </template>
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
@@ -2735,6 +2757,10 @@ export default {
|
|
|
justify-content: flex-start;
|
|
|
align-items: center;
|
|
|
padding-left: 40px;
|
|
|
+ .darcColor_pattern {
|
|
|
+ background: rgba(255, 255, 255, 0.1) !important;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
|
+ }
|
|
|
.pattern {
|
|
|
width: 56px;
|
|
|
height: 56px;
|