FuzerenView.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <div id="FuzeRen">
  3. <!-- 背景渐变 -->
  4. <div class="top-color"></div>
  5. <!-- 个人信息模块 -->
  6. <div class="PersonalInformation">
  7. <!-- 内块 -->
  8. <div class="PI-bodyInnerblock">
  9. <!-- 用户名 -->
  10. <div class="wx_password">
  11. <p>{{ wx_password }}</p>
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return{
  21. wx_password:"淡忘-zhouzhandui",
  22. }
  23. },
  24. methods:{
  25. },
  26. mounted:{
  27. },
  28. components:{
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. #FuzeRen{
  34. width: 100vw;
  35. height: 100vh;
  36. background-color: #f2f4f8;
  37. .top-color{
  38. width: 100vw;
  39. height: 17vh;
  40. background-image: linear-gradient(to bottom, #3974c7, #f2f4f8);
  41. position: fixed;
  42. }
  43. .PersonalInformation{
  44. width: 95vw;
  45. height: 23vh;
  46. background-color: #fff;
  47. border-radius: 1vh;
  48. position: relative;
  49. z-index: 1;
  50. top: 8vh;
  51. margin: 0 auto;
  52. .PI-bodyInnerblock{
  53. width: 90vw;
  54. height: 20vh;
  55. background-color: #ffeaea;
  56. margin: 0 auto;
  57. padding-top: 3vh;
  58. .wx_password{
  59. p{
  60. color: #333;
  61. font-size: 1.6rem;
  62. }
  63. }
  64. }
  65. }
  66. }
  67. </style>