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"
  8. value="{{noticeIndex}}" range="{{noticeForm}}">
  9. <image class="btn-icon" mode="aspectFit" src="/images/user/question.png"></image>
  10. <view class="btn-text primary-text">消息通知形式</view>
  11. <view class="btn-arrow secondary-text">{{noticeForm[noticeIndex]}}</view>
  12. </picker>
  13. <view class="gap"></view>
  14. <view class="btn block-background-color" hover-class="btn-hover">
  15. <image class="btn-icon" mode="aspectFit" src="/images/user/setting.png"></image>
  16. <view class="btn-text primary-text">收到消息振动</view>
  17. <switch class="btn-arrow secondary-text" checked="{{vibrate}}" bindchange="vibrateChange" />
  18. </view>
  19. <view class="line"></view>
  20. <view class="btn block-background-color" hover-class="btn-hover" bindtap="opinion">
  21. <image class="btn-icon" mode="aspectFit" src="/images/user/feedback.png"></image>
  22. <view class="btn-text primary-text">退出登录</view>
  23. <view class="btn-arrow secondary-text">></view>
  24. </view>
  25. <view class="gap"></view>