Tenantdetails.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <view class="billall">
  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">
  10. <h3>{{item.roomName}}</h3>
  11. <view class="Currentamount">
  12. 房间编号:{{item.roomId}}
  13. </view>
  14. <view class="Currentamount">
  15. 租户名称: {{item.tenantsName}}
  16. </view>
  17. <view class="Currentamount">
  18. 门锁密码:{{item.issuedData}}
  19. </view>
  20. <view class="Currentamount">
  21. 区域名称: {{item.areaName}}
  22. </view>
  23. <view class="Currentamount">
  24. 更新时间: {{item.updateDate}}
  25. </view>
  26. </view>
  27. </u-list-item>
  28. </u-list>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. totalnumber: 0,
  37. setyesno: true,
  38. indexList: [],
  39. dataList: [],
  40. dataForm: {
  41. "currentPage":1,
  42. "deviceId": "",
  43. "pageSize": 10,
  44. "roomId": "",
  45. "tempPwd": "",
  46. "tenantsId": "",
  47. "userName": ""
  48. },
  49. showtype: false,
  50. showdct: false,
  51. mytitle: '',
  52. alldata: [],
  53. showfloor: false,
  54. loading: false,
  55. columns: [],
  56. pd: true,
  57. columnData: [],
  58. myday: '',
  59. mytype: '全部',
  60. showPicker: false,
  61. }
  62. },
  63. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  64. onLoad(options) {
  65. this.dataForm.roomId= options.companyOrgId;
  66. this.getalldata();
  67. },
  68. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  69. onReady() {
  70. // 微信小程序需要用此写法
  71. },
  72. //监听页面隐藏
  73. onHide() {},
  74. //监听窗口尺寸变化
  75. onResize() {},
  76. //监听页面卸载
  77. onUnload() {},
  78. //监听用户下拉动作,一般用于下拉刷新
  79. onPullDownRefresh() {},
  80. methods: {
  81. scrolltolower() {
  82. if (this.pd) {
  83. this.getalldata();
  84. } else {
  85. return
  86. }
  87. },
  88. getalldata() {
  89. this.$api.post('/lock/userPage', this.dataForm)
  90. .then(res => {
  91. this.totalnumber = res.data.data.total;
  92. if (res.data.data.list.length != 0) {
  93. this.indexList.push(...res.data.data.list);
  94. this.dataForm.currentPage = this.dataForm.currentPage + 1;
  95. this.pd = true;
  96. } else {
  97. uni.showToast({
  98. title: '暂无更多数据了',
  99. icon: 'none',
  100. duration: 1500
  101. })
  102. this.pd = false;
  103. }
  104. })
  105. },
  106. }
  107. }
  108. </script>
  109. <style lang="scss">
  110. .Currentamount {
  111. padding-left: 30rpx;
  112. min-height: 50rpx;
  113. line-height: 50rpx;
  114. color: #BCB3A7;
  115. span {
  116. color: #FA5555;
  117. padding-left: 9rpx;
  118. }
  119. }
  120. .Callfee {
  121. width: 100rpx;
  122. height: 45rpx;
  123. text-align: center;
  124. line-height: 45rpx;
  125. color: #5C8FFF;
  126. border: 1px solid #5C8FFF;
  127. font-size: 22rpx;
  128. position: absolute;
  129. bottom: 10rpx;
  130. right: 10px;
  131. font-weight: bold;
  132. }
  133. .companylist {
  134. margin: 20rpx 30rpx;
  135. background: #fff;
  136. min-height:340rpx;
  137. border-radius: 10px;
  138. position: relative;
  139. h3 {
  140. height: 70rpx;
  141. line-height: 70rpx;
  142. padding-left: 30rpx;
  143. }
  144. }
  145. .settled {
  146. background-color: #09C700;
  147. width: 120rpx;
  148. height: 60rpx;
  149. text-align: center;
  150. line-height: 60rpx;
  151. color: #fff;
  152. font-size: 14rpx;
  153. position: absolute;
  154. top: 0px;
  155. right: 0px;
  156. border-top-right-radius: 10rpx;
  157. border-bottom-left-radius: 10rpx;
  158. }
  159. .outstanding {
  160. background-color: #09C700;
  161. width: 120rpx;
  162. height: 60rpx;
  163. text-align: center;
  164. line-height: 60rpx;
  165. color: #fff;
  166. font-size: 14rpx;
  167. position: absolute;
  168. top: 110rpx;
  169. right: 0px;
  170. border-top-left-radius: 10rpx;
  171. border-bottom-left-radius: 10rpx;
  172. }
  173. .outstanding1 {
  174. background-color: #09C700;
  175. width: 120rpx;
  176. height: 60rpx;
  177. text-align: center;
  178. line-height: 60rpx;
  179. color: #fff;
  180. font-size: 14rpx;
  181. position: absolute;
  182. top: 215rpx;
  183. right: 0px;
  184. border-top-left-radius: 10rpx;
  185. border-bottom-left-radius: 10rpx;
  186. }
  187. .outstanding2 {
  188. background-color: #09C700;
  189. width: 120rpx;
  190. height: 60rpx;
  191. text-align: center;
  192. line-height: 60rpx;
  193. color: #fff;
  194. font-size: 14rpx;
  195. position: absolute;
  196. bottom: 0px;
  197. right: 0px;
  198. border-top-left-radius: 10rpx;
  199. border-bottom-right-radius: 10rpx;
  200. }
  201. .billall {}
  202. .topbill {
  203. display: flex;
  204. justify-content: space-around;
  205. align-items: center;
  206. height: 100rpx;
  207. background-color: #e6e6e6;
  208. }
  209. .topbilledit {
  210. display: flex;
  211. justify-content: space-around;
  212. align-items: center;
  213. }
  214. .changetime1 {
  215. padding-right: 10rpx;
  216. }
  217. </style>