<template>
|
<view class="content">
|
<view class="cell">
|
<view class="cell-item">
|
<view class="cell-item-text">手机号</view>
|
<view class="cell-info">{{userInfo.phone | hidePhoneMiddle}}</view>
|
<!-- <image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image> -->
|
</view>
|
<!-- <view class="cell-item" @click="$navTo('/pages/user/money/record?t=cz&title=充值记录')">
|
<view class="cell-item-text">账号申诉</view>
|
<image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
|
</view> -->
|
<view class="cell-item" @click="$navTo('/pages/user/setup/logout')">
|
<view class="cell-item-text">账号注销</view>
|
<image class="cell-item-icon" src="/static/icon/icon_arraw.png" mode="widthFix"></image>
|
</view>
|
</view>
|
</view>
|
</template>
|
|
<script>
|
import {
|
mapState,
|
} from 'vuex'
|
export default {
|
data() {
|
return {
|
|
};
|
},
|
computed:{
|
...mapState({
|
userInfo: state=>state.userInfo,
|
})
|
},
|
}
|
</script>
|
|
<style lang="scss">
|
.content{
|
padding: 0 28rpx;
|
.cell{
|
.cell-item{
|
height: 100rpx;
|
display: flex;
|
align-items: center;
|
border-bottom: 2rpx solid rgba(217, 217, 217, 0.4);
|
.cell-item-text{
|
flex: 1;
|
font-size: 32rpx;
|
color: #000000;
|
line-height: 32rpx;
|
}
|
.cell-info{
|
padding-right: 30rpx;
|
font-size: 32rpx;
|
color: #000000;
|
line-height: 32rpx;
|
}
|
.cell-item-icon{
|
width: 14rpx;
|
height: 24rpx;
|
}
|
}
|
}
|
}
|
</style>
|