fix
This commit is contained in:
parent
bc7d467084
commit
ea22d49c60
@ -112,10 +112,13 @@ onShow(() => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
const token = window?.plus?.storage.getItem("token");
|
if (window.plus) {
|
||||||
|
const token = plus?.webview.getWebviewById("wv").tokenScan;
|
||||||
if (token) {
|
if (token) {
|
||||||
document.querySelector(".uni-page-head-hd").style.display = "none";
|
document.querySelector(".uni-page-head-hd").style.display = "none";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
state.id = options.id;
|
state.id = options.id;
|
||||||
state.pid = options.pid;
|
state.pid = options.pid;
|
||||||
state.boxRelBucketStatus = options.boxRelBucketStatus;
|
state.boxRelBucketStatus = options.boxRelBucketStatus;
|
||||||
|
@ -162,10 +162,12 @@ const state = reactive({
|
|||||||
searchValue: "",
|
searchValue: "",
|
||||||
});
|
});
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
const token = window?.plus?.storage.getItem("token");
|
if (window.plus) {
|
||||||
|
const token = plus?.webview.getWebviewById("wv").tokenScan;
|
||||||
if (token) {
|
if (token) {
|
||||||
document.querySelector(".uni-page-head-hd").style.display = "none";
|
document.querySelector(".uni-page-head-hd").style.display = "none";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
state.id = options.id;
|
state.id = options.id;
|
||||||
state.pid = options.pid;
|
state.pid = options.pid;
|
||||||
paintingList();
|
paintingList();
|
||||||
|
@ -69,10 +69,12 @@ const state = reactive({
|
|||||||
containerUid: "",
|
containerUid: "",
|
||||||
});
|
});
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
const token = window?.plus?.storage.getItem("token");
|
if (window.plus) {
|
||||||
|
const token = plus?.webview.getWebviewById("wv").tokenScan;
|
||||||
if (token) {
|
if (token) {
|
||||||
document.querySelector(".uni-page-head-hd").style.display = "none";
|
document.querySelector(".uni-page-head-hd").style.display = "none";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
state.id = options.id;
|
state.id = options.id;
|
||||||
state.pid = options.pid;
|
state.pid = options.pid;
|
||||||
bindShelfHole();
|
bindShelfHole();
|
||||||
|
Loading…
Reference in New Issue
Block a user