volume.wxml 810 B

12345678910111213141516171819202122232425
  1. <form catchsubmit="submit">
  2. <view class="btn-form-wapper">
  3. <van-button type="primary" custom-class="btn-form" form-type="submit">保存</van-button>
  4. </view>
  5. <van-cell-group title="通话音量">
  6. <view class="slider">
  7. <slider name="phoneVol" value="{{set.phoneVol}}" show-value activeColor="#5D88FF" block-size="20" max="6" />
  8. </view>
  9. </van-cell-group>
  10. <van-cell-group title="系统音量">
  11. <view class="slider">
  12. <slider name="msgVol" value="{{set.msgVol}}" show-value activeColor="#5D88FF" block-size="20" max="6" />
  13. </view>
  14. </van-cell-group>
  15. <van-cell-group title="铃声音量">
  16. <view class="slider">
  17. <slider name="ringVol" value="{{set.ringVol}}" show-value activeColor="#5D88FF" block-size="20" max="6" />
  18. </view>
  19. </van-cell-group>
  20. </form>