Chargedetails.vue 3.1 KB

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