From f842ab9d6a110e5b88a50c3bd9f33f76d9fd1466 Mon Sep 17 00:00:00 2001
From: tangxinyue <524779910@qq.com>
Date: Tue, 30 Jun 2026 16:17:01 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=9B=BE=E7=89=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../alipay-annual-bill/alipay-annual-bill.vue | 40 ++++++++++---------
pages/finance-management/index.vue | 8 +++-
.../select-image/select-image.vue | 22 +++++++---
pages/other/game/honor-of-kings.vue | 11 +++--
pages/shopping/pdd/list-index.vue | 5 ++-
.../pdd/order-detail/order-detail.vue | 13 ++++--
.../add-shangou-order/add-shangou-order.vue | 13 ++++--
pages/shopping/taobao/json/order.json | 4 +-
.../shangou-order-detail.vue | 10 +++--
9 files changed, 81 insertions(+), 45 deletions(-)
diff --git a/pages/common/alipay-annual-bill/alipay-annual-bill.vue b/pages/common/alipay-annual-bill/alipay-annual-bill.vue
index d9dcea3..d5f07bc 100644
--- a/pages/common/alipay-annual-bill/alipay-annual-bill.vue
+++ b/pages/common/alipay-annual-bill/alipay-annual-bill.vue
@@ -20,7 +20,7 @@
-
+
@@ -32,18 +32,18 @@
- <
+ <
{{ moneyFrist.type }}
- >支出最多!
+ @input="inputPercentage($event, 'moneyFrist')" maxlength="4" />
+ >支出最多!
占
{{ moneyFrist.percentage }}
+ @input="inputPercentage($event, 'moneyFrist')" />
%
@@ -54,7 +54,7 @@
{{ moneySecond.type }}
+ @input="inputPercentage($event, 'moneySecond')" />
@@ -62,7 +62,7 @@
{{ moneySecond.percentage }}
+ @input="inputPercentage($event, 'moneySecond')" />
%
@@ -73,7 +73,7 @@
{{ moneyThird.type }}
+ @input="inputPercentage($event, 'moneyThird')" />
@@ -81,7 +81,7 @@
{{ moneyThird.percentage }}
+ @input="inputPercentage($event, 'moneyThird')" />
%
@@ -92,7 +92,7 @@
{{ moneyFourth.type }}
+ @input="inputPercentage($event, 'moneyFourth')" />
@@ -100,7 +100,7 @@
{{ moneyFourth.percentage }}
+ @input="inputPercentage($event, 'moneyFourth')" />
%
@@ -111,7 +111,7 @@
{{ moneyFifth.type }}
+ @input="inputPercentage($event, 'moneyFifth')" />
@@ -119,7 +119,7 @@
{{ moneyFifth.percentage }}
+ @input="inputPercentage($event, 'moneyFifth')" />
%
@@ -169,10 +169,9 @@ import {
getCurrentInstance
} from 'vue';
import {
- onLoad,
- onShow,
- onUnload
+ onLoad
} from '@dcloudio/uni-app';
+import { imgLocal } from '@/utils/common.js';
const statusBarHeight = ref(0);
const dialogPopup = ref(null);
const timeDialogPopup = ref(null);
@@ -203,7 +202,7 @@ const data = reactive({
type: '服饰装扮',
percentage: "83"
},
- navBarHeight: 0
+ billBgImage: ''
})
let {
@@ -214,11 +213,11 @@ let {
moneyFourth,
moneyFifth,
time,
- navBarHeight
+ billBgImage
} = toRefs(data)
-onLoad(() => {
+onLoad(async () => {
// 进入花呗页面埋点
proxy.$apiUserEvent('all', {
type: 'click',
@@ -228,6 +227,9 @@ onLoad(() => {
time.value = getYesterday();
statusBarHeight.value = uni.getSystemInfoSync().statusBarHeight;
+ data.billBgImage = await imgLocal.getLocalImage('alipay-bill/main-bg.png');
+ console.log("data.billBgImage", data.billBgImage)
+
const config = uni.getStorageSync('config')
console.log("---config---", config);
const font = config.config['client.uniapp.font']
diff --git a/pages/finance-management/index.vue b/pages/finance-management/index.vue
index 87711bd..9fbea44 100644
--- a/pages/finance-management/index.vue
+++ b/pages/finance-management/index.vue
@@ -244,6 +244,7 @@