From 94a17c710786d8a15e08cb462f76ade4f48d98f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Mon, 29 Sep 2025 15:44:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=89=A9=E4=B8=9A=E7=BC=B4?= =?UTF-8?q?=E8=B4=B9=E6=94=AF=E4=BB=98=E6=88=90=E5=8A=9F=E5=90=8E=E7=9A=84?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/community/propertyPayment/index.vue | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/packages/community/propertyPayment/index.vue b/packages/community/propertyPayment/index.vue index b6e5ee51..02e826a8 100644 --- a/packages/community/propertyPayment/index.vue +++ b/packages/community/propertyPayment/index.vue @@ -515,22 +515,21 @@ export default { uni.showModal({ title: '提示', content: '确定使用物业公积金支付?', - success: async function (res) { + success: async (res) => { if (res.confirm) { await request(apiArr.createPayOrder, "POST", payParams).then((res) => { const params = { order_pay_id: res.id, } request(apiArr.tradeQuery, "POST", params).then(res => { - if (res && res.pay_status == 1) { - uni.showToast({ - title: '支付成功', - icon: 'success', - duration: 2000 - }); - this.getRoomSelect(); - this.getUserGovenmentMoney(); - } + console.log("🚀 ~ createPay ~ res:", res) + uni.showToast({ + title: '支付成功', + icon: 'success', + duration: 2000 + }); + this.getRoomSelect(); + this.getUserGovenmentMoney(); }) }); } else if (res.cancel) {