From 6242e47490ea466f4750cc8e33c44a79b6cfe5e3 Mon Sep 17 00:00:00 2001 From: tangxinyue <524779910@qq.com> Date: Thu, 9 Jul 2026 14:43:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B8=B8=E6=88=8F=E7=95=8C?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.js | 2 +- pages/other/game/hepingjingying.vue | 4 ++-- pages/other/game/wuweiqiyue.vue | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index 105d2b0..f98c469 100644 --- a/main.js +++ b/main.js @@ -29,7 +29,7 @@ export function createApp() { app.config.globalProperties.$system = plus.os.name; // #endif app.config.globalProperties.$systemInfo = systemInfo - uni.setStorageSync('version', '1.0.6.sp20') + uni.setStorageSync('version', '1.0.6.sp21') app.config.globalProperties.$version = uni.getStorageSync('version') app.use(globalMethods); return { diff --git a/pages/other/game/hepingjingying.vue b/pages/other/game/hepingjingying.vue index fec1109..88337da 100644 --- a/pages/other/game/hepingjingying.vue +++ b/pages/other/game/hepingjingying.vue @@ -135,9 +135,9 @@ const characterImgWidth = ref(300); // 初始宽度兜底 const characterStyle = computed(() => { if (hePingData.type == 1) { - return `position: absolute; left: 50%; bottom:43%; transform: translate(-50%,50%); height: 300px; width: ${characterImgWidth.value}px;`; + return `position: absolute; left: 50%; bottom:43%; transform: translate(-50%,50%); height: 300px; width: 300px;`; } else { - return `position: absolute; left: 300px; bottom: 50%;transform: translate(-50%,50%); height: 300px; width: ${characterImgWidth.value}px;`; + return `position: absolute; left: 300px; bottom: 50%;transform: translate(-50%,50%); height: 300px; width: 300px;`; } }); diff --git a/pages/other/game/wuweiqiyue.vue b/pages/other/game/wuweiqiyue.vue index ec3b7f1..0ca23ed 100644 --- a/pages/other/game/wuweiqiyue.vue +++ b/pages/other/game/wuweiqiyue.vue @@ -196,9 +196,9 @@ const characterImgHeight = ref(350); // 初始高度兜底 const characterStyle = computed(() => { if (wuweiData.type == 1) { - return `position: absolute; right: 77px; bottom: 0; width: 300px; height: ${characterImgHeight.value}px;`; + return `position: absolute; right: 77px; bottom: 0; width: 300px; height: 350px;`; } else { - return `position: absolute; right: 210px; bottom: 0; width: 300px; height: ${characterImgHeight.value}px;`; + return `position: absolute; right: 210px; bottom: 0; width: 300px; height: 350px;`; } });