Intelligentdoorlock.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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="Remotedooropening(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. Remotedooropening(e) {
  132. let postdata = {
  133. cmdType: 'RemoteOpenDoor',
  134. roomId: e.roomid
  135. };
  136. this.$api.post('/lock/issuedCmd', postdata)
  137. .then(res => {
  138. if (res.data.code == 0) {
  139. this.$refs.uNotify.success(res.data.data)
  140. } else {
  141. this.$refs.uNotify.error(res.data.msg)
  142. }
  143. })
  144. },
  145. seedetail(e) {
  146. uni.navigateTo({
  147. url: `/pages/Workorder/Intelligentdoorlock/Tenantdetails/Tenantdetails?companyOrgId=${e.roomid}`
  148. });
  149. },
  150. kaimen(e) {
  151. uni.navigateTo({
  152. url: `/pages/Workorder/Intelligentdoorlock/Dooropeningrecord/Dooropeningrecord?companyOrgId=${e.roomid}`
  153. });
  154. },
  155. mima(e) {
  156. let postdata = {
  157. "currentPage": 0,
  158. "deviceId": "",
  159. "pageSize": 10,
  160. "roomId": e.roomid,
  161. "tempPwd": "",
  162. "tenantsId": "",
  163. "userName": ""
  164. };
  165. this.$api.post('/lock/getTempPwd', postdata)
  166. .then(res => {
  167. if (res.data.code == 0) {
  168. this.showms = true;
  169. this.lsmima = res.data.data;
  170. // console.log('111111111111111111',this.lsmima)
  171. } else {
  172. this.$refs.uNotify.error(res.data.msg)
  173. }
  174. })
  175. },
  176. closems() {
  177. this.showms = false
  178. // console.log('close');
  179. },
  180. scrolltolower() {
  181. if (this.pd) {
  182. this.getalldata();
  183. } else {
  184. return
  185. }
  186. },
  187. getalldata() {
  188. this.$api.post('/lock/page', this.dataForm)
  189. .then(res => {
  190. this.totalnumber = res.data.data.total;
  191. if (res.data.data.list.length != 0) {
  192. this.indexList.push(...res.data.data.list);
  193. this.dataForm.currentPage = this.dataForm.currentPage + 1;
  194. this.pd = true;
  195. } else {
  196. uni.showToast({
  197. title: '暂无更多数据了',
  198. icon: 'none',
  199. duration: 1500
  200. })
  201. this.pd = false;
  202. }
  203. })
  204. },
  205. }
  206. }
  207. </script>
  208. <style lang="scss">
  209. .mensuoxx {
  210. width: 750rpx;
  211. height: 300rpx;
  212. h3 {
  213. width: 100%;
  214. height: 80rpx;
  215. text-align: center;
  216. line-height: 80rpx;
  217. margin-bottom: 50rpx;
  218. }
  219. }
  220. .Currentamount {
  221. padding-left: 30rpx;
  222. min-height: 50rpx;
  223. line-height: 50rpx;
  224. color: #BCB3A7;
  225. span {
  226. color: #FA5555;
  227. padding-left: 9rpx;
  228. }
  229. }
  230. .Callfee {
  231. width: 100rpx;
  232. height: 45rpx;
  233. text-align: center;
  234. line-height: 45rpx;
  235. color: #5C8FFF;
  236. border: 1px solid #5C8FFF;
  237. font-size: 22rpx;
  238. position: absolute;
  239. bottom: 10rpx;
  240. right: 10px;
  241. font-weight: bold;
  242. }
  243. .companylist {
  244. margin: 20rpx 30rpx;
  245. background: #fff;
  246. min-height: 380rpx;
  247. border-radius: 10px;
  248. position: relative;
  249. h3 {
  250. height: 70rpx;
  251. line-height: 70rpx;
  252. padding-left: 30rpx;
  253. }
  254. }
  255. .settled {
  256. background-color: #2B60DE;
  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: 0px;
  265. right: 0px;
  266. border-top-right-radius: 10rpx;
  267. border-bottom-left-radius: 10rpx;
  268. }
  269. .outstanding {
  270. background-color: #09C700;
  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: 110rpx;
  279. right: 0px;
  280. border-top-left-radius: 10rpx;
  281. border-bottom-left-radius: 10rpx;
  282. }
  283. .outstanding1 {
  284. background-color: #3090C7;
  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. top: 56%;
  293. right: 0px;
  294. border-top-left-radius: 10rpx;
  295. border-bottom-left-radius: 10rpx;
  296. }
  297. .outstanding2 {
  298. background-color: #4E8975;
  299. width: 120rpx;
  300. height: 60rpx;
  301. text-align: center;
  302. line-height: 60rpx;
  303. color: #fff;
  304. font-size: 14rpx;
  305. position: absolute;
  306. bottom: 0px;
  307. right: 0px;
  308. border-top-left-radius: 10rpx;
  309. border-bottom-right-radius: 10rpx;
  310. }
  311. .billall {}
  312. .topbill {
  313. display: flex;
  314. justify-content: space-around;
  315. align-items: center;
  316. height: 100rpx;
  317. background-color: #e6e6e6;
  318. }
  319. .topbilledit {
  320. display: flex;
  321. justify-content: space-around;
  322. align-items: center;
  323. }
  324. .changetime1 {
  325. padding-right: 10rpx;
  326. }
  327. </style>