46 lines
1.7 KiB
Plaintext
46 lines
1.7 KiB
Plaintext
<view class="container-page firm-page">
|
|
<!-- Custom Navigation Bar with transparent background initially if possible, or just standard -->
|
|
<app-header title="{{firm.name}}" back="{{false}}" background="rgba(255,255,255,0.9)"></app-header>
|
|
|
|
<scroll-view class="page-content" scroll-y="true" type="list">
|
|
<!-- Hero Section -->
|
|
<view class="hero-section">
|
|
<image wx:if="{{firm.heroImage}}" class="hero-bg" mode="aspectFill" src="{{firm.heroImage}}"></image>
|
|
<view wx:if="{{!firm.heroImage}}" class="hero-overlay"></view>
|
|
</view>
|
|
|
|
<!-- Content Container (Overlapping) -->
|
|
<view class="content-container">
|
|
<!-- Address Card -->
|
|
<view class="card address-card" bindtap="openLocation">
|
|
<view class="address-info">
|
|
<text class="address-label">总部地址</text>
|
|
<text class="address-text">{{firm.hqAddress}}</text>
|
|
</view>
|
|
<image class="address-icon" src="/assets/icons/navigate.svg" mode="aspectFit"></image>
|
|
</view>
|
|
|
|
<!-- Practice Areas -->
|
|
<view class="section">
|
|
<view class="section-title">专业领域</view>
|
|
<view class="tags-wrapper">
|
|
<view class="area-tag" wx:for="{{firm.practiceAreas}}" wx:key="*this">{{item}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- Intro Section -->
|
|
<view class="section">
|
|
<view class="section-title">律所简介</view>
|
|
<text class="intro-text">{{firm.intro}}</text>
|
|
</view>
|
|
|
|
<view class="safe-area-bottom" style="height: 120rpx;"></view>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<!-- Bottom CTA -->
|
|
<view class="bottom-bar safe-area-bottom">
|
|
<button class="cta-btn" bindtap="goLawyerList">查找专业律师</button>
|
|
</view>
|
|
</view>
|