- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
33 行
1.2 KiB
Plaintext
33 行
1.2 KiB
Plaintext
<view class="page">
|
||
<view class="page-header page-header-blue" style="padding-top: {{statusBarHeight + 24}}px;">
|
||
<view class="nav-back nav-back-light" bindtap="onBack">‹ {{i18n.common.back}}</view>
|
||
<view class="page-header-title">{{i18n.treating.title}}</view>
|
||
<view class="page-header-subtitle">{{i18n.treating.subtitle}}</view>
|
||
</view>
|
||
|
||
<view class="page-content">
|
||
<view class="countdown-area">
|
||
<text class="countdown-time">{{remainingText}}</text>
|
||
<view class="countdown-label">{{i18n.treating.remainingLabel}}</view>
|
||
</view>
|
||
|
||
<view class="progress-bar">
|
||
<view class="progress-fill" style="width: {{progress}}%;"></view>
|
||
</view>
|
||
|
||
<view class="mode-tag-area">
|
||
<text class="mode-tag">{{mode === 1 ? i18n.treating.smartMode : i18n.treating.normalMode}} · {{regionText}}</text>
|
||
</view>
|
||
|
||
<view class="relax-card">
|
||
<text class="relax-icon">💆</text>
|
||
<view class="relax-text">
|
||
<text>{{i18n.treating.relax1}}</text>
|
||
<text>{{i18n.treating.relax2}}</text>
|
||
</view>
|
||
</view>
|
||
|
||
<button class="btn-primary btn-primary-red" bindtap="onStop">{{i18n.treating.stopBtn}}</button>
|
||
</view>
|
||
</view>
|