Chargedetails.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <view>
  3. <view class="u-listdata">
  4. <view style="padding:10rpx 0 0 30rpx">
  5. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  6. </view>
  7. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  8. <u-list-item v-for="(item, index) in indexList" :key="index">
  9. <view class="companylist" @click="seedetail(item)">
  10. <view class="Currentamount">
  11. 欠费金额:{{item.smsCode}}
  12. </view>
  13. <view class="Currentamount">
  14. 发送时间: {{item.createDate}}
  15. </view>
  16. <view class="Currentamount">
  17. 空间信息:¥{{item.spacePos}}
  18. </view>
  19. <view class="Currentamount">
  20. 联系电话: {{item.mobile}}
  21. </view>
  22. <view class="Currentamount">
  23. 短信类型: 催费
  24. </view>
  25. <view class="Currentamount">
  26. 短信内容: {{item.content}}
  27. </view>
  28. </view>
  29. </u-list-item>
  30. </u-list>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. indexList:[],
  39. postdata:{
  40. name:'',
  41. page:1,
  42. limit:10,
  43. },
  44. pd: true,
  45. totalnumber:0,
  46. }
  47. },
  48. onLoad(options) {
  49. this.postdata.name = options.companyOrgId;
  50. // console.log(options.companyOrgId);
  51. this.getdata()
  52. },
  53. methods: {
  54. getdata(){
  55. this.$api.get('/expeditrecord/recordpage',this.postdata)
  56. .then(res=>{
  57. console.log('111111111111111111',res.data.data.total)
  58. this.totalnumber=res.data.data.total;
  59. if (res.data.data.list.length != 0) {
  60. this.indexList.push(...res.data.data.list);
  61. this.postdata.page = this.postdata.page + 1;
  62. this.pd = true;
  63. } else {
  64. uni.showToast({
  65. title: '暂无更多数据了',
  66. icon: 'none',
  67. duration: 1500
  68. })
  69. this.pd = false;
  70. }
  71. })
  72. },
  73. scrolltolower() {
  74. if (this.pd) {
  75. this.getdata();
  76. } else {
  77. return
  78. }
  79. },
  80. }
  81. }
  82. </script>
  83. <style lang="scss">
  84. .Currentamount {
  85. padding-left: 30rpx;
  86. min-height: 50rpx;
  87. line-height: 50rpx;
  88. color: #BCB3A7;
  89. }
  90. .Callfee {
  91. width: 100rpx;
  92. height: 45rpx;
  93. text-align: center;
  94. line-height: 45rpx;
  95. color: #5C8FFF;
  96. border: 1px solid #5C8FFF;
  97. font-size: 22rpx;
  98. position: absolute;
  99. bottom: 10rpx;
  100. right: 10px;
  101. font-weight: bold;
  102. }
  103. .companylist {
  104. margin: 20rpx 30rpx;
  105. background: #fff;
  106. min-height: 390rpx;
  107. border-radius: 10px;
  108. position: relative;
  109. h3 {
  110. height: 70rpx;
  111. line-height: 70rpx;
  112. padding-left: 30rpx;
  113. }
  114. }
  115. .settled {
  116. background-color: #09C700;
  117. width: 100rpx;
  118. height: 40rpx;
  119. text-align: center;
  120. line-height: 40rpx;
  121. color: #fff;
  122. font-size: 14rpx;
  123. position: absolute;
  124. top: 0px;
  125. right: 0px;
  126. border-top-right-radius: 10rpx;
  127. border-bottom-left-radius: 10rpx;
  128. }
  129. .outstanding {
  130. background-color: #FA5555;
  131. width: 100rpx;
  132. height: 40rpx;
  133. text-align: center;
  134. line-height: 40rpx;
  135. color: #fff;
  136. font-size: 14rpx;
  137. position: absolute;
  138. top: 0px;
  139. right: 0px;
  140. border-top-right-radius: 10rpx;
  141. border-bottom-left-radius: 10rpx;
  142. }
  143. .billall {}
  144. .topbill {
  145. display: flex;
  146. justify-content: space-around;
  147. align-items: center;
  148. height: 100rpx;
  149. background-color: #e6e6e6;
  150. }
  151. .topbilledit {
  152. display: flex;
  153. justify-content: space-around;
  154. align-items: center;
  155. }
  156. .changetime1 {
  157. padding-right: 10rpx;
  158. }
  159. </style>