setting.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="setting">
  3. <view class="item u-flex u-row-between" @click="totext(1)">
  4. <text class="text">用户协议</text>
  5. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  6. </view>
  7. <view class="item u-flex u-row-between" @click="totext(2)">
  8. <text class="text">隐私政策</text>
  9. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  10. </view>
  11. <view class="item u-flex u-row-between" @click="showtocall = true">
  12. <text class="text">退出登录</text>
  13. <u-icon name="arrow-right" color="#CCCCCC"></u-icon>
  14. </view>
  15. <u-popup v-model="showtocall" mode="center" background="rgba(0,0,0,0)">
  16. <view class="tocall-box u-flex-col u-col-center">
  17. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  18. <view class="u-flex-col u-col-center tocall-text">确定退出登录?</view>
  19. <view class="u-flex u-row-between tocall-btn">
  20. <text @click="showtocall = false">取消</text>
  21. <text @click="logout">确定</text>
  22. </view>
  23. </view>
  24. </u-popup>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data(){
  30. return{
  31. showtocall:false
  32. }
  33. },
  34. onLoad() {
  35. },
  36. methods:{
  37. logout(){
  38. uni.removeStorageSync("token")
  39. this.$WebIM.conn.close()
  40. this.$u.toast("退出成功")
  41. setTimeout(() => {
  42. uni.navigateBack()
  43. },800)
  44. },
  45. totext(type){
  46. uni.navigateTo({
  47. url:"./xieyi?type=" + type
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .setting{
  55. padding: 24rpx;
  56. .tocall-box {
  57. position: relative;
  58. .tocall-img {
  59. width: 650rpx;
  60. height: 476rpx;
  61. }
  62. .tocall-btn {
  63. position: absolute;
  64. bottom: 70rpx;
  65. left: 0;
  66. width: 100%;
  67. padding: 0 48rpx;
  68. text:first-child {
  69. width: 254rpx;
  70. line-height: 80rpx;
  71. background: rgba(31, 126, 255, 1);
  72. border-radius: 20rpx;
  73. text-align: center;
  74. font-size: 34rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #FFFFFF;
  78. }
  79. text:last-child {
  80. width: 254rpx;
  81. line-height: 80rpx;
  82. background: rgba(204, 204, 204, 1);
  83. border-radius: 20rpx;
  84. text-align: center;
  85. font-size: 34rpx;
  86. font-family: PingFangSC-Medium, PingFang SC;
  87. font-weight: 500;
  88. color: #FFFFFF;
  89. text-decoration: none;
  90. }
  91. }
  92. .tocall-text {
  93. text-align: center;
  94. font-size: 24rpx;
  95. font-family: PingFangSC-Regular, PingFang SC;
  96. font-weight: 400;
  97. color: #999999;
  98. position: absolute;
  99. top: 244rpx;
  100. left: 0;
  101. z-index: 10;
  102. width: 100%;
  103. }
  104. }
  105. .item{
  106. padding: 24rpx 0;
  107. border-bottom: 2rpx solid rgba(245, 245, 245, 1);
  108. .text{
  109. font-size: 24rpx;
  110. font-family: PingFangSC-Regular, PingFang SC;
  111. font-weight: 400;
  112. color: #333333;
  113. }
  114. }
  115. }
  116. </style>