- 更新前端支持触控操作

This commit is contained in:
Pine
2026-05-14 15:07:41 +08:00
parent f4dcc30c2b
commit af326571da
16 changed files with 795 additions and 38 deletions
+8
View File
@@ -155,3 +155,11 @@ export async function updateState(state) {
body: JSON.stringify({ state }),
});
}
// ============ Display Commands ============
export async function sendDisplayCommand(action) {
return request('/api/display-command', {
method: 'POST',
body: JSON.stringify({ action }),
});
}