fankuiList.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view>
  3. <view class="item" v-for="(item,index) in list" :key="index">
  4. <view class="u-flex u-row-between data">
  5. <text style="color: #6C6C6C;">{{item.create_at}}</text>
  6. <text class="yihui" style="background: #E2F5E1;color: #63C863;" v-if="item.status==2">已回复</text>
  7. <text class="yihui" style="background: #F9E3E5;color: #FF2F2F;" v-else>待回复</text>
  8. </view>
  9. <view class="content">
  10. <view class="content_text">
  11. {{item.content}}
  12. </view>
  13. <view class="content_img" v-if="item.show_images.length!=0">
  14. <image :src="it" mode="" class="item_img" v-for="(it,index) in item.show_images" :key="index"></image>
  15. </view>
  16. </view>
  17. <view class="huifu" v-if="item.huifu">
  18. <u-read-more showHeight="50" :shadowStyle="shadowStyle" closeText="展开">
  19. <view class="info">
  20. {{item.huifu}}
  21. </view>
  22. </u-read-more>
  23. </view>
  24. </view>
  25. <u-empty
  26. v-if="list.length==0"
  27. mode="list"
  28. icon="http://cdn.uviewui.com/uview/empty/list.png"
  29. >
  30. </u-empty>
  31. <view class="submit u-flex u-row-center" @click="toinfo">
  32. <image src="../../static/profile/fankui.png" mode="" style="width: 40rpx;height: 40rpx;margin-right: 14rpx;"></image>
  33. <text>立即反馈</text>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. onShow() {
  40. this.list=[]
  41. this.getList()
  42. },
  43. onReachBottom() {
  44. this.page++
  45. this.getList()
  46. },
  47. data() {
  48. return {
  49. shadowStyle: {
  50. backgroundImage: "none",
  51. paddingTop: "0",
  52. marginTop: "20rpx"
  53. },
  54. list:[],
  55. page:1
  56. }
  57. },
  58. methods: {
  59. toinfo(){
  60. uni.navigateTo({
  61. url:'./fankuiinfo'
  62. })
  63. },
  64. getList(){
  65. uni.$u.http.post('/api/user/feedback_list',{page:this.page}).then(res => {
  66. this.list=[...this.list,...res.data]
  67. })
  68. }
  69. }
  70. }
  71. </script>
  72. <style>
  73. page{
  74. padding: 20rpx 0 100rpx;
  75. background-color: #F3F3F3;
  76. }
  77. </style>
  78. <style lang="scss" scoped>
  79. .item{
  80. margin-bottom: 20rpx;
  81. font-size: 24rpx;
  82. color: #333;
  83. padding: 20rpx;
  84. width: 690rpx;
  85. background: #FFFFFF;
  86. border-radius: 20rpx;
  87. .data{
  88. height: 74rpx;
  89. line-height: 74rpx;
  90. border-bottom: 2rpx solid #F3F3F3;
  91. }
  92. .yihui{
  93. width: 84rpx;
  94. height: 32rpx;
  95. line-height: 32rpx;
  96. text-align: center;
  97. border-radius: 4rpx;
  98. }
  99. .content{
  100. margin: 20rpx 0;
  101. .content_text{
  102. margin-bottom: 20rpx;
  103. }
  104. .content_img{
  105. .item_img{
  106. width: 208rpx;
  107. height: 208rpx;
  108. border-radius: 20rpx;
  109. }
  110. .item_img:nth-child(3n-1){
  111. margin: 0 14rpx;
  112. }
  113. }
  114. }
  115. .huifu{
  116. padding-top: 20rpx;
  117. border-top: 2rpx solid #F3F3F3;
  118. .info{
  119. background: #F5F5F5;
  120. border-radius: 12rpx;
  121. padding: 20rpx 30rpx;
  122. }
  123. }
  124. }
  125. .submit{
  126. position: fixed;
  127. left: 50%;
  128. bottom: 50rpx;
  129. transform: translateX(-50%);
  130. font-size: 36rpx;
  131. color: #FFFFFF;
  132. width: 310rpx;
  133. height: 88rpx;
  134. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  135. border-radius: 44rpx;
  136. }
  137. </style>