This commit is contained in:
Aiden 2024-10-24 13:50:22 +08:00
parent d10f2b6c1d
commit 487f7f7e47
2 changed files with 71 additions and 65 deletions

View File

@ -12,16 +12,16 @@ const loading = ref(false);
export default {
onLaunch: function () {},
onShow: function () {
console.log('2222222')
console.log("2222222");
// const token = window?.plus?.storage.getItem("token");
// uni.setStorageSync("token", token);
// console.log("App Show", uni.getStorageSync("token"));
const params = new URLSearchParams(window.location.search); // URL
state.id = params.get("id");
state.pid = params.get("pid");
console.log(state)
console.log(state);
const paintingDetail = async () => {
const paintingDetail = async () => {
loading.value = true;
console.log("state", state);
const res = await pbDetail({
@ -60,11 +60,16 @@ const paintingDetail = async () => {
},
});
} else {
uni.setStorageSync('data',res.data)
console.log()
uni.setStorageSync("data", res.data);
console.log();
uni.navigateTo({
url:
"/pages/detail/index?id="+ state.id + "&pid=" + state.pid+'&boxRelBucketStatus='+state.boxRelBucketStatus,
"/pages/detail/index?id=" +
state.id +
"&pid=" +
state.pid +
"&boxRelBucketStatus=" +
state.boxRelBucketStatus,
success: () => {
loading.value = false;
@ -77,9 +82,8 @@ const paintingDetail = async () => {
}
}
}
};
paintingDetail()
};
paintingDetail();
},
onHide: function () {
console.log("App Hide");

View File

@ -18,10 +18,12 @@ const request = new Request({
? "application/x-www-form-urlencoded"
: "application/json";
const token =
window?.plus?.webview.getWebviewById("wv").tokenScan ||
uni.getStorageSync("store-token") ||
"";
const token = "";
try {
token = plus?.webview.getWebviewById("wv").tokenScan;
} catch (e) {
token = uni.getStorageSync("store-token");
}
console.log("tokenServer", token);
if (config.isFormData) {
config.headers["Content-Type"] = "multipart/form-data";