12345678910111213141516171819202122 |
- <!-- pages/deviceDetail/detail.wxml -->
- <view class="container">
- <nav-bar bind:goBack="_goBack" nav-bgc-class="ex-nav-bgc-class" nav-title-class="ex-nav-title-class" ex-back-pre="ex-back-pre" navbar-data='{{nvabarData}}'></nav-bar>
- <view class="img_section">
- <image src="../../images/icon_arrow.png" class="avatar"></image>
- </view>
- <view class="section">
- <view class="item" bindtap="goToAccountSecurity">
- <text class="label">壁纸设置</text>
- <!-- <text class="arrow">></text> -->
- <image class="arrow" src="../../images/icon_arrow.png"></image>
- </view>
- <view class="item" bindtap="goToAccountSecurity">
- <text class="label">省电模式</text>
- <image class="arrow" src="../../images/icon_arrow.png"></image>
- </view>
- <view class="item" bindtap="goToPrivacySettings">
- <text class="label">固件信息</text>
- <image class="arrow" src="../../images/icon_arrow.png"></image>
- </view>
- </view>
- </view>
|