t-m-list.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.clearStorageSync('oa_login_time');
  42. uni.showToast({
  43. icon:"none",
  44. title:"退出登录"
  45. })
  46. // 跳转登录页
  47. uni.redirectTo({
  48. url:"../../my/login/login"
  49. })
  50. },
  51. // 下载二维码
  52. go_m_download(){
  53. uni.navigateTo({
  54. url:"../../my/download/download"
  55. })
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss">
  61. .content{
  62. margin-top: 17px;
  63. box-sizing: border-box;
  64. padding: 0 24rpx;
  65. }
  66. .line{
  67. height: 4px;
  68. background: #009FE8;
  69. }
  70. .list{
  71. .item{
  72. height: 48px;
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. box-sizing: border-box;
  77. padding-right: 2px;
  78. padding-left: 10px;
  79. .left{
  80. display: flex;
  81. align-items: center;
  82. .icon{
  83. width: 19px;
  84. height: 17px;
  85. image{
  86. width: 19px;
  87. height: 19px;
  88. }
  89. }
  90. .name{
  91. margin-left: 4px;
  92. font-size: 17px;
  93. font-weight: 500;
  94. color: #333333;
  95. line-height: 23px;
  96. }
  97. }
  98. .right{
  99. }
  100. }
  101. }
  102. </style>