history.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <template>
  2. <view class="content">
  3. <block v-for="(item,index) in pageList" :key="index">
  4. <view class="box" @click="toDetail(item.id)">
  5. <view class="title">{{item.title}}</view>
  6. <view class="text">问题描述:{{item.content}}</view>
  7. <view class="reply" v-if="item.reply">{{item.reply}}</view>
  8. <view class="bottom hflex acenter jbetween">
  9. <view class="date">{{item.create_time}}</view>
  10. <view class="hflex acenter">
  11. <view class="btn" @click.stop="detele(item.id)">删除</view>
  12. <view class="btn1" @click.stop="toEdit(item.id)" v-if="!item.reply">编辑</view>
  13. </view>
  14. </view>
  15. </view>
  16. </block>
  17. </view>
  18. </template>
  19. <script>
  20. import $api from '@/static/js/api.js'
  21. var that = ''
  22. export default {
  23. data() {
  24. return {
  25. pageList: [
  26. ],
  27. total: 1,
  28. page: 1,
  29. }
  30. },
  31. onLoad() {
  32. that = this
  33. that.getList()
  34. },
  35. methods: {
  36. getList() {
  37. $api.req({
  38. url: '/data/api.business.User/feedback_list',
  39. data: {
  40. page: that.page
  41. }
  42. }, function(res) {
  43. if(res.code == 1) {
  44. console.log(res.data);
  45. that.pageList = res.data
  46. // that.total = res.data.length()
  47. }
  48. })
  49. },
  50. // 详情
  51. toDetail(id) {
  52. $api.jump('/pages/mine/service/feed/detail?id=' + id)
  53. },
  54. // 删除
  55. detele(id) {
  56. $api.req({
  57. url: '/data/api.business.User/del_feedback',
  58. method: 'POST',
  59. data: {
  60. feedback_id: id
  61. }
  62. }, function(res) {
  63. if(res.code == 1) {
  64. console.log(res.data);
  65. $api.info(res.info)
  66. that.getList()
  67. }
  68. })
  69. },
  70. toEdit(id) {
  71. console.log(id);
  72. $api.jump('/pages/mine/service/feed/feed?id='+id)
  73. },
  74. onReachBottom() {
  75. console.log("到底了");
  76. if (that.page == that.total) {
  77. $api.info("没有更多了")
  78. } else {
  79. this.page++
  80. this.getList()
  81. }
  82. }
  83. },
  84. }
  85. </script>
  86. <style lang="scss" scoped>
  87. .content {
  88. background: #F5F5F5;
  89. padding: 0 30rpx;
  90. .box {
  91. width: 100%;
  92. margin: 20rpx 0 0;
  93. background-color: #fff;
  94. border-radius: 20rpx;
  95. box-sizing: border-box;
  96. padding: 28rpx 20rpx;
  97. .title {
  98. font-size: 30rpx;
  99. font-weight: 500;
  100. color: #222222;
  101. }
  102. .text {
  103. font-size: 26rpx;
  104. font-weight: 400;
  105. color: #777777;
  106. margin: 18rpx 0 24rpx;
  107. line-height: 18px;
  108. }
  109. .reply {
  110. width: 100%;
  111. height: 76rpx;
  112. background: #F5F5F5;
  113. border-radius: 16rpx;
  114. font-size: 26rpx;
  115. font-weight: 400;
  116. color: #222222;
  117. line-height: 76rpx;
  118. overflow: hidden;
  119. text-overflow: ellipsis;
  120. white-space: nowrap;
  121. margin-bottom: 24rpx;
  122. box-sizing: border-box;
  123. padding: 0 8rpx 0 16rpx;
  124. }
  125. .bottom {
  126. width: 100%;
  127. padding-top: 24rpx;
  128. border-top: 1rpx solid #f5f5f5;
  129. .date {
  130. font-size: 24rpx;
  131. font-weight: 400;
  132. color: #777777;
  133. line-height: 34rpx;
  134. }
  135. .btn {
  136. width: 120rpx;
  137. height: 56rpx;
  138. border-radius: 28rpx;
  139. border: 1rpx solid #D3D3D3;
  140. font-size: 26rpx;
  141. color: #222222;
  142. margin-left: 20rpx;
  143. text-align: center;
  144. line-height: 56rpx;
  145. }
  146. .btn1 {
  147. width: 120rpx;
  148. height: 56rpx;
  149. border-radius: 28rpx;
  150. border: 1rpx solid #506DFF;
  151. font-size: 26rpx;
  152. color: #506DFF;
  153. margin-left: 20rpx;
  154. text-align: center;
  155. line-height: 56rpx;
  156. }
  157. }
  158. }
  159. }
  160. </style>