From 1687f417d777f95b7e4a73b644ae24d21d87a938 Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Wed, 26 Aug 2026 09:37:02 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A5882=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E3=80=90=E5=95=86=E6=88=B7?= =?UTF-8?q?=E5=85=A5=E9=A9=BB-=E7=89=B9=E4=BA=A7=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86/=E6=96=87=E7=8E=A9=E4=BE=9B=E5=BA=94=E5=95=86?= =?UTF-8?q?=E3=80=91=E5=A1=AB=E5=86=99=E7=89=B9=E4=BA=A7=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86=E7=9A=84=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF=E8=B5=84?= =?UTF-8?q?=E6=96=99=EF=BC=8C=E6=96=87=E7=8E=A9=E4=BE=9B=E5=BA=94=E5=95=86?= =?UTF-8?q?=E7=9A=84=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF=E4=BC=9A=E8=A2=AB?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=90=8C=E6=AD=A5=E5=A1=AB=E5=86=99=E6=88=90?= =?UTF-8?q?=E4=B8=80=E6=A8=A1=E4=B8=80=E6=A0=B7=E7=9A=84=EF=BC=88=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E6=88=B7ID:5838=20=E9=85=8D=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/join.js | 4 ++-- pkg_join/views/supplier.vue | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/api/join.js b/api/join.js index b8a297d..9b6cff0 100644 --- a/api/join.js +++ b/api/join.js @@ -17,8 +17,8 @@ export function getShopData(params) { // 查看商户申请 // 1-特产供应商 2-店铺 3-文玩供应商 -export function getShopInfo() { - return request.get("/merchantApply/info", {}, {login: true}) +export function getShopInfo(params) { + return request.get("/merchantApply/info", params, {login: true}) } // 4-采购批发商 diff --git a/pkg_join/views/supplier.vue b/pkg_join/views/supplier.vue index 12efe85..4f5b6e3 100644 --- a/pkg_join/views/supplier.vue +++ b/pkg_join/views/supplier.vue @@ -904,7 +904,11 @@ export default { }, initInfo() { // 是否缺少参数区分文玩和特产? - getShopInfo().then((res) => { + // 2026-08-25 BUG 5882 确实需要区分参数 + const params = { + subType: this.pageType + } + getShopInfo(params).then((res) => { this.showUpload = true const {data} = res // console.log(res, 'initInfo--------');