1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <view class="white-black">
- <view class="item-bar" bindtap="routeTo" data-path="uploadData">
- <image src="/imgs/set/upload.png" class="icon" />
- <text>数据上传设置</text>
- <image src="/imgs/Set/arrows.png" class="arrows" />
- </view>
- <view class="item-bar" bindtap="routeTo" data-path="contacts">
- <image src="/imgs/set/contacts.png" class="icon" />
- <text>联系人设置</text>
- <image src="/imgs/Set/arrows.png" class="arrows" />
- </view>
- <view class="item-bar" bindtap="routeTo" data-path="volume">
- <image src="/imgs/set/volume.png" class="icon" />
- <text>声音设置</text>
- <image src="/imgs/Set/arrows.png" class="arrows" />
- </view>
- </view>
- <view class="white-black">
- <view class="item-bar" bindtap="routeTo" data-path="idioms">
- <image src="/imgs/set/idioms.png" class="icon" />
- <text>常用语设置</text>
- <image src="/imgs/Set/arrows.png" class="arrows" />
- </view>
- <view class="item-bar" bindtap="routeTo" data-path="broadcast">
- <image src="/imgs/set/broadcast.png" class="icon" />
- <text>语音播报</text>
- <image src="/imgs/set/arrows.png" class="arrows" />
- </view>
- </view>
- <view class="white-black">
- <view class="item-bar">
- <image src="/imgs/set/auto_answer.png" class="icon" />
- <text>自动接听</text>
- <switch checked="{{setInfo.autoAnswer==1}}" bindchange="handleAutoAnswerChange" color="#477EEE" class="switch" />
- </view>
- <view class="item-bar">
- <image src="/imgs/set/continue.png" class="icon" />
- <text>持续定位</text>
- <switch checked="{{setInfo.highFreq==1}}" bindchange="handleContinueChange" color="#477EEE" class="switch" />
- </view>
- </view>
|