fix: 修复按钮不能用的问题

This commit is contained in:
2025-08-06 00:14:18 +08:00
parent 5c57841cd9
commit be2c446906
2 changed files with 3 additions and 15 deletions

View File

@@ -150,8 +150,8 @@
</template>
<a-select v-model:value="maaConfig.Run.TaskTransitionMethod" size="large">
<a-select-option value="ExitEmulator">重启模拟器</a-select-option>
<a-select-option value="RestartGame">重启明日方舟</a-select-option>
<a-select-option value="SwitchAccount">直接切换账号</a-select-option>
<a-select-option value="ExitGame">重启明日方舟</a-select-option>
<a-select-option value="NoAction">直接切换账号</a-select-option>
</a-select>
</a-form-item>
</a-col>
@@ -809,7 +809,7 @@
</div>
<a-float-button
type="primary"
@click="handleSubmit"
@click="handleSave"
class="float-button"
:style="{
right: '24px',

View File

@@ -384,18 +384,6 @@ onMounted(() => {
@blur="handleSettingChange('Notify', 'ServerChanKey', settings.Notify.ServerChanKey)"
placeholder="Server酱推送Key" style="width: 300px" />
</div>
<div class="input-group">
<label>推送频道</label>
<Input v-model:value="settings.Notify.ServerChanChannel"
@blur="handleSettingChange('Notify', 'ServerChanChannel', settings.Notify.ServerChanChannel)"
placeholder="推送频道" style="width: 300px" />
</div>
<div class="input-group">
<label>推送标签</label>
<Input v-model:value="settings.Notify.ServerChanTag"
@blur="handleSettingChange('Notify', 'ServerChanTag', settings.Notify.ServerChanTag)"
placeholder="推送标签" style="width: 300px" />
</div>
</Space>
</div>