diff --git a/src/assets/images/search/icon_area.svg b/src/assets/images/search/icon_area.svg new file mode 100644 index 0000000..24d4514 --- /dev/null +++ b/src/assets/images/search/icon_area.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/ActivityDetail/ActivityDetail.vue b/src/components/ActivityDetail/ActivityDetail.vue index e08f405..11be6d1 100644 --- a/src/components/ActivityDetail/ActivityDetail.vue +++ b/src/components/ActivityDetail/ActivityDetail.vue @@ -162,6 +162,11 @@ function handleGo() { const facList = res.data console.log('props.actInfo.facilityCode :>> ', props.actInfo.facilityCode) const fac = facList.find(item => item.code === props.actInfo.facilityCode) + const obj = store.facilityList.find(item => item.abbreviation === fac?.abbreviation) + + if (obj && fac) { + fac.navFilePath = obj.navFilePath + } if (fac) { handleFacility(toRaw(fac)) } diff --git a/src/components/SearchResultListItem/SearchResultListItem.vue b/src/components/SearchResultListItem/SearchResultListItem.vue index b99393f..eb0840f 100644 --- a/src/components/SearchResultListItem/SearchResultListItem.vue +++ b/src/components/SearchResultListItem/SearchResultListItem.vue @@ -6,6 +6,8 @@
{{ switchLanguage(shop, 'shopName') }} + + {{ switchLanguage(shop, 'regionName') }} {{ switchLanguage(shop, 'industryFatherName') }} @@ -59,13 +61,13 @@ const emits = defineEmits(['click']) align-items: center; width: 100%; height: 28px; - padding-right: 40px; + padding-right: 32px; padding-left: 32px; font-family: 'font_bold'; line-height: 28px; .name { // max-width: 460px; - width: 460px; + width: 398px; padding-right: 20px; font-size: 24px; color: #8e9090; @@ -85,7 +87,7 @@ const emits = defineEmits(['click']) margin-right: 8px; } .format-name { - width: 96px; + width: 84px; @include no-wrap(); } diff --git a/src/views/Brand/shopList.vue b/src/views/Brand/shopList.vue index eb1661f..84a2c6f 100644 --- a/src/views/Brand/shopList.vue +++ b/src/views/Brand/shopList.vue @@ -1,5 +1,5 @@