<!-- 实名认证 -->
|
|
<template>
|
|
<view class="autonym">
|
|
<!-- 用户信息 -->
|
|
<div class="user-info">
|
|
<image class="user-bg" src="@/static/image/center/center-bg.png" mode="widthFix"></image>
|
|
</div>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Autonym",
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
toCenter() {
|
|
uni.navigateTo({
|
|
url: "/pages/index/center"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.autonym {
|
|
|
|
// 用户信息
|
|
.user-info {
|
|
.user-bg {
|
|
width: 750rpx;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|