From f37599be704b605af8344d77e538fb73ff676d3d Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Sat, 27 Sep 2025 17:31:58 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=85=85=E5=80=BC=E9=A1=B5):=20=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=BA=AB=E4=BB=BD=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/RechargeFreightAgent.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/RechargeFreightAgent.vue b/src/views/RechargeFreightAgent.vue index 085e218..e80825c 100644 --- a/src/views/RechargeFreightAgent.vue +++ b/src/views/RechargeFreightAgent.vue @@ -272,7 +272,12 @@ onMounted(async () => { applicationId: applicationId.value, payCountryId: selectedCountry.value.id, regionId: userInfo.body.regionId, - type: route.query.isFreightAgent === 'true' ? 'FREIGHT_GOLD' : 'GOLD', + type: + route.query.isSuperFreightAgent === 'true' + ? 'FREIGHT_GOLD_SUPER' + : route.query.isFreightAgent === 'true' + ? 'FREIGHT_GOLD' + : 'GOLD', } const appCommodityCard = await getAppCommodityCard(appCommodityCardParams) console.log('appCommodityCard:', appCommodityCard)