threshold.wxml 408 B

123456789101112
  1. <view class="container">
  2. <view>
  3. <text>条数阈值:</text>
  4. <input type="number" value="{{countThreshold}}" bindinput="updateCountThreshold" />
  5. </view>
  6. <view>
  7. <text>百分比阈值:</text>
  8. <input type="number" value="{{percentageThreshold}}" bindinput="updatePercentageThreshold" />
  9. </view>
  10. <button bindtap="saveSettings">保存</button>
  11. </view>
  12. <custom-tab-bar></custom-tab-bar>