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