@@ -122,7 +122,6 @@ const quickLabels = ['侦查', '重点观察', '突击组', '运输', '危险'];
122122
123123const hasPlayers = computed (() => props .state .players .length > 0 );
124124const hasMapPlayers = computed (() => props .state .mapPlayers .length > 0 );
125- const quickPlayers = computed (() => props .state .players .slice (0 , 8 ));
126125const configMenuVisible = ref (false );
127126
128127const statusToneClass = computed (() => {
@@ -397,18 +396,6 @@ function applyQuickLabel(label: string) {
397396 </option >
398397 </select >
399398 </div >
400- <div v-if =" quickPlayers.length > 0" class =" n-chip-list full-width" >
401- <button
402- v-for =" item in quickPlayers"
403- :key =" item.playerId"
404- type =" button"
405- class =" n-chip-btn"
406- :class =" { active: state.selectedPlayerId === item.playerId }"
407- @click =" selectPlayer(item.playerId)"
408- >
409- {{ item.playerName }}
410- </button >
411- </div >
412399 <div class =" n-segmented full-width" >
413400 <button type =" button" class =" n-segment-btn is-friendly" :class =" { active: state.mark.team === 'friendly' }" @click =" applyTeamPreset('friendly')" >友军</button >
414401 <button type =" button" class =" n-segment-btn is-neutral" :class =" { active: state.mark.team === 'neutral' }" @click =" applyTeamPreset('neutral')" >中立</button >
@@ -439,11 +426,11 @@ function applyQuickLabel(label: string) {
439426 <div class =" n-subtitle" >自动识别标签</div >
440427 <div class =" n-row" >
441428 <label >友军标签(逗号分隔,按游戏中的前缀识别)</label >
442- <input v-model =" state.form.FRIENDLY_TAGS" @input =" markMainTextDirty" id =" nodemc-overlay-friendly-tags" type =" text" placeholder =" [ xxx],[队友] " />
429+ <input v-model =" state.form.FRIENDLY_TAGS" @input =" markMainTextDirty" id =" nodemc-overlay-friendly-tags" type =" text" placeholder =" xxx,队友 " />
443430 </div >
444431 <div class =" n-row" >
445432 <label >敌军标签(逗号分隔,按游戏中的前缀识别)</label >
446- <input v-model =" state.form.ENEMY_TAGS" @input =" markMainTextDirty" id =" nodemc-overlay-enemy-tags" type =" text" placeholder =" [ yyy],[红队] " />
433+ <input v-model =" state.form.ENEMY_TAGS" @input =" markMainTextDirty" id =" nodemc-overlay-enemy-tags" type =" text" placeholder =" yyy,红队 " />
447434 </div >
448435 <label class =" n-check full-width" ><input v-model =" state.form.AUTO_TEAM_FROM_NAME" @change =" triggerAutoApply" id =" nodemc-overlay-auto-team" type =" checkbox" />按名字标签自动判定友敌</label >
449436 <div class =" n-btns" >
0 commit comments