From 5bc0c176e366ae72bb322630e8ee902fe770747f Mon Sep 17 00:00:00 2001 From: zhangyao Date: Mon, 24 Jul 2023 14:30:22 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=9C=B0=E5=9B=BE?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/qm/MainMap_QM.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/static/qm/MainMap_QM.js b/public/static/qm/MainMap_QM.js index 6d5bd76..11e2012 100644 --- a/public/static/qm/MainMap_QM.js +++ b/public/static/qm/MainMap_QM.js @@ -3678,8 +3678,8 @@ MainMap_QM.prototype = { } if (item.hasOwnProperty("Facilities") && item.Facilities) { //设施 Map_QM.util.pathStateObj.forShopArr.wayList.push({ - isAddPrefix: true, name: "乘坐 " + item.Facilities.userData.title +item.Facilities.userData.facCode=="dt"?"电梯":"" + "到 " + Map_QM.mapArr[Map_QM.util.selectBuild][parseInt(Map_QM.forShopArr[index + 1].floor)].floorName, - nameEn: "BY " + item.Facilities.userData.title+item.Facilities.userData.facCode=="dt"?"elevator ":"" + "TO " + Map_QM.mapArr[Map_QM.util.selectBuild][parseInt(Map_QM.forShopArr[index + 1].floor)].floorName, logoPath: item.Facilities.imgUrl, code: (((Math.random()) * 0x1234567) | 0).toString(16).substring(0), shopNum: item.Facilities.userData.facCode + item.Facilities.userData.no + isAddPrefix: true, name: "乘坐 " + item.Facilities.userData.title +(item.Facilities.userData.facCode=="dt"?"电梯":"") + "到 " + Map_QM.mapArr[Map_QM.util.selectBuild][parseInt(Map_QM.forShopArr[index + 1].floor)].floorName, + nameEn: "BY " + item.Facilities.userData.title+(item.Facilities.userData.facCode=="dt"?"elevator ":"") + "TO " + Map_QM.mapArr[Map_QM.util.selectBuild][parseInt(Map_QM.forShopArr[index + 1].floor)].floorName, logoPath: item.Facilities.imgUrl, code: (((Math.random()) * 0x1234567) | 0).toString(16).substring(0), shopNum: item.Facilities.userData.facCode + item.Facilities.userData.no }); } }); -- 2.30.2 From 8b774cb3890456c316ada0d3dd018d95b8dad9f8 Mon Sep 17 00:00:00 2001 From: zhangyao Date: Mon, 24 Jul 2023 15:28:48 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=F0=9F=9A=80=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=BC=B9=E6=A1=86=E5=88=87=E5=89=B2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Map/Map.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Map/Map.vue b/src/components/Map/Map.vue index dc8a336..9465b98 100644 --- a/src/components/Map/Map.vue +++ b/src/components/Map/Map.vue @@ -79,7 +79,7 @@ watch(shop, () => { overflow: hidden; width: 220px; height: 60px; - padding: 25px 18px 0 36px; + padding: 20px 18px 0 36px; font-size: 22px; font-family: 'font_bold'; white-space: nowrap; @@ -88,6 +88,7 @@ watch(shop, () => { .name { display: inline-block; line-height: inherit; + padding-top: 5px; } // @include no-wrap; -- 2.30.2