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,14 +12,14 @@ const loading = ref(false);
export default { export default {
onLaunch: function () {}, onLaunch: function () {},
onShow: function () { onShow: function () {
console.log('2222222') console.log("2222222");
// const token = window?.plus?.storage.getItem("token"); // const token = window?.plus?.storage.getItem("token");
// uni.setStorageSync("token", token); // uni.setStorageSync("token", token);
// console.log("App Show", uni.getStorageSync("token")); // console.log("App Show", uni.getStorageSync("token"));
const params = new URLSearchParams(window.location.search); // URL const params = new URLSearchParams(window.location.search); // URL
state.id = params.get("id"); state.id = params.get("id");
state.pid = params.get("pid"); state.pid = params.get("pid");
console.log(state) console.log(state);
const paintingDetail = async () => { const paintingDetail = async () => {
loading.value = true; loading.value = true;
@ -60,11 +60,16 @@ const paintingDetail = async () => {
}, },
}); });
} else { } else {
uni.setStorageSync('data',res.data) uni.setStorageSync("data", res.data);
console.log() console.log();
uni.navigateTo({ uni.navigateTo({
url: 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: () => { success: () => {
loading.value = false; loading.value = false;
@ -78,8 +83,7 @@ const paintingDetail = async () => {
} }
} }
}; };
paintingDetail() paintingDetail();
}, },
onHide: function () { onHide: function () {
console.log("App Hide"); console.log("App Hide");

View File

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