31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
<view class="container">
|
|
<view class="page-header">
|
|
<view class="page-title">系统状态</view>
|
|
<view class="page-subtitle">探活与功能状态</view>
|
|
</view>
|
|
<view class="card">
|
|
<view class="card-title">系统状态</view>
|
|
<view class="row action-row">
|
|
<button class="btn btn-secondary" bindtap="ping">探活</button>
|
|
<button class="btn btn-secondary" bindtap="features">功能列表</button>
|
|
<button class="btn btn-secondary" bindtap="status">系统状态</button>
|
|
</view>
|
|
</view>
|
|
<view class="card result-card" wx:if="{{result}}">
|
|
<view class="result-header">
|
|
<view class="result-title">结果</view>
|
|
<view class="badge">原始数据</view>
|
|
</view>
|
|
<view class="result-hint">已为你保留完整响应</view>
|
|
<view wx:if="{{resultCards.length}}" class="list">
|
|
<view wx:for="{{resultCards}}" wx:key="label" class="card card--inner list-item">
|
|
<view class="row" style="justify-content: space-between;">
|
|
<view class="module-title">{{item.label}}</view>
|
|
<view class="badge">{{item.value}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="result">{{result}}</view>
|
|
</view>
|
|
</view>
|