From 85a8e7f9bd6df7cc4a8fcda2c1058dcb16ad06c9 Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 21 Jul 2026 23:27:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/index.ts | 2 +- pages/cashier/result.vue | 4 ++-- pages/mine/index.vue | 4 ++-- pages/pay/pay.vue | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/index.ts b/config/index.ts index be282f9..86fa9c6 100644 --- a/config/index.ts +++ b/config/index.ts @@ -31,7 +31,7 @@ export const PROPERTY_APP = { ALIPAY_APP_ID: '', BIND_HOUSE_PATH: 'pagesC/certification/index?from=cashier', MINE_PATH: 'pages/mine/mine', - /** 物业基金页(微信端「物业基金」入口) */ + /** 物业抵扣金页(微信端入口) */ POINTS_PATH: 'pagesE/points/index', WECHAT_APP_ID: 'wx02de0e1de9f4bda3' } as const; diff --git a/pages/cashier/result.vue b/pages/cashier/result.vue index b6e8303..23803a4 100644 --- a/pages/cashier/result.vue +++ b/pages/cashier/result.vue @@ -62,7 +62,7 @@ const amount = ref('0.00'); const accumulation = ref('0.00'); const merchantName = ref(''); const merchantUrl = ref(''); -const scoreName = ref('物业公积金'); +const scoreName = ref('物业抵扣金'); const tradeNo = ref(''); const status = ref('pending'); const statusMessage = ref('支付结果确认超时,请稍后在付款记录中查看'); @@ -151,7 +151,7 @@ onLoad((options: any) => { accumulation.value = options?.accumulation || '0.00'; merchantName.value = decodeOption(options?.merchant_name || options?.merchantName); merchantUrl.value = decodeOption(options?.merchant_url || options?.url); - scoreName.value = decodeOption(options?.score_name) || '物业公积金'; + scoreName.value = decodeOption(options?.score_name) || '物业抵扣金'; tradeNo.value = decodeOption(options?.trade_no || options?.order_id || options?.orderId); pollTradeStatus(); }); diff --git a/pages/mine/index.vue b/pages/mine/index.vue index 13e36ed..652311a 100644 --- a/pages/mine/index.vue +++ b/pages/mine/index.vue @@ -10,7 +10,7 @@ - 物业基金 + 物业抵扣金 {{ propertyFundDesc }} @@ -46,7 +46,7 @@ const platformScoreText = ref('0.00'); const loading = ref(false); // #ifndef MP-ALIPAY const fundIconUrl = `${APP_CONFIG.PROPERTY_IMG_URL}property/new/cashier/fangwu.png`; -const propertyFundDesc = '查看我的物业基金余额'; +const propertyFundDesc = '查看我的物业抵扣金余额'; // #endif const loadPlatformScore = async () => { diff --git a/pages/pay/pay.vue b/pages/pay/pay.vue index 9cfb47a..8a7027b 100644 --- a/pages/pay/pay.vue +++ b/pages/pay/pay.vue @@ -225,7 +225,7 @@ const amount = ref(''); const remark = ref(''); const paying = ref(false); const activeMerchantUrl = ref(''); -const scoreName = ref('物业公积金'); +const scoreName = ref('物业抵扣金'); const propertyName = ref(''); const propertyMerchantId = ref(''); const propertyList = ref([]); @@ -245,7 +245,7 @@ const accumulationAmount = computed(() => { return value.toFixed(2); }); const showBenefitTip = computed(() => Number(merchant.value.accumulationRate) > 0); -const benefitTitle = computed(() => `预计获得${scoreName.value || '物业公积金'}`); +const benefitTitle = computed(() => `预计获得${scoreName.value || '物业抵扣金'}`); /** 商户名越长字号越小,尽量单行展示「向 xxx 付款」 */ const merchantNameFontSize = computed(() => { const len = String(merchant.value.name || '').trim().length; @@ -442,7 +442,7 @@ const resetToEmptyMerchantState = () => { propertyList.value = []; propertySheetVisible.value = false; alipayPropertyUnbound.value = false; - scoreName.value = '物业公积金'; + scoreName.value = '物业抵扣金'; clearPendingMerchantUrl(); clearActiveMerchantContext(); }; @@ -528,7 +528,7 @@ const initWithMerchantUrl = async ( propertyList.value = []; propertySheetVisible.value = false; alipayPropertyUnbound.value = false; - scoreName.value = '物业公积金'; + scoreName.value = '物业抵扣金'; applySupplierInfo(supplierResult.supplier); await loadPropertyBinding(merchantUrl); } catch (error: any) { @@ -693,7 +693,7 @@ const deleteKey = () => { const showAlipayUnboundTip = () => { uni.showModal({ title: '暂未绑定房源', - content: `请搜索并进入「${PROPERTY_APP.WECHAT_NAME}」小程序,完成房源绑定后消费即可获得物业基金。`, + content: `请搜索并进入「${PROPERTY_APP.WECHAT_NAME}」小程序,完成房源绑定后消费即可获得物业抵扣金。`, showCancel: false, confirmText: '知道了' });