卡片详细页面的细化更新
This commit is contained in:
parent
9c189af1bd
commit
9cef926543
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
<!-- 活动名称 -->
|
<!-- 活动名称 -->
|
||||||
<view class="activity-name">
|
<view class="activity-name">
|
||||||
<text class="name-text">{{ activity.name }}</text>
|
<text class="name-text">{{ activityName }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 活动状态 -->
|
<!-- 活动状态 -->
|
||||||
|
|
@ -102,7 +102,10 @@ export default {
|
||||||
// 状态样式类
|
// 状态样式类
|
||||||
statusClass() {
|
statusClass() {
|
||||||
return ACTIVITY_STATUS_CLASS[this.activity.status] || ''
|
return ACTIVITY_STATUS_CLASS[this.activity.status] || ''
|
||||||
}
|
},
|
||||||
|
activityName() {
|
||||||
|
return this.activity.name.split(' ')[0] || this.activity.name
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取默认背景图片
|
// 获取默认背景图片
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,9 @@ export const CommonEnum = {
|
||||||
TILE: "https://api.ccttiot.com/image-1753750309203.png", //瓦片图片
|
TILE: "https://api.ccttiot.com/image-1753750309203.png", //瓦片图片
|
||||||
FILTER: "https://api.ccttiot.com/image-1753954149098.png", //筛选图标
|
FILTER: "https://api.ccttiot.com/image-1753954149098.png", //筛选图标
|
||||||
REFRESH:"https://api.ccttiot.com/%E5%AE%B9%E5%99%A8-1754011714179.png", //刷新图标
|
REFRESH:"https://api.ccttiot.com/%E5%AE%B9%E5%99%A8-1754011714179.png", //刷新图标
|
||||||
NAV_ARROW:"https://api.ccttiot.com/image-1754127104177.png" //导航箭头
|
NAV_ARROW:"https://api.ccttiot.com/image-1754127104177.png", //导航箭头
|
||||||
|
PHONE:"https://api.ccttiot.com/image-1754292810234.png",//电话图标
|
||||||
|
ADDRESS:"https://api.ccttiot.com/image-1754292905805.png"//地址图标
|
||||||
|
|
||||||
};
|
};
|
||||||
export default CommonEnum;
|
export default CommonEnum;
|
||||||
|
|
@ -64,11 +64,11 @@
|
||||||
<!-- 底部操作按钮 -->
|
<!-- 底部操作按钮 -->
|
||||||
<view class="bottom-actions">
|
<view class="bottom-actions">
|
||||||
<view class="action-button phone-button" @click="handlePhoneCall">
|
<view class="action-button phone-button" @click="handlePhoneCall">
|
||||||
<text class="button-icon">📞</text>
|
<image class="button-icon" :src="CommonEnum.PHONE" mode="aspectFit"></image>
|
||||||
<text class="button-text">电话</text>
|
<text class="button-text">电话</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="action-button location-button" @click="handleLocation">
|
<view class="action-button location-button" @click="handleLocation">
|
||||||
<text class="button-icon">📍</text>
|
<image class="button-icon" :src="CommonEnum.ADDRESS" mode="aspectFit"></image>
|
||||||
<text class="button-text">地址</text>
|
<text class="button-text">地址</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="action-button register-button" @click="handleRegister">
|
<view class="action-button register-button" @click="handleRegister">
|
||||||
|
|
@ -319,7 +319,7 @@ page {
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 0 15rpx;
|
padding: 0 15rpx;
|
||||||
padding-bottom: 40rpx;
|
padding-bottom: 200rpx; /* 为固定底部按钮留出空间 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.activity-detail {
|
.activity-detail {
|
||||||
|
|
@ -391,11 +391,9 @@ page {
|
||||||
|
|
||||||
.activity-description {
|
.activity-description {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #fff;
|
|
||||||
border-radius: 16rpx;
|
border-radius: 16rpx;
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
margin-bottom: 30rpx;
|
margin-bottom: 30rpx;
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
|
|
||||||
|
|
||||||
.description-title {
|
.description-title {
|
||||||
margin-bottom: 20rpx;
|
margin-bottom: 20rpx;
|
||||||
|
|
@ -418,41 +416,54 @@ page {
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-actions {
|
.bottom-actions {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 20rpx;
|
gap: 20rpx;
|
||||||
padding: 20rpx 0;
|
height: 62px;
|
||||||
|
padding: 30rpx 40rpx;
|
||||||
|
background: #fff;
|
||||||
|
border-top: 1rpx solid #f0f0f0;
|
||||||
|
border-radius: 20rpx 20rpx 0 0;
|
||||||
|
margin-bottom: 12rpx;
|
||||||
|
|
||||||
.action-button {
|
.action-button {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 20rpx;
|
|
||||||
border-radius: 12rpx;
|
border-radius: 12rpx;
|
||||||
background: #fff;
|
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
|
|
||||||
|
|
||||||
&.phone-button, &.location-button {
|
&.phone-button, &.location-button {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-height: 120rpx;
|
min-height: 120rpx;
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
.button-icon {
|
.button-icon {
|
||||||
font-size: 40rpx;
|
width: 48rpx;
|
||||||
margin-bottom: 10rpx;
|
height: 48rpx;
|
||||||
|
margin-bottom: 12rpx;
|
||||||
|
filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button-text {
|
.button-text {
|
||||||
font-size: 24rpx;
|
font-size: 26rpx;
|
||||||
color: #666;
|
color: #522510;
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.register-button {
|
&.register-button {
|
||||||
flex: 2;
|
flex: 4;
|
||||||
min-height: 120rpx;
|
background: #A24242;
|
||||||
background: #E74C3C;
|
border-radius: 60rpx;
|
||||||
|
padding: 0 40rpx;
|
||||||
|
width: 227px;
|
||||||
|
height: 38px;
|
||||||
|
|
||||||
.button-text {
|
.button-text {
|
||||||
font-size: 32rpx;
|
font-size: 32rpx;
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,8 @@
|
||||||
<view class="hua">
|
<view class="hua">
|
||||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uyz1LDPTjPqeOzBMjLZ7" mode=""></image>
|
<image src="https://api.ccttiot.com/smartmeter/img/static/uyz1LDPTjPqeOzBMjLZ7" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="list-scroll">
|
<view class="list-scroll">
|
||||||
<view class="list">
|
<view class="list">
|
||||||
<view
|
<view
|
||||||
class="li"
|
class="li"
|
||||||
v-for="item in navigationItems"
|
v-for="item in navigationItems"
|
||||||
|
|
@ -48,12 +48,12 @@
|
||||||
@click="navigateToPage(item.page)"
|
@click="navigateToPage(item.page)"
|
||||||
>
|
>
|
||||||
<image :src="item.img" mode=""></image>
|
<image :src="item.img" mode=""></image>
|
||||||
<view class="da">
|
<view class="da">
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</view>
|
</view>
|
||||||
<view class="xiao">
|
<view class="xiao">
|
||||||
{{ item.subtitle }}
|
{{ item.subtitle }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user