detail.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="hflex acenter jbetween box_top">
  5. <view class="title">反馈内容</view>
  6. <view class="text_style1">{{detail.create_time}}</view>
  7. </view>
  8. <view class="text">{{detail.content}}</view>
  9. <view class="hflex acenter">
  10. <block v-for="(item,index) in detail.image" :key="index">
  11. <image mode="aspectFill" :src="item" class="img"></image>
  12. </block>
  13. </view>
  14. </view>
  15. <view class="box" v-if="detail.reply">
  16. <view class="hflex acenter jbetween box_top">
  17. <view class="title" style="color: #506DFF;">回复</view>
  18. <view class="text_style1">{{detail.reply_time}}</view>
  19. </view>
  20. <view class="text">{{detail.reply}}</view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import $api from '@/static/js/api.js'
  26. var that = ''
  27. export default {
  28. data() {
  29. return {
  30. id: '',
  31. detail: {}
  32. }
  33. },
  34. onLoad(options) {
  35. that = this
  36. if(options.id) {
  37. that.id = options.id
  38. that.getData(options.id)
  39. }
  40. },
  41. methods: {
  42. getData(id) {
  43. var pages = getCurrentPages()
  44. var prePage = pages[pages.length - 2]
  45. var list = prePage.$vm.pageList
  46. for(var i=0;i<list.length;i++) {
  47. if(list[i].id == id) {
  48. that.detail = list[i]
  49. that.detail.image = list[i].image.split(',')
  50. }
  51. }
  52. },
  53. },
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. .content {
  58. background: #F5F5F5;
  59. padding: 0 30rpx;
  60. .box {
  61. margin-top: 20rpx;
  62. width: 100%;
  63. background: #FFFFFF;
  64. border-radius: 20rpx;
  65. box-sizing: border-box;
  66. padding: 24rpx 20rpx;
  67. .box_top {
  68. width: 100%;
  69. padding-bottom: 14rpx;
  70. border-bottom: 1rpx solid #F5F5F5;
  71. .title {
  72. font-size: 30rpx;
  73. font-weight: 500;
  74. color: #222222;
  75. }
  76. .text_style1 {
  77. font-size: 26rpx;
  78. font-weight: 400;
  79. color: #666666;
  80. }
  81. }
  82. .text {
  83. font-size: 26rpx;
  84. font-weight: 400;
  85. color: #222222;
  86. line-height: 36rpx;
  87. margin: 24rpx 0 20rpx;
  88. }
  89. .img {
  90. width: 208rpx;
  91. height: 208rpx;
  92. border-radius: 20rpx;
  93. margin: 0 14rpx 20rpx 0;
  94. }
  95. }
  96. }
  97. </style>