reportInfo.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view class="index">
  3. <view class="left">
  4. <image :src="info.headimg" mode=""></image>({{info.nickname}})
  5. </view>
  6. <view class="reason">
  7. 举报理由:{{info.title}}
  8. </view>
  9. <view class="info">
  10. {{info.r_content}}
  11. </view>
  12. <view class="reason">
  13. 举报时间:{{info.create_at}}
  14. </view>
  15. <view class="reason" style="margin-top: 32rpx;">
  16. 审核结果:{{info.status==1?'审核中':info.status==2?'已通过':'已驳回'}}
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. onLoad(option) {
  23. this.getInfo(option.id)
  24. },
  25. data() {
  26. return {
  27. info:{}
  28. }
  29. },
  30. methods: {
  31. getInfo(id){
  32. uni.$u.http.post('/api/user/details_report',{rid:id}).then(res => {
  33. this.info=res.data
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .index{
  41. padding: 36rpx 30rpx;
  42. .left{
  43. padding-bottom: 20rpx;
  44. border-bottom: 2rpx solid #F5F4F5;
  45. image{
  46. vertical-align: middle;
  47. width: 64rpx;
  48. height: 64rpx;
  49. border-radius: 50%;
  50. margin-right: 12rpx;
  51. }
  52. }
  53. .reason{
  54. font-size: 24rpx;
  55. font-weight: 600;
  56. }
  57. .info{
  58. box-sizing: border-box;
  59. font-size: 24rpx;
  60. color: #666666;
  61. padding: 20rpx;
  62. margin: 24rpx auto 32rpx;
  63. width: 690rpx;
  64. height: 280rpx;
  65. background: #F3F3F3;
  66. border-radius: 20rpx;
  67. }
  68. }
  69. </style>