diff --git a/package.json b/package.json index 4bb9387..16f27ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jdt-user", - "version": "3.0.1", + "version": "3.0.2", "private": true, "description": "", "templateInfo": { @@ -9,7 +9,7 @@ "css": "sass" }, "taroConfig": { - "version": "3.0.1" + "version": "3.0.2" }, "scripts": { "build:weapp": "taro build --type weapp", diff --git a/src/pages/admin/withdrawal/index.vue b/src/pages/admin/withdrawal/index.vue index f885ff6..5241768 100644 --- a/src/pages/admin/withdrawal/index.vue +++ b/src/pages/admin/withdrawal/index.vue @@ -121,7 +121,7 @@ const add = async () => { icon: "none", }); const res = await addWithdraw({ - Bid: user_info.bid, + Bid: user_info.data.bid, Number: Number(basicData.value.num), }); Taro.showToast({ diff --git a/src/pages/product/list/index.vue b/src/pages/product/list/index.vue index d5a57a7..d087d75 100644 --- a/src/pages/product/list/index.vue +++ b/src/pages/product/list/index.vue @@ -28,7 +28,7 @@ const getData = async () => { const mey_type = Taro.getStorageSync("mer_type"); const user_info = Taro.getStorageSync("userInfo"); const res = await productList({ - bid: user_info.bid, + bid: user_info.data.bid, BType: mey_type, }); console.log(res); diff --git a/src/pages/users/user_setting/index.vue b/src/pages/users/user_setting/index.vue index 3ef655f..1bdc0de 100644 --- a/src/pages/users/user_setting/index.vue +++ b/src/pages/users/user_setting/index.vue @@ -1,7 +1,7 @@