Videosurveillance.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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" @click="seedetail(item)">
  10. <view class="settled">
  11. 查看
  12. </view>
  13. <view class="Currentamount" style="margin-top: 20rpx;">
  14. 通道名: {{item.channelName}}
  15. </view>
  16. <view class="Currentamount">
  17. 通道号: {{item.channelNo}}
  18. </view>
  19. <view class="Currentamount">
  20. 设备序列号: {{item.deviceSerial}}
  21. </view>
  22. <!-- <view class="Currentamount">
  23. 直播地址: {{item.url}}
  24. </view> -->
  25. </view>
  26. </u-list-item>
  27. </u-list>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. //import { isEmpty, getDictDataList } from "@/utils/index";
  33. export default {
  34. components: {
  35. },
  36. data() {
  37. return {
  38. totalnumber: 0,
  39. setyesno: true,
  40. indexList: [],
  41. dataList: [],
  42. dataForm: {
  43. "accessToken": "",
  44. "channelNo": "",
  45. "deviceSerial": "",
  46. "expireTime": "3600",
  47. "pageSize": 10,
  48. "pageStart": 0,
  49. "protocol": 1
  50. },
  51. pd: true,
  52. showtype: false,
  53. showdct: false,
  54. mytitle: '',
  55. alldata: [],
  56. showfloor: false,
  57. loading: false,
  58. columns: [],
  59. columnData: [],
  60. myday: '',
  61. mytype: '全部',
  62. showPicker: false,
  63. //myday: currentDate,
  64. columnstype: [
  65. [{
  66. label: '全部',
  67. id: ''
  68. }, {
  69. label: '已关闭',
  70. id: '-1'
  71. },
  72. {
  73. label: '待支付',
  74. id: '0'
  75. },
  76. {
  77. label: '已支付',
  78. id: '1'
  79. },
  80. ]
  81. ],
  82. }
  83. },
  84. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  85. onLoad() {
  86. this.getalldata();
  87. // this.loadmore();
  88. },
  89. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  90. onReady() {
  91. // 微信小程序需要用此写法
  92. },
  93. //监听页面隐藏
  94. onHide() {},
  95. //监听窗口尺寸变化
  96. onResize() {},
  97. //监听页面卸载
  98. onUnload() {},
  99. //监听用户下拉动作,一般用于下拉刷新
  100. onPullDownRefresh() {},
  101. methods: {
  102. seedetail(e) {
  103. uni.navigateTo({
  104. url: `/pages/Workorder/Videosurveillance/Videoplayback/Videoplayback?companyOrgId=${e.url}`
  105. });
  106. },
  107. scrolltolower() {
  108. if (this.pd) {
  109. this.getalldata();
  110. } else {
  111. return
  112. }
  113. },
  114. getalldata() {
  115. this.$api.post('/video/page', this.dataForm)
  116. .then(res => {
  117. // console.log('111111111111111111', res.data.data)
  118. this.totalnumber = res.data.data.total;
  119. if (res.data.data.list.length != 0) {
  120. this.indexList.push(...res.data.data.list);
  121. this.dataForm.pageStart = this.dataForm.pageStart + 1;
  122. this.pd = true;
  123. } else {
  124. uni.showToast({
  125. title: '暂无更多数据了',
  126. icon: 'none',
  127. duration: 1500
  128. })
  129. this.pd = false;
  130. }
  131. })
  132. },
  133. // canceltype() {
  134. // this.showtype = false;
  135. // },
  136. // confirmtype(e) {
  137. // console.log('111111111111111111', e.value[0])
  138. // this.showtype = false;
  139. // this.mytype = e.value[0].label;
  140. // this.dataForm.status = e.value[0].id;
  141. // this.indexList = [];
  142. // this.dataForm.page = 1;
  143. // this.getalldata();
  144. // },
  145. // typechange() {
  146. // this.showtype = true;
  147. // },
  148. }
  149. }
  150. </script>
  151. <style lang="scss">
  152. .Currentamount {
  153. padding-left: 30rpx;
  154. min-height: 50rpx;
  155. line-height: 50rpx;
  156. color: #BCB3A7;
  157. span {
  158. color: #FA5555;
  159. padding-left: 9rpx;
  160. }
  161. }
  162. .Callfee {
  163. width: 100rpx;
  164. height: 45rpx;
  165. text-align: center;
  166. line-height: 45rpx;
  167. color: #5C8FFF;
  168. border: 1px solid #5C8FFF;
  169. font-size: 22rpx;
  170. position: absolute;
  171. bottom: 10rpx;
  172. right: 10px;
  173. font-weight: bold;
  174. }
  175. .companylist {
  176. margin: 20rpx 30rpx;
  177. background: #fff;
  178. min-height: 200rpx;
  179. border-radius: 10px;
  180. position: relative;
  181. h3 {
  182. height: 70rpx;
  183. line-height: 70rpx;
  184. padding-left: 30rpx;
  185. }
  186. }
  187. .settled {
  188. background-color: #09C700;
  189. width: 100rpx;
  190. height: 60rpx;
  191. text-align: center;
  192. line-height: 60rpx;
  193. color: #fff;
  194. font-size: 14rpx;
  195. position: absolute;
  196. top: 0px;
  197. right: 0px;
  198. border-top-right-radius: 10rpx;
  199. border-bottom-left-radius: 10rpx;
  200. }
  201. .outstanding {
  202. background-color: #30D3A2;
  203. width: 100rpx;
  204. height: 40rpx;
  205. text-align: center;
  206. line-height: 40rpx;
  207. color: #fff;
  208. font-size: 14rpx;
  209. position: absolute;
  210. top: 0px;
  211. right: 0px;
  212. border-top-right-radius: 10rpx;
  213. border-bottom-left-radius: 10rpx;
  214. }
  215. .guanbi {
  216. background-color: red;
  217. width: 100rpx;
  218. height: 40rpx;
  219. text-align: center;
  220. line-height: 40rpx;
  221. color: #fff;
  222. font-size: 14rpx;
  223. position: absolute;
  224. top: 0px;
  225. right: 0px;
  226. border-top-right-radius: 10rpx;
  227. border-bottom-left-radius: 10rpx;
  228. }
  229. .billall {}
  230. .topbill {
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. height: 100rpx;
  235. background-color: #e6e6e6;
  236. }
  237. .topbilledit {
  238. display: flex;
  239. justify-content: space-around;
  240. align-items: center;
  241. }
  242. .changetime1 {
  243. padding-right: 10rpx;
  244. }
  245. </style>