reportList.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view>
  3. <view class="item" v-for="(item,index) in list" :key="index">
  4. <view class="top u-flex u-row-between">
  5. <view class="left">
  6. <image :src="item.headimg" mode=""></image>({{item.nickname}})
  7. </view>
  8. <image src="../../static/profile/sheneh@2x.png" mode="" v-if="item.status==1"></image>
  9. <image src="../../static/profile/tongguo@2x.png" mode="" v-if="item.status==2"></image>
  10. <image src="../../static/profile/bohui@2x.png" mode="" v-if="item.status==3"></image>
  11. </view>
  12. <view class="bottom u-flex u-row-between">
  13. <view class="reason">
  14. 举报理由:{{item.title}}
  15. </view>
  16. <view class="button u-flex u-row-right">
  17. <view class="" style="margin-right: 10rpx;">
  18. <u-button shape='circle' size="small" text="查看详情" @click="lookInfo(item)"></u-button>
  19. </view>
  20. <u-button shape='circle' v-if="item.status==1" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);" size="small" text="取消举报" @click="canclejubao(item)"></u-button>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. onLoad() {
  29. this.getList()
  30. },
  31. onReachBottom() {
  32. this.page++
  33. this.getList()
  34. },
  35. data() {
  36. return {
  37. page:1,
  38. list:[]
  39. }
  40. },
  41. methods: {
  42. canclejubao(item){
  43. uni.$u.http.post('/api/user/cancel_report',{rid:item.id}).then(res => {
  44. if(res.code==1){
  45. this.$u.toast(res.msg)
  46. this.page=1
  47. this.getList()
  48. }
  49. })
  50. },
  51. lookInfo(item){
  52. uni.navigateTo({
  53. url:'./reportInfo?id='+item.id
  54. })
  55. },
  56. getList(){
  57. uni.$u.http.post('/api/user/my_report',{page:this.page}).then(res => {
  58. if(this.page==1){
  59. this.list=res.data.data
  60. }else{
  61. this.list=[...this.activityList,...res.data.data]
  62. }
  63. })
  64. },
  65. }
  66. }
  67. </script>
  68. <style lang="scss">
  69. page{
  70. background-color: #F3F3F3;
  71. padding-top: 20rpx;
  72. }
  73. .bottom{
  74. padding: 20rpx 0;
  75. .reason{
  76. font-size: 24rpx;
  77. font-weight: 600;
  78. }
  79. }
  80. .top{
  81. padding-bottom: 20rpx;
  82. border-bottom: 2rpx solid #F5F4F5;
  83. image{
  84. width: 96rpx;
  85. height: 36rpx;
  86. }
  87. }
  88. .item{
  89. font-size: 20rpx;
  90. color: #222222;
  91. margin: 0 auto 20rpx;
  92. padding: 20rpx;
  93. width: 690rpx;
  94. background: #FFFFFF;
  95. border-radius: 28rpx;
  96. .left{
  97. image{
  98. vertical-align: middle;
  99. width: 64rpx;
  100. height: 64rpx;
  101. border-radius: 50%;
  102. margin-right: 12rpx;
  103. }
  104. }
  105. }
  106. </style>