34 行
1.1 KiB
Plaintext
34 行
1.1 KiB
Plaintext
<view class="container treating-page">
|
|
<view class="card text-center">
|
|
<view class="progress-circle">
|
|
<text class="progress-text">{{remainingText}}</text>
|
|
</view>
|
|
<view class="progress-bar-wrap mt-20">
|
|
<progress percent="{{progress}}" stroke-width="8" activeColor="#333333" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="card">
|
|
<view class="flex-between mb-20">
|
|
<text>波长</text>
|
|
<text class="text-muted">{{wavelength === 1 ? '红外 850nm' : wavelength === 2 ? '红光 630nm' : wavelength === 3 ? '紫光 405nm' : '黄光 590nm'}}</text>
|
|
</view>
|
|
<view class="flex-between mb-20">
|
|
<text>模式</text>
|
|
<text class="text-muted">{{mode === 1 ? '智能模式' : '普通模式'}}</text>
|
|
</view>
|
|
<view class="flex-between mb-20">
|
|
<text>电量</text>
|
|
<text class="text-muted">{{battery}}%</text>
|
|
</view>
|
|
<view class="flex-between">
|
|
<text>温度</text>
|
|
<text class="text-muted">{{temperature}}°C</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="stop-btn-area">
|
|
<view class="btn-stop" bindtap="onStop">结束护理</view>
|
|
</view>
|
|
</view>
|