【PT.SCC实名制管理系统】24.10.01 -30天,考勤打卡小程序
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.
 
 
 
 

42 lines
602 B

<!-- 实名认证 -->
<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>