set.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="white-black">
  2. <view class="item-bar" bindtap="routeTo" data-path="uploadData">
  3. <image src="/imgs/set/upload.png" class="icon" />
  4. <text>数据上传设置</text>
  5. <image src="/imgs/Set/arrows.png" class="arrows" />
  6. </view>
  7. <view class="item-bar" bindtap="routeTo" data-path="contacts">
  8. <image src="/imgs/set/contacts.png" class="icon" />
  9. <text>联系人设置</text>
  10. <image src="/imgs/Set/arrows.png" class="arrows" />
  11. </view>
  12. <view class="item-bar" bindtap="routeTo" data-path="volume">
  13. <image src="/imgs/set/volume.png" class="icon" />
  14. <text>声音设置</text>
  15. <image src="/imgs/Set/arrows.png" class="arrows" />
  16. </view>
  17. </view>
  18. <view class="white-black">
  19. <view class="item-bar" bindtap="routeTo" data-path="idioms">
  20. <image src="/imgs/set/idioms.png" class="icon" />
  21. <text>常用语设置</text>
  22. <image src="/imgs/Set/arrows.png" class="arrows" />
  23. </view>
  24. <view class="item-bar" bindtap="routeTo" data-path="broadcast">
  25. <image src="/imgs/set/broadcast.png" class="icon" />
  26. <text>语音播报</text>
  27. <image src="/imgs/set/arrows.png" class="arrows" />
  28. </view>
  29. </view>
  30. <view class="white-black">
  31. <view class="item-bar">
  32. <image src="/imgs/set/auto_answer.png" class="icon" />
  33. <text>自动接听</text>
  34. <switch checked="{{setInfo.autoAnswer==1}}" bindchange="handleAutoAnswerChange" color="#477EEE" class="switch" />
  35. </view>
  36. <view class="item-bar">
  37. <image src="/imgs/set/continue.png" class="icon" />
  38. <text>持续定位</text>
  39. <switch checked="{{setInfo.highFreq==1}}" bindchange="handleContinueChange" color="#477EEE" class="switch" />
  40. </view>
  41. </view>