Compare commits

..

No commits in common. "89e396fe7836132267be8c799be972e131ef7b28" and "022b21facd9f86a304793882c7b01f079a7f28f9" have entirely different histories.

5 changed files with 10 additions and 35 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,16 +1,7 @@
<template>
<view class="store-address" @click="openMap">
<view class="text-container">
<text class="location-label"
>位于 [{{ orderData.commodityAddress }}]</text
>
<text class="address-text">{{ orderData.commodityAddress }}</text>
</view>
<image
class="loc-icon"
src="./images/loc_icon_img.png"
mode="aspectFit"
></image>
<text class="location-label">位于 [{{ orderData.commodityAddress }}]</text>
<text class="address-text">{{ orderData.commodityAddress }}</text>
</view>
</template>

View File

@ -1,13 +1,13 @@
.store-address {
display: flex;
align-items: center;
align-items: start;
flex-direction: column;
padding: 16px 12px;
background-color: #f8f9fa;
background-image: url("./images/loc_bg_img.png"); // 预留背景图片位置用户手动导入
background-color: #f0f0f0;
background-image: url(""); // 预留背景图片位置用户手动导入
background-size: cover;
background-position: center;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
font-size: 14px;
color: #333;
position: relative;
@ -25,19 +25,9 @@
z-index: 1;
}
// 左侧文本容器
.text-container {
display: flex;
flex-direction: column;
flex: 1;
position: relative;
z-index: 2;
}
// 确保内容在遮罩层之上
.location-label,
.address-text,
.loc-icon {
.address-text {
position: relative;
z-index: 2;
}
@ -45,20 +35,15 @@
.location-label {
color: #333;
font-size: 14px;
margin-right: 4px;
font-weight: 500;
}
.address-text {
margin-top: 4px;
flex: 1;
color: #666;
font-size: 12px;
font-weight: 400;
}
// 右侧图标样式
.loc-icon {
width: 24px;
height: 24px;
margin-left: 12px;
}
}

View File

@ -5,9 +5,8 @@
<image
class="top-item-left"
:src="initPageImages.welcomeImageUrl"
mode="aspectFit"
></image>
<image class="top-item-right" :src="initPageImages.logoImageUrl" mode="aspectFit"></image>
<image class="top-item-right" :src="initPageImages.logoImageUrl"></image>
</view>
<ChatCardAI v-if="welcomeContent.length" :text="welcomeContent" />
</view>