【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.

41 lines
602 B

  1. <!-- 实名认证 -->
  2. <template>
  3. <view class="autonym">
  4. <!-- 用户信息 -->
  5. <div class="user-info">
  6. <image class="user-bg" src="@/static/image/center/center-bg.png" mode="widthFix"></image>
  7. </div>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name: "Autonym",
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. toCenter() {
  19. uni.navigateTo({
  20. url: "/pages/index/center"
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .autonym {
  28. // 用户信息
  29. .user-info {
  30. .user-bg {
  31. width: 750rpx;
  32. position: absolute;
  33. left: 0;
  34. top: 0;
  35. }
  36. }
  37. }
  38. </style>