2.3.0
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
<div class="flex flex-wrap items-center gap-4 text-sm">
|
||||
<label class="flex items-center gap-2 cursor-pointer">
|
||||
<input type="checkbox" v-model="filters.gold" class="w-4 h-4" />
|
||||
<span class="text-yellow-600">金票</span>
|
||||
<span class="text-yellow-600">进阶票</span>
|
||||
</label>
|
||||
<label class="flex items-center gap-2 cursor-pointer">
|
||||
<input type="checkbox" v-model="filters.ordinary" class="w-4 h-4" />
|
||||
@@ -144,7 +144,7 @@
|
||||
'px-1.5 py-0.5 rounded border',
|
||||
host.invitationType === 2 ? 'text-yellow-600 border-yellow-400' : 'border-gray-300'
|
||||
]">
|
||||
{{ host.invitationType === 2 ? '金票' : '普票' }}
|
||||
{{ host.invitationType === 2 ? '进阶票' : '普票' }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -199,7 +199,7 @@
|
||||
</button>
|
||||
<button @click="addForm.invitationType = '2'"
|
||||
:class="['px-4 py-2 rounded-lg text-sm border transition-all', addForm.invitationType === '2' ? 'bg-yellow-500 text-white border-yellow-500' : 'bg-white text-gray-600 border-gray-300 hover:border-yellow-300']">
|
||||
金票
|
||||
进阶票
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -424,7 +424,7 @@ const loadConfig = async () => {
|
||||
if (config?.filters?.hostsLevelList) {
|
||||
selectedLevels.value = new Set(config.filters.hostsLevelList)
|
||||
}
|
||||
// 加载金票/普票过滤配置
|
||||
// 加载进阶票/普票过滤配置
|
||||
if (config?.filters?.gold !== undefined) {
|
||||
filters.value.gold = config.filters.gold
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user