From b11477657850db16d375f4789439a61e4cfa1a4a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 25 三月 2025 17:08:12 +0800
Subject: [PATCH] Merge branch 'master' into dev-1.3

---
 packages/components/src/views/GasBillRecharge/GasBillRechargeStep3.vue |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/packages/components/src/views/GasBillRecharge/GasBillRechargeStep3.vue b/packages/components/src/views/GasBillRecharge/GasBillRechargeStep3.vue
index b4ec7a2..5314fe3 100644
--- a/packages/components/src/views/GasBillRecharge/GasBillRechargeStep3.vue
+++ b/packages/components/src/views/GasBillRecharge/GasBillRechargeStep3.vue
@@ -155,6 +155,7 @@
   remark: '',
   areaList: [] as string[],
   lifePayType: initLifePayType(props.isInWeChat, props.isInAlipay),
+  name: '',
 });
 
 const { userAccountAllList, handleUserAccountChange } = useSetUserAccountBySelect({
@@ -169,6 +170,7 @@
     form.gasOrgType = currentUserAccount.operators;
 
     form.remark = currentUserAccount.remark;
+    form.name = currentUserAccountExtraProperties.name ?? '';
     const gasParValueItem = gasParValueList.value.find((x) => x.gasOrgCode === form.gasOrgType);
     if (gasParValueItem && gasParValueItem.parValue.every((x) => Number(x) !== form.parValue)) {
       form.parValue = 0;
@@ -205,6 +207,11 @@
 const formRef = ref<any>(null);
 
 function handleSubmit() {
+  if (!form.name) {
+    state.show = true;
+    state.msg = '璇峰厛瀹屽杽鎵�灞炴埛涓诲鍚�';
+    return;
+  }
   if (!formRef.value) return;
   formRef.value.validate().then(({ valid, errors }: any) => {
     if (valid) {
@@ -220,7 +227,7 @@
 }
 
 const { state, invokeAliPay, invokeWeixinPay } = useSelectPayType({
-  openId: toRef(props, 'openId'),
+  getOpenId: toRef(props, 'getOpenId'),
   isInWeChat: toRef(props, 'isInWeChat'),
   isH5: toRef(props, 'isH5'),
   appId: toRef(props, 'appId'),
@@ -234,11 +241,12 @@
       userId: blLifeRecharge.accountModel.userId,
       channelId: blLifeRecharge.accountModel.channlesNum,
       productData: {
-        parValue: props.isDev ? 0.1 : form.parValue,
+        parValue: form.parValue,
         gasOrgType: form.gasOrgType,
         gasAccount: form.gasAccount,
         province: form.areaList?.[0] ?? '',
         city: form.areaList?.[1] ?? '',
+        name: form.name,
       },
     };
     let res = await blLifeRecharge.services.createLifePayGasOrder(params);

--
Gitblit v1.9.1