wupengfei
2025-06-09 8deb0d3aaf9e09078dc2f8b8df1cef8e2ee204d7
apps/taro/src/subpackages/my/generatePromotionCode/generatePromotionCode.vue
@@ -18,7 +18,6 @@
import { PageLayout } from '@/components';
import { RouterPath } from '@/constants';
import { GeneratePromotionCodeView } from '@life-payment/components';
import { goBack } from '@/utils';
import type { ComponentExposed } from 'vue-component-type-helpers';
defineOptions({
@@ -33,9 +32,9 @@
  generatePromotionCodeViewRef.value?.handleSubmit?.();
}
function submit() {
function submit(value: string) {
  RouteHelper.navigateTo({
    url: RouterPath.applyResult,
    url: `${RouterPath.promotionQrcode}?promoterIdNumber=${value}`,
  });
}
</script>