You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.6 KiB
84 lines
1.6 KiB
<template>
|
|
<view>
|
|
<view class="profile_item ">
|
|
<text>Country</text>
|
|
<img src="/static/img/right1.png" alt="" class="right_img">
|
|
</view>
|
|
<view class="profile_item ">
|
|
<text>Language</text>
|
|
<img src="/static/img/right1.png" alt="" class="right_img">
|
|
</view>
|
|
<view class="profile_item ">
|
|
<text>My account</text>
|
|
<img src="/static/img/right1.png" alt="" class="right_img">
|
|
</view>
|
|
<view class="profile_item ">
|
|
<text>Privacy policy</text>
|
|
<img src="/static/img/right1.png" alt="" class="right_img">
|
|
</view>
|
|
<view class="profile_item ">
|
|
<text>Legal</text>
|
|
<img src="/static/img/right1.png" alt="" class="right_img">
|
|
</view>
|
|
<view class="set_button">
|
|
<button>SIGN OUT</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page{
|
|
border-top: 13.33rpx #F7F7F7 solid;
|
|
padding-left: 26.67rpx;
|
|
}
|
|
.profile_item{
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 24rpx;
|
|
font-weight: bold;
|
|
padding: 40rpx 0;
|
|
padding-right: 33.33rpx;
|
|
border-bottom: 1.33rpx #ECECEC solid;
|
|
box-sizing: border-box;
|
|
|
|
.right_img{
|
|
width: 18.67rpx;
|
|
height: 18.67rpx;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
}
|
|
.profile_item:last-child{
|
|
border-bottom: none;
|
|
}
|
|
.set_button{
|
|
width: 686.67rpx;
|
|
height: 73.33rpx;
|
|
margin-top: 133.33rpx;
|
|
|
|
button{
|
|
background-color: #191919;
|
|
font-size: 26.67rpx;
|
|
color: white;
|
|
font-weight: bold;
|
|
height: 100%;
|
|
line-height: 73.33rpx;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
</style>
|