diff --git a/src/views/RechargeFreightAgent.vue b/src/views/RechargeFreightAgent.vue index e80825c..89ef0e7 100644 --- a/src/views/RechargeFreightAgent.vue +++ b/src/views/RechargeFreightAgent.vue @@ -79,7 +79,12 @@
{{ userProfile.userNickname }} - +
ID:{{ userProfile.id }}
@@ -181,6 +186,7 @@ const listBt = () => { const applicationId = ref('1963531459019739137') const userProfile = ref({}) //用户信息 const type = ref('') //用户身份 +const isFreightAgent = ref(false) const regionId = ref('') //区域id @@ -242,6 +248,7 @@ const setChannelName = (channelName) => { onMounted(async () => { type.value = route.params.type || 'GOLD' + isFreightAgent.value = route.query.isFreightAgent === 'true' const PayAplication = await getPayAplication(applicationId.value) console.log('PayAplication:', PayAplication)