Intelligentdoorlock.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. <template>
  2. <view class="billall">
  3. <!-- 列表 -->
  4. <!-- <t-table>
  5. <t-tr>
  6. <t-th>序号</t-th>
  7. <t-th>姓名</t-th>
  8. <t-th>年龄</t-th>
  9. <t-th>爱好</t-th>
  10. <t-th>操作</t-th>
  11. </t-tr>
  12. <t-tr v-for="item in tableList" :key="item.id">
  13. <t-td>{{ item.id + 1 }}</t-td>
  14. <t-td>{{ item.name }}</t-td>
  15. <t-td>{{ item.age }}</t-td>
  16. <t-td>{{ item.hobby }}</t-td>
  17. <t-td align="left"> <u-button @click="edit(item)" size="small" type="primary" :plain="true" text="编辑"></u-button></t-td>
  18. </t-tr>
  19. </t-table> -->
  20. <view class="u-listdata">
  21. <view style="padding:10rpx 0 0 30rpx">
  22. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  23. </view>
  24. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  25. <u-list-item v-for="(item, index) in indexList" :key="index">
  26. <view class="companylist">
  27. <view class="settled" @click="kaimen(item)">
  28. 开门记录
  29. </view>
  30. <!-- <view class="outstanding" @click="mensuo(item)">
  31. 门锁信息
  32. </view> -->
  33. <view class="outstanding1" @click="mima(item)">
  34. 临时密码
  35. </view>
  36. <view class="outstanding2" @click="seedetail(item)">
  37. 查看租户
  38. </view>
  39. <h3>{{item.name}}</h3>
  40. <view class="Currentamount">
  41. 房间编号:{{item.roomid}}
  42. </view>
  43. <view class="Currentamount">
  44. 用户总数量: {{item.usernum}}
  45. </view>
  46. <view class="Currentamount">
  47. 设备编号:¥{{item.deviceId}}
  48. </view>
  49. <view class="Currentamount">
  50. 网关编号: {{item.deviceno}}
  51. </view>
  52. <view class="Currentamount">
  53. 安装时间: {{item.installationtime}}
  54. </view>
  55. </view>
  56. </u-list-item>
  57. </u-list>
  58. </view>
  59. <!-- 门锁信息 -->
  60. <u-popup :show="showms" mode="bottom" @close="closems" :closeable='true'>
  61. <view class="mensuoxx">
  62. <h3>临时密码</h3>
  63. <u-cell-group>
  64. <u-cell icon="lock-opened-fill" title="临时密码" :value='lsmima'></u-cell>
  65. </u-cell-group>
  66. </view>
  67. </u-popup>
  68. <u-notify ref="uNotify" message="" ></u-notify>
  69. </view>
  70. </template>
  71. <script>
  72. // import tTable from '@/components/t-table/t-table.vue';
  73. // import tTh from '@/components/t-table/t-th.vue';
  74. // import tTr from '@/components/t-table/t-tr.vue';
  75. // import tTd from '@/components/t-table/t-td.vue';
  76. export default {
  77. components: {
  78. // tTable,
  79. // tTh,
  80. // tTr,
  81. // tTd
  82. },
  83. data() {
  84. return {
  85. showms: false,
  86. totalnumber: 0,
  87. setyesno: true,
  88. lsmima:'',
  89. indexList: [],
  90. dataList: [],
  91. dataForm: {
  92. "currentPage": 0,
  93. "deviceId": "",
  94. "pageSize": 10,
  95. "roomId": "",
  96. "tempPwd": "",
  97. "tenantsId": "",
  98. "userName": ""
  99. },
  100. showtype: false,
  101. showdct: false,
  102. mytitle: '',
  103. alldata: [],
  104. showfloor: false,
  105. loading: false,
  106. columns: [],
  107. pd: true,
  108. columnData: [],
  109. myday: '',
  110. mytype: '全部',
  111. showPicker: false,
  112. }
  113. },
  114. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  115. onLoad() {
  116. this.getalldata();
  117. },
  118. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  119. onReady() {
  120. // 微信小程序需要用此写法
  121. },
  122. //监听页面隐藏
  123. onHide() {},
  124. //监听窗口尺寸变化
  125. onResize() {},
  126. //监听页面卸载
  127. onUnload() {},
  128. //监听用户下拉动作,一般用于下拉刷新
  129. onPullDownRefresh() {},
  130. methods: {
  131. seedetail(e) {
  132. uni.navigateTo({
  133. url: `/pages/Workorder/Intelligentdoorlock/Tenantdetails/Tenantdetails?companyOrgId=${e.roomid}`
  134. });
  135. },
  136. kaimen(e) {
  137. uni.navigateTo({
  138. url: `/pages/Workorder/Intelligentdoorlock/Dooropeningrecord/Dooropeningrecord?companyOrgId=${e.roomid}`
  139. });
  140. },
  141. mima(e) {
  142. let postdata={
  143. "currentPage": 0,
  144. "deviceId": "",
  145. "pageSize": 10,
  146. "roomId": e.roomid,
  147. "tempPwd": "",
  148. "tenantsId": "",
  149. "userName": ""
  150. };
  151. this.$api.post('/lock/getTempPwd',postdata)
  152. .then(res => {
  153. if (res.data.code == 0) {
  154. this.showms = true;
  155. this.lsmima=res.data.data;
  156. // console.log('111111111111111111',this.lsmima)
  157. } else {
  158. this.$refs.uNotify.error(res.data.msg)
  159. }
  160. })
  161. },
  162. closems() {
  163. this.showms = false
  164. // console.log('close');
  165. },
  166. scrolltolower() {
  167. if (this.pd) {
  168. this.getalldata();
  169. } else {
  170. return
  171. }
  172. },
  173. getalldata() {
  174. this.$api.post('/lock/page', this.dataForm)
  175. .then(res => {
  176. this.totalnumber = res.data.data.total;
  177. if (res.data.data.list.length != 0) {
  178. this.indexList.push(...res.data.data.list);
  179. this.dataForm.currentPage = this.dataForm.currentPage + 1;
  180. this.pd = true;
  181. } else {
  182. uni.showToast({
  183. title: '暂无更多数据了',
  184. icon: 'none',
  185. duration: 1500
  186. })
  187. this.pd = false;
  188. }
  189. })
  190. },
  191. }
  192. }
  193. </script>
  194. <style lang="scss">
  195. .mensuoxx {
  196. width: 750rpx;
  197. height: 300rpx;
  198. h3 {
  199. width: 100%;
  200. height: 80rpx;
  201. text-align: center;
  202. line-height: 80rpx;
  203. margin-bottom: 50rpx;
  204. }
  205. }
  206. .Currentamount {
  207. padding-left: 30rpx;
  208. min-height: 50rpx;
  209. line-height: 50rpx;
  210. color: #BCB3A7;
  211. span {
  212. color: #FA5555;
  213. padding-left: 9rpx;
  214. }
  215. }
  216. .Callfee {
  217. width: 100rpx;
  218. height: 45rpx;
  219. text-align: center;
  220. line-height: 45rpx;
  221. color: #5C8FFF;
  222. border: 1px solid #5C8FFF;
  223. font-size: 22rpx;
  224. position: absolute;
  225. bottom: 10rpx;
  226. right: 10px;
  227. font-weight: bold;
  228. }
  229. .companylist {
  230. margin: 20rpx 30rpx;
  231. background: #fff;
  232. min-height: 380rpx;
  233. border-radius: 10px;
  234. position: relative;
  235. h3 {
  236. height: 70rpx;
  237. line-height: 70rpx;
  238. padding-left: 30rpx;
  239. }
  240. }
  241. .settled {
  242. background-color: #2B60DE;
  243. width: 120rpx;
  244. height: 60rpx;
  245. text-align: center;
  246. line-height: 60rpx;
  247. color: #fff;
  248. font-size: 14rpx;
  249. position: absolute;
  250. top: 0px;
  251. right: 0px;
  252. border-top-right-radius: 10rpx;
  253. border-bottom-left-radius: 10rpx;
  254. }
  255. .outstanding {
  256. background-color: #09C700;
  257. width: 120rpx;
  258. height: 60rpx;
  259. text-align: center;
  260. line-height: 60rpx;
  261. color: #fff;
  262. font-size: 14rpx;
  263. position: absolute;
  264. top: 110rpx;
  265. right: 0px;
  266. border-top-left-radius: 10rpx;
  267. border-bottom-left-radius: 10rpx;
  268. }
  269. .outstanding1 {
  270. background-color: #3090C7;
  271. width: 120rpx;
  272. height: 60rpx;
  273. text-align: center;
  274. line-height: 60rpx;
  275. color: #fff;
  276. font-size: 14rpx;
  277. position: absolute;
  278. top:42%;
  279. right: 0px;
  280. border-top-left-radius: 10rpx;
  281. border-bottom-left-radius: 10rpx;
  282. }
  283. .outstanding2 {
  284. background-color: #4E8975;
  285. width: 120rpx;
  286. height: 60rpx;
  287. text-align: center;
  288. line-height: 60rpx;
  289. color: #fff;
  290. font-size: 14rpx;
  291. position: absolute;
  292. bottom: 0px;
  293. right: 0px;
  294. border-top-left-radius: 10rpx;
  295. border-bottom-right-radius: 10rpx;
  296. }
  297. .billall {}
  298. .topbill {
  299. display: flex;
  300. justify-content: space-around;
  301. align-items: center;
  302. height: 100rpx;
  303. background-color: #e6e6e6;
  304. }
  305. .topbilledit {
  306. display: flex;
  307. justify-content: space-around;
  308. align-items: center;
  309. }
  310. .changetime1 {
  311. padding-right: 10rpx;
  312. }
  313. </style>