- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
22 行
720 B
Plaintext
22 行
720 B
Plaintext
<view class="page">
|
|
<view class="page-header page-header-pink" style="padding-top: {{statusBarHeight + 24}}px;">
|
|
<view class="page-header-title">LumiFlow</view>
|
|
<view class="page-header-subtitle">{{i18n.login.wechatLogin}}</view>
|
|
</view>
|
|
|
|
<view class="page-content">
|
|
<view class="welcome-text">{{i18n.login.welcome}}</view>
|
|
|
|
<view class="flower-area">
|
|
<text class="flower">💎</text>
|
|
<view class="desc">{{i18n.login.desc}}</view>
|
|
</view>
|
|
|
|
<button class="login-btn" loading="{{loading}}" bindtap="onLogin" disabled="{{loading}}">
|
|
{{i18n.login.wechatLogin}}
|
|
</button>
|
|
|
|
<view class="agreement" bindtap="onAgreement">{{i18n.login.agreement}}</view>
|
|
</view>
|
|
</view>
|