zhengyiming
8 天以前 c5bf3cfc953f9865bd70f109363c2ea4e45c0c96
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>