数字艺术
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.
 
 
 
 

176 lines
3.3 KiB

<template>
<view class="container">
<Head @backto="backto" title="设置"></Head>
<view class="setlist">
<view @click="gouserzl">
<view>个人资料</view>
<view>
<!-- <view>123</view> -->
<image src="../../static/youshou.png"></image>
</view>
</view>
<view @click="gorealname">
<view>实名认证</view>
<view>
<view v-if="anth">未认证</view>
<view v-else>已认证</view>
<image src="../../static/youshou.png"></image>
</view>
</view>
<view @click="goxieyi">
<view>用户协议</view>
<view>
<!-- <view>123</view> -->
<image src="../../static/youshou.png"></image>
</view>
</view>
<view @click="goyinshi">
<view>隐私政策</view>
<view>
<!-- <view>123</view> -->
<image src="../../static/youshou.png"></image>
</view>
</view>
<view @click="zhuxiao">
<view>退出登录</view>
<view>
<!-- <view>123</view> -->
<image src="../../static/youshou.png"></image>
</view>
</view>
</view>
</view>
</template>
<script>
import {onLoad,onShow} from "@dcloudio/uni-app";
import {usergetverified}from "../../api/api.js";
import {ref} from "vue";
import Head from "@/components/head.vue"
export default {
components:{
Head
},
setup() {
let anth=ref(true)
function backto(){
let did=uni.getStorageSync("id")
uni.navigateTo({
url:`../user/user?did=${did}`
})
}
function gouserzl(){
uni.navigateTo({
url:'../userzhiliao/userzhiliao'
})
}
function gorealname(){
uni.navigateTo({
url:'../realname/realname'
})
}
function zhuxiao(){
uni.reLaunch({
url:"../login/login"
})
uni.removeStorageSync("token");
uni.removeStorageSync("id")
}
function goxieyi(){
uni.navigateTo({
url:'../yhxy/yhxy'
})
}
function goyinshi(){
uni.navigateTo({
url:'../ysxy/ysxy'
})
}
onLoad((options)=>{
if(options.did){
uni.setStorageSync("id",options.did)
}
})
onShow(()=>{
usergetverified({}).then((res)=>{
console.log(res);
if(res.data.id_card){
anth.value=!anth.value
}
})
})
return {
gouserzl,
gorealname,
zhuxiao,
goyinshi,
goxieyi,
// 认证
anth,
backto
}
}
}
</script>
<style lang="scss" scoped>
.container{
display: flex;
}
.setlist {
width: 686upx;
// height: 772upx;
background: #23262F;
border-radius: 12upx;
padding: 32upx;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
// justify-content: space-between;
margin: auto;
margin-top: 150rpx;
>view {
width: 618upx;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
font-size: 28upx;
font-weight: 400;
color: #FFFFFF;
padding-top: 44upx;
padding-bottom: 44upx;
border-bottom: 1upx solid #373737;
&:nth-of-type(1) {
padding-top: 12upx;
}
&:nth-last-child(1){
border-bottom:none;
padding-bottom: 24upx;
}
>view {
display: flex;
align-items: center;
box-sizing: border-box;
>image {
width: 36upx;
height: 36upx;
margin-left: 8upx;
}
>view {
font-size: 24upx !important;
}
}
}
}
page{
// padding-top: 50upx;
}
</style>