zhengyiming
2025-03-31 848b21bacd06c45ee16d8522acbce800df57b3a6
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>