|
|
@@ -0,0 +1,83 @@
|
|
|
+<template>
|
|
|
+ <view class="default_page" :style="{'height':h+'px', 'padding-top':mt+'px'}">
|
|
|
+ <cus-header title='设置'></cus-header>
|
|
|
+ <div class="box">
|
|
|
+ <div class="box-item adfacjb" @click="turnPage('')">
|
|
|
+ <div class="box-item-left">服务协议</div>
|
|
|
+ <image class="box-item-right" :src="imgBase+'my_arrow_right.png'"></image>
|
|
|
+ </div>
|
|
|
+ <div class="box-item adfacjb" @click="turnPage('')">
|
|
|
+ <div class="box-item-left">隐私政策</div>
|
|
|
+ <image class="box-item-right" :src="imgBase+'my_arrow_right.png'"></image>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="exit" @click="exitLogin">退出登录</div>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data(){
|
|
|
+ return {
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods:{
|
|
|
+ turnPage(){
|
|
|
+
|
|
|
+ },
|
|
|
+ exitLogin(){
|
|
|
+ uni.clearStorageSync();
|
|
|
+ uni.reLaunch({
|
|
|
+ url:'/pages/my'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="less">
|
|
|
+ .default_page{
|
|
|
+ padding: 0 24rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background: #F7F7F7;
|
|
|
+
|
|
|
+ .box{
|
|
|
+ margin-top: 20rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ &-item{
|
|
|
+ background: #FFFFFF;
|
|
|
+ box-shadow: inset 0px -1px 0px 0px #EFEFEF;
|
|
|
+ padding: 28rpx 24rpx;
|
|
|
+ &-left{
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #002846;
|
|
|
+ line-height: 42rpx;
|
|
|
+ }
|
|
|
+ &-right{
|
|
|
+ width: 32rpx;
|
|
|
+ height: 32rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .exit{
|
|
|
+ width: calc(100% - 100rpx);
|
|
|
+ height: 88rpx;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border-radius: 44rpx;
|
|
|
+ font-family: PingFang-SC, PingFang-SC;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #199C9C;
|
|
|
+ line-height: 88rpx;
|
|
|
+ text-align: center;
|
|
|
+ letter-spacing: 2rpx;
|
|
|
+ position: fixed;
|
|
|
+ left: 50rpx;
|
|
|
+ bottom: 200rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|