界面改版

This commit is contained in:
lik
2026-05-28 19:27:15 +08:00
parent db0f47d994
commit 9447452e6f
17 changed files with 48 additions and 32 deletions

View File

@@ -2,7 +2,7 @@
<!-- 顶部导航栏 -->
<view class="nav-bar">
<view class="nav-logo">
<image class="logo-icon" src="/images/home-active.png" mode="aspectFit"></image>
<image class="logo-icon" src="/images/home-yellow.png" mode="aspectFit"></image>
<text class="logo-text">暖橙陪诊</text>
</view>
</view>
@@ -21,14 +21,14 @@
<!-- 服务卡片 -->
<view class="service-cards">
<view class="service-card" bindtap="goToEscort">
<image class="card-img" src="/images/ai-active.png" mode="aspectFit"></image>
<view class="service-card" bindtap="goToAiChat">
<image class="card-img" src="/images/ai-yellow.png" mode="aspectFit"></image>
<view class="card-info">
<text class="card-title">客服咨询</text>
<text class="card-en">AI Customer service</text>
</view>
</view>
<view class="service-card vip" bindtap="goToVipEscort">
<view class="service-card vip" bindtap="goToContact">
<view class="card-info">
<text class="card-title">联系我们</text>
<text class="card-en">Contact us anytime</text>
@@ -41,7 +41,7 @@
<view class="assist-section">
<view class="section-header">
<view class="section-title-wrap">
<t-icon name="user-vip" class="section-icon" size="40rpx" color="#2D6A4F" />
<t-icon name="system-3" class="section-icon" size="40rpx"/>
<text class="section-title">助诊服务</text>
</view>
<text class="section-more" bindtap="goToServiceList">全部 >></text>
@@ -56,4 +56,21 @@
</view>
</view>
<!-- 其他服务 -->
<view class="assist-section">
<view class="section-header">
<view class="section-title-wrap">
<t-icon name="indicator" class="section-icon" size="40rpx"/>
<text class="section-title">其他业务</text>
</view>
</view>
<view class="assist-grid">
<view class="assist-item" wx:for="{{ otherServices }}" wx:key="id" bindtap="goToAssistDetail" data-id="{{ item.id }}">
<view class="assist-icon-circle">
<t-icon name="{{ item.icon }}" class="assist-icon" style="color: #2D6A4F;" />
</view>
<text class="assist-name">{{ item.name }}</text>
</view>
</view>
</view>
</view>