| 12345678910111213141516171819202122232425262728 |
- <!--pages/setting/setting.wxml-->
- <view class="pannel" style="margin-top: 20rpx;">
- <navigator url="/pages/autoPage/autoPage?code=USER_SERVICE_AGREEMENT" hover-class="none" class="cell">
- <view class="cellText">用户协议</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </navigator>
- <navigator url="/pages/autoPage/autoPage?code=PRIVACY_POLICY" hover-class="none" class="cell">
- <view class="cellText">隐私政策</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </navigator>
- <!-- <view class="cell" bind:tap="exit">
- <view class="cellText">退出小程序</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </view> -->
- <view class="cell" bind:tap="logout" wx:if="{{userInfo && userInfo.userId}}">
- <view class="cellText">退出登录</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </view>
- <!-- <view class="cell" bind:tap="restart">
- <view class="cellText">重启小程序</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </view> -->
- <view class="cell" bind:tap="exit">
- <view class="cellText">退出小程序</view>
- <view class="cellInput abelCellItem iconfont"></view>
- </view>
- </view>
|