t-m-list.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view class="content">
  3. <view class="line"></view>
  4. <view class="list">
  5. <view class="item" @click="logout()">
  6. <view class="left">
  7. <view class="icon">
  8. <image src="./icon/list_2.png" mode=""></image>
  9. </view>
  10. <view class="name">退出登录</view>
  11. </view>
  12. <view class="right">
  13. <uni-icons type="arrowright"></uni-icons>
  14. </view>
  15. </view>
  16. <view class="item" @click="go_m_download()">
  17. <view class="left">
  18. <view class="icon">
  19. <image src="./icon/list_3.png" mode=""></image>
  20. </view>
  21. <view class="name">下载二维码</view>
  22. </view>
  23. <view class="right">
  24. <uni-icons type="arrowright"></uni-icons>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. name:"t-m-list",
  33. data() {
  34. return {
  35. };
  36. },
  37. methods:{
  38. // 退出登录
  39. logout(){
  40. uni.clearStorageSync('Authorization');
  41. uni.showToast({
  42. icon:"none",
  43. title:"退出登录"
  44. })
  45. // 跳转登录页
  46. uni.redirectTo({
  47. url:"../../my/login/login"
  48. })
  49. },
  50. // 下载二维码
  51. go_m_download(){
  52. uni.navigateTo({
  53. url:"../../my/download/download"
  54. })
  55. }
  56. }
  57. }
  58. </script>
  59. <style lang="scss">
  60. .content{
  61. margin-top: 17px;
  62. box-sizing: border-box;
  63. padding: 0 24rpx;
  64. }
  65. .line{
  66. height: 4px;
  67. background: #009FE8;
  68. }
  69. .list{
  70. .item{
  71. height: 48px;
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. box-sizing: border-box;
  76. padding-right: 2px;
  77. padding-left: 10px;
  78. .left{
  79. display: flex;
  80. align-items: center;
  81. .icon{
  82. width: 19px;
  83. height: 17px;
  84. image{
  85. width: 19px;
  86. height: 19px;
  87. }
  88. }
  89. .name{
  90. margin-left: 4px;
  91. font-size: 17px;
  92. font-weight: 500;
  93. color: #333333;
  94. line-height: 23px;
  95. }
  96. }
  97. .right{
  98. }
  99. }
  100. }
  101. </style>