| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 | <template>	<view class="text-black padding-lr" style="background: #fff;">		<!-- #ifndef MP-WEIXIN -->		<view class="flex  padding-tb" @click="goNav('/pages/public/pwd')">			<view class="flex-sub text-df" style="line-height: 50upx;">修改密码</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;">			</image>		</view>		<!-- #endif -->		<view class="flex  padding-tb" @click="goNav('/my/help/feedbackIndex')">			<view class="flex-sub text-df" style="line-height: 50upx;">帮助中心</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;"></image>		</view>		<view class="flex  padding-tb" @click="goNav('/my/feedback/index')">			<view class="flex-sub text-df" style="line-height: 50upx;">意见反馈</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;"></image>		</view>		<view class="flex  padding-tb" @click="goNav('/my/setting/xieyi')">			<view class="flex-sub text-df" style="line-height: 50upx;">用户协议</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;">			</image>		</view>		<view class="flex  padding-tb" @click="goNav('/my/setting/mimi')">			<view class="flex-sub text-df" style="line-height: 50upx;">隐私政策</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;">			</image>		</view>		<view class="flex  padding-tb" @click="goNav('/my/setting/about')">			<view class="flex-sub text-df" style="line-height: 50upx;">关于我们</view>			<image src="../../static/images/my/right.png" style="line-height: 50upx;width: 15rpx;height: 30rpx;">			</image>		</view>		<view class="btn" @click="goOut">退出登录</view>	</view></template><script>	export default {		data() {			return {			}		},		onLoad() {		},		methods: {			goNav(e) {				uni.navigateTo({					url: e				})			},			goOut() {				uni.showModal({					title: '提示',					content: '确定退出登录吗?',					success: function(res) {						if (res.confirm) {							console.log('用户点击确定');							uni.removeStorageSync('userName')							uni.removeStorageSync('avatar')							uni.removeStorageSync('userId')							uni.removeStorageSync('token')							uni.removeStorageSync('phone')							uni.removeStorageSync('zhiFuBaoName')							uni.removeStorageSync('zhiFuBao')							uni.removeStorageSync('invitationCode')							uni.removeStorageSync('unionId')							uni.removeStorageSync('openId')							uni.removeStorageSync('isVIP')							uni.showToast({								title: '退出成功!',								icon: 'none'							})							setTimeout(function() {								uni.navigateBack()							}, 1000)						} else if (res.cancel) {							console.log('用户点击取消');						}					}				})			}		}	}</script><style>	.btn {		width: 686rpx;		height: 100rpx;		line-height: 100rpx;		text-align: center;		background: #1EDA94;		border-radius: 86rpx 86rpx 86rpx 86rpx;		font-weight: bold;		font-size: 32rpx;		color: #FFFFFF;		position: fixed;		bottom: 70rpx;		left: 32rpx;	}</style>
 |