修复是否隐藏桌面数据来源错误
This commit is contained in:
parent
bc64cbceff
commit
ddb5e15800
|
@ -233,9 +233,9 @@ export default defineComponent({
|
|||
setTimeout(() => {
|
||||
set?.GetBlendingConfig("").then((res) => {
|
||||
let tmp = JSON.parse(res ? res.config : "");
|
||||
hide_desktop_id.value = tmp.options[0];
|
||||
hide_desktop_value.value = tmp.options[1] == 0 ? false : true;
|
||||
console.log(tmp)
|
||||
hide_desktop_id.value = tmp.options[0][0];
|
||||
hide_desktop_value.value = tmp.options[0][1] == 0 ? false : true;
|
||||
//console.log(tmp.options[0][1])
|
||||
});
|
||||
}, 1000);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue