- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
31 行
1.2 KiB
Plaintext
31 行
1.2 KiB
Plaintext
<view class="page">
|
||
<view class="page-header page-header-green" style="padding-top: {{statusBarHeight + 24}}px;">
|
||
<view class="nav-back" bindtap="onBack">‹ {{i18n.common.back}}</view>
|
||
<view class="page-header-title">{{i18n.treatmentDone.title}}</view>
|
||
<view class="page-header-subtitle">{{i18n.treatmentDone.headerSub}}</view>
|
||
</view>
|
||
|
||
<view class="page-content">
|
||
<view class="result-icon">✓</view>
|
||
<view class="result-title">{{i18n.treatmentDone.resultTitle}}</view>
|
||
|
||
<view class="result-data">
|
||
<view class="result-item">
|
||
<view class="result-value">{{durationText}}</view>
|
||
<view class="result-label">{{i18n.treatmentDone.durationLabel}}</view>
|
||
</view>
|
||
<view class="result-item">
|
||
<view class="result-value">{{regionNames.length}}</view>
|
||
<view class="result-label">{{i18n.treatmentDone.regionLabel}}</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="result-tip">
|
||
<text class="result-tip-icon">✨</text>
|
||
<text class="result-tip-text">{{i18n.treatmentDone.recorded}}</text>
|
||
</view>
|
||
|
||
<button class="btn-primary" bindtap="onBackHome">{{i18n.treatmentDone.backHome}}</button>
|
||
</view>
|
||
</view>
|