packages/components/src/views/Mine/ShareQrcodeView.vue
@@ -13,9 +13,13 @@ name: 'ShareQrcodeView', }); type Props = { channlesNum?: string; }; const props = withDefaults(defineProps<Props>(), {}); const { blLifeRecharge } = useLifeRechargeContext(); const link = computed( () => `${CLIENT_ORIGIN}?channelId=${blLifeRecharge.accountModel.channlesNum}` ); const link = computed(() => `${CLIENT_ORIGIN}?channelId=${props.channlesNum}`); </script>