zhengyiming
2025-04-02 0886e91fdfe3b5528f80d2b6742083aa11d16ebb
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>