feat: webui finish!!

This commit is contained in:
手瓜一十雪
2024-05-08 18:37:11 +08:00
parent 211c547951
commit b09a189b0b
2 changed files with 13 additions and 9 deletions

View File

@@ -8,7 +8,11 @@ async function onSettingWindowCreated(view: Element) {
const isEmpty = (value: any) => value === undefined || value === undefined || value === '';
let ob11Config: OB11Config = await OB11ConfigWrapper.GetOB11Config();
const setOB11Config = (key: string, value: any) => {
console.log(key, value);
const configKey = key.split('.');
if (configKey.length === 2) {
ob11Config[configKey[1]] = value;
}
OB11ConfigWrapper.SetOB11Config(ob11Config);
}
const parser = new DOMParser();