🔨 初始化程序.

This commit is contained in:
lijiahangmax
2025-06-29 02:24:50 +08:00
parent ad31a6c298
commit 5b611f20c2
6 changed files with 25 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ export interface HostRdpExtraSettingModel {
authType: string;
identityId: number;
lowBandwidthMode: boolean;
initialProgram: string;
}
// 标签额外配置

View File

@@ -21,10 +21,19 @@
</a-form-item>
<!-- 低带宽模式 -->
<a-form-item field="lowBandwidthMode"
style="margin-bottom: 8px;"
label="低带宽模式"
help="调整图形化配置以及禁用音频, 提升慢速网络下的响应速度">
<a-switch v-model="formModel.lowBandwidthMode" type="round" />
</a-form-item>
<!-- 初始化程序 -->
<a-form-item field="initialProgram"
label="初始化程序"
help="会话启动后自动执行的程序 (若支持)">
<a-input v-model="formModel.initialProgram"
placeholder="程序的完整路径"
allow-clear />
</a-form-item>
</a-form>
</template>