person.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="login">
  3. <view class="content">
  4. <view class="content_badge">
  5. <u-icon name="account" color="aliceblue" size="82"></u-icon>
  6. <text>1.0.0</text>
  7. <text style="font-size: 15px">2023-07-16</text>
  8. </view>
  9. <view class="border-customl">
  10. <view class="border-boke">
  11. <view class="sawda" @click="Waereroter">
  12. <uni-icons type="person" color="#ff0505" size="45"></uni-icons>
  13. <text style="margin-top: 9px">注销登录</text>
  14. </view>
  15. </view>
  16. </view>
  17. <!-- 主体表单 -->
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. let _this;
  23. export default {
  24. data() {
  25. return { time: "", dynamicTitle: "出库" };
  26. },
  27. onLoad() {},
  28. mounted() {
  29. _this = this;
  30. },
  31. onShow() {
  32. this.time = new Date();
  33. },
  34. methods: {
  35. Waereroter() {
  36. uni.reLaunch({
  37. url: "/pages/index/login",
  38. });
  39. },
  40. },
  41. };
  42. </script>
  43. <style scoped>
  44. /deep/.u-icon--right {
  45. flex-direction: row;
  46. align-items: center;
  47. display: flex;
  48. justify-content: center;
  49. }
  50. </style>
  51. <style lang="scss" scoped>
  52. .content_badge {
  53. height: 190px;
  54. text-align: center;
  55. background: red;
  56. font-size: 19px;
  57. color: aliceblue;
  58. display: flex;
  59. justify-content: center;
  60. flex-direction: column;
  61. }
  62. .border-customl {
  63. display: flex;
  64. flex-wrap: wrap;
  65. .border-boke {
  66. border: 1px solid #e5e5e5;
  67. width: 30%;
  68. height: 7rem;
  69. background: white;
  70. justify-content: center;
  71. display: flex;
  72. align-items: center;
  73. .sawda {
  74. position: absolute;
  75. display: grid;
  76. text-align: center;
  77. }
  78. }
  79. }
  80. </style>