history.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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.length !== 0">{{item.reply}}</view>
  8. <view class="bottom hflex acenter jbetween">
  9. <view class="date">{{item.create_at}}</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.length == 0">编辑</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.getDatalist()
  34. },
  35. methods: {
  36. getDatalist() {
  37. $api.req({
  38. url: '/data/api.auth.Center/feedbacklist',
  39. method: 'POST',
  40. data: {
  41. page: that.page
  42. }
  43. }, function(res) {
  44. if(res.code == 1) {
  45. console.log(res.data);
  46. that.pageList = res.data.data
  47. that.total = res.data.toatl
  48. }
  49. })
  50. },
  51. // 详情
  52. toDetail(id) {
  53. $api.jump('/page_mine/pages/service/feed/detail?id=' + id)
  54. },
  55. // 删除
  56. detele(id) {
  57. $api.req({
  58. url: '/data/api.auth.Center/delfeedback',
  59. method: 'POST',
  60. data: {
  61. id: id
  62. }
  63. }, function(res) {
  64. if(res.code == 1) {
  65. console.log(res.data);
  66. $api.info(res.info)
  67. that.getDatalist()
  68. }
  69. })
  70. },
  71. toEdit(id) {
  72. console.log(id);
  73. $api.jump('/page_mine/pages/service/feed/feedback?id='+id)
  74. },
  75. onReachBottom() {
  76. console.log("到底了");
  77. if (that.page == that.total) {
  78. $api.info("没有更多了")
  79. } else {
  80. this.page++
  81. this.getDatalist()
  82. }
  83. }
  84. },
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .content {
  89. background: #F5F5F5;
  90. padding: 0 30rpx;
  91. .box {
  92. width: 100%;
  93. margin: 20rpx 0 0;
  94. background-color: #fff;
  95. border-radius: 20rpx;
  96. box-sizing: border-box;
  97. padding: 28rpx 20rpx;
  98. .title {
  99. font-size: 30rpx;
  100. font-weight: 500;
  101. color: #222222;
  102. }
  103. .text {
  104. font-size: 26rpx;
  105. font-weight: 400;
  106. color: #777777;
  107. margin: 18rpx 0 24rpx;
  108. line-height: 18px;
  109. }
  110. .reply {
  111. width: 100%;
  112. height: 76rpx;
  113. background: #F5F5F5;
  114. border-radius: 16rpx;
  115. font-size: 26rpx;
  116. font-weight: 400;
  117. color: #222222;
  118. line-height: 76rpx;
  119. overflow: hidden;
  120. text-overflow: ellipsis;
  121. white-space: nowrap;
  122. margin-bottom: 24rpx;
  123. box-sizing: border-box;
  124. padding: 0 8rpx 0 16rpx;
  125. }
  126. .bottom {
  127. width: 100%;
  128. padding-top: 24rpx;
  129. border-top: 1rpx solid #f5f5f5;
  130. .date {
  131. font-size: 24rpx;
  132. font-weight: 400;
  133. color: #777777;
  134. line-height: 34rpx;
  135. }
  136. .btn {
  137. width: 120rpx;
  138. height: 56rpx;
  139. border-radius: 28rpx;
  140. border: 1rpx solid #D3D3D3;
  141. font-size: 26rpx;
  142. color: #222222;
  143. margin-left: 20rpx;
  144. text-align: center;
  145. line-height: 56rpx;
  146. }
  147. .btn1 {
  148. width: 120rpx;
  149. height: 56rpx;
  150. border-radius: 28rpx;
  151. border: 1rpx solid #506DFF;
  152. font-size: 26rpx;
  153. color: #506DFF;
  154. margin-left: 20rpx;
  155. text-align: center;
  156. line-height: 56rpx;
  157. }
  158. }
  159. }
  160. }
  161. </style>