setting.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <view class="btn block-background-color" hover-class="btn-hover" bindtap="myColor">
  2. <image class="btn-icon" mode="aspectFit" src="/images/user/follow.png"></image>
  3. <view class="btn-text primary-text">主题颜色设置</view>
  4. <view class="btn-arrow secondary-text">></view>
  5. </view>
  6. <view class="line"></view>
  7. <picker class="btn block-background-color" hover-class="btn-hover" bindchange="noticeIndexChange" value="{{noticeIndex}}" range="{{noticeForm}}">
  8. <image class="btn-icon" mode="aspectFit" src="/images/user/question.png"></image>
  9. <view class="btn-text primary-text">消息通知形式</view>
  10. <view class="btn-arrow secondary-text">{{noticeForm[noticeIndex]}}</view>
  11. </picker>
  12. <view class="gap"></view>
  13. <view class="btn block-background-color" hover-class="btn-hover">
  14. <image class="btn-icon" mode="aspectFit" src="/images/user/setting.png"></image>
  15. <view class="btn-text primary-text">收到消息振动</view>
  16. <switch class="btn-arrow secondary-text" checked="{{vibrate}}" bindchange="vibrateChange"/>
  17. </view>
  18. <view class="line"></view>
  19. <view class="btn block-background-color" hover-class="btn-hover" bindtap="opinion">
  20. <image class="btn-icon" mode="aspectFit" src="/images/user/feedback.png"></image>
  21. <view class="btn-text primary-text">退出登录</view>
  22. <view class="btn-arrow secondary-text">></view>
  23. </view>
  24. <view class="gap"></view>