zhengyiming
2025-04-01 8f7bae4a2b70bb3aeb1c2289a7f5dd6a826e88de
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>