From 0e2e1d007b7ce772fa2bd9e56920c447a32570d8 Mon Sep 17 00:00:00 2001 From: Zhufu <1176354795@qq.com> Date: Sat, 27 Jul 2024 16:41:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8C=85=E5=90=8E=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E6=89=BE=E4=B8=8D=E5=88=B0=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E8=8E=B7=E5=8F=96=E5=B8=82=E6=95=B0=E6=8D=AE=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../assets}/statistical/charts_button.png | Bin {public => src/assets}/statistical/item_label.png | Bin {public => src/assets}/statistical/item_title.png | Bin {public => src/assets}/statistical/page_turning.png | Bin .../assets}/statistical/right_decoration.png | Bin .../assets}/statistical/select_center_bg.png | Bin .../assets}/statistical/select_left_bg.png | Bin .../assets}/statistical/select_right_bg.png | Bin .../assets}/statistical/selected_charts_button.png | Bin {public => src/assets}/statistical/sub_title.png | Bin src/views/sys/exception/Exception.vue | 2 +- .../exception/dataScreen/DataStatistics/index.vue | 6 +++--- .../sys/exception/dataScreen/PatchSummary/index.vue | 2 +- .../sys/exception/dataScreen/TopSelect/index.vue | 6 +++--- .../exception/dataScreen/TrendStatistics/index.vue | 6 +++--- src/views/sys/exception/dataScreen/index.vue | 4 ++-- 16 files changed, 13 insertions(+), 13 deletions(-) rename {public => src/assets}/statistical/charts_button.png (100%) rename {public => src/assets}/statistical/item_label.png (100%) rename {public => src/assets}/statistical/item_title.png (100%) rename {public => src/assets}/statistical/page_turning.png (100%) rename {public => src/assets}/statistical/right_decoration.png (100%) rename {public => src/assets}/statistical/select_center_bg.png (100%) rename {public => src/assets}/statistical/select_left_bg.png (100%) rename {public => src/assets}/statistical/select_right_bg.png (100%) rename {public => src/assets}/statistical/selected_charts_button.png (100%) rename {public => src/assets}/statistical/sub_title.png (100%) diff --git a/public/statistical/charts_button.png b/src/assets/statistical/charts_button.png similarity index 100% rename from public/statistical/charts_button.png rename to src/assets/statistical/charts_button.png diff --git a/public/statistical/item_label.png b/src/assets/statistical/item_label.png similarity index 100% rename from public/statistical/item_label.png rename to src/assets/statistical/item_label.png diff --git a/public/statistical/item_title.png b/src/assets/statistical/item_title.png similarity index 100% rename from public/statistical/item_title.png rename to src/assets/statistical/item_title.png diff --git a/public/statistical/page_turning.png b/src/assets/statistical/page_turning.png similarity index 100% rename from public/statistical/page_turning.png rename to src/assets/statistical/page_turning.png diff --git a/public/statistical/right_decoration.png b/src/assets/statistical/right_decoration.png similarity index 100% rename from public/statistical/right_decoration.png rename to src/assets/statistical/right_decoration.png diff --git a/public/statistical/select_center_bg.png b/src/assets/statistical/select_center_bg.png similarity index 100% rename from public/statistical/select_center_bg.png rename to src/assets/statistical/select_center_bg.png diff --git a/public/statistical/select_left_bg.png b/src/assets/statistical/select_left_bg.png similarity index 100% rename from public/statistical/select_left_bg.png rename to src/assets/statistical/select_left_bg.png diff --git a/public/statistical/select_right_bg.png b/src/assets/statistical/select_right_bg.png similarity index 100% rename from public/statistical/select_right_bg.png rename to src/assets/statistical/select_right_bg.png diff --git a/public/statistical/selected_charts_button.png b/src/assets/statistical/selected_charts_button.png similarity index 100% rename from public/statistical/selected_charts_button.png rename to src/assets/statistical/selected_charts_button.png diff --git a/public/statistical/sub_title.png b/src/assets/statistical/sub_title.png similarity index 100% rename from public/statistical/sub_title.png rename to src/assets/statistical/sub_title.png diff --git a/src/views/sys/exception/Exception.vue b/src/views/sys/exception/Exception.vue index 56de1981..edb7eadd 100644 --- a/src/views/sys/exception/Exception.vue +++ b/src/views/sys/exception/Exception.vue @@ -54,7 +54,7 @@ // const MapboxComponent = ref(); - const countyId = ref('371325') + const countyId = ref() // 控制图斑图层 function layerbutton_1(data) { diff --git a/src/views/sys/exception/dataScreen/DataStatistics/index.vue b/src/views/sys/exception/dataScreen/DataStatistics/index.vue index b4ab8d09..0c8cc748 100644 --- a/src/views/sys/exception/dataScreen/DataStatistics/index.vue +++ b/src/views/sys/exception/dataScreen/DataStatistics/index.vue @@ -118,7 +118,7 @@ watch(() => [props.countyId,props.landType], () => { text-shadow: 0px 2px 8px rgba(5, 28, 55, 0.42); -webkit-background-clip: text; text-shadow: 0px 2px 6px rgba(5,28,55,0.42); - background: url(./statistical/sub_title.png); + background: url('@/assets/statistical/sub_title.png'); padding-left: 35px; } .area-data-div{ @@ -137,7 +137,7 @@ watch(() => [props.countyId,props.landType], () => { height: 43px; padding-top:6px; margin-bottom: 8px; - background: url(./statistical/item_label.png) no-repeat; + background: url('@/assets/statistical/item_label.png') no-repeat; background-size: cover; .data-center{ display: flex; @@ -172,7 +172,7 @@ watch(() => [props.countyId,props.landType], () => { font-size: 11px; color: #7EBBFF; margin-bottom:19px; - background: url(./statistical/item_title.png) no-repeat; + background: url('@/assets/statistical/item_title.png') no-repeat; background-size: cover; } .row-item-div{ diff --git a/src/views/sys/exception/dataScreen/PatchSummary/index.vue b/src/views/sys/exception/dataScreen/PatchSummary/index.vue index 7e5794d2..609904ef 100644 --- a/src/views/sys/exception/dataScreen/PatchSummary/index.vue +++ b/src/views/sys/exception/dataScreen/PatchSummary/index.vue @@ -550,7 +550,7 @@ watch(() => [props.countyId,props.landType],() => { text-shadow: 0px 2px 8px rgba(5, 28, 55, 0.42); -webkit-background-clip: text; text-shadow: 0px 2px 6px rgba(5,28,55,0.42); - background: url(./statistical/sub_title.png); + background: url('@/assets/statistical/sub_title.png'); padding-left: 35px; } diff --git a/src/views/sys/exception/dataScreen/TopSelect/index.vue b/src/views/sys/exception/dataScreen/TopSelect/index.vue index 72d10d89..c991dfd1 100644 --- a/src/views/sys/exception/dataScreen/TopSelect/index.vue +++ b/src/views/sys/exception/dataScreen/TopSelect/index.vue @@ -111,7 +111,7 @@ watch(() => [props.countyId,props.landType], () => { left: 14px; width: 136px; height:38px; - background: url(./statistical/select_left_bg.png) no-repeat; + background: url('@/assets/statistical/select_left_bg.png') no-repeat; background-size: cover; } .center-bg{ @@ -121,14 +121,14 @@ watch(() => [props.countyId,props.landType], () => { transform: translate(-50%,-50%); width: 150px; height:85px; - background: url(./statistical/select_center_bg.png) no-repeat; + background: url('@/assets/statistical/select_center_bg.png') no-repeat; background-size: cover; } .right-bg{ position: absolute; width: 136px; height:39px; - background: url(./statistical/select_right_bg.png) no-repeat; + background: url('@/assets/statistical/select_right_bg.png') no-repeat; background-size: cover; right: 14px; bottom: 30px; diff --git a/src/views/sys/exception/dataScreen/TrendStatistics/index.vue b/src/views/sys/exception/dataScreen/TrendStatistics/index.vue index 9e85e263..c1b86ec0 100644 --- a/src/views/sys/exception/dataScreen/TrendStatistics/index.vue +++ b/src/views/sys/exception/dataScreen/TrendStatistics/index.vue @@ -283,7 +283,7 @@ watch(() => [props.countyId,props.landType,unit.value], () => { text-shadow: 0px 2px 8px rgba(5, 28, 55, 0.42); -webkit-background-clip: text; text-shadow: 0px 2px 6px rgba(5,28,55,0.42); - background: url(./statistical/sub_title.png); + background: url('@/assets/statistical/sub_title.png'); padding-left: 35px; } .show-charts-div{ @@ -297,7 +297,7 @@ watch(() => [props.countyId,props.landType,unit.value], () => { width: 52px; height:20px; margin-right:8px; - background: url(./statistical/charts_button.png) no-repeat; + background: url('@/assets/statistical/charts_button.png') no-repeat; background-size: cover; font-family: Microsoft YaHei; font-weight: 400; @@ -309,7 +309,7 @@ watch(() => [props.countyId,props.landType,unit.value], () => { cursor: pointer; } .select-button-item{ - background: url(./statistical/selected_charts_button.png) no-repeat; + background: url('@/assets/statistical/selected_charts_button.png') no-repeat; background-size: cover; font-family: Microsoft YaHei; font-weight: 400; diff --git a/src/views/sys/exception/dataScreen/index.vue b/src/views/sys/exception/dataScreen/index.vue index 9bdd248b..40707911 100644 --- a/src/views/sys/exception/dataScreen/index.vue +++ b/src/views/sys/exception/dataScreen/index.vue @@ -57,7 +57,7 @@ const changeLandType = (value) => { right: 34px; width: 74px; height: 30px; - background: url(./statistical/page_turning.png); + background: url('@/assets/statistical/page_turning.png'); background-size: cover; font-family: Microsoft YaHei; font-weight: 400; @@ -73,7 +73,7 @@ const changeLandType = (value) => { position: absolute; right: 10px; width: 69px; - background: url(./statistical/right_decoration.png); + background: url('@/assets/statistical/right_decoration.png'); background-size: cover; height: 100%; top: 0;