parkingInfo.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view>
  3. <u-navbar
  4. :title="title"
  5. title-color="#fff"
  6. :is-back="true"
  7. :custom-back="customBack"
  8. :border-bottom="false"
  9. back-icon-color="#CCE8FF"
  10. :background="{background: 'linear-gradient(99deg, #7A4398 0%, #5A5DB9 100%)' }"></u-navbar>
  11. <!-- <u-tabs :list="tabList" :is-scroll="false" height="108" bar-width="100" :current="tabCurrent" @change="tabChange"></u-tabs> -->
  12. <!-- <u-gap height="20" bg-color="#F6F6F6"></u-gap> -->
  13. <view class="base-info">
  14. <view class="park-num u-flex">
  15. 停车情况:
  16. <text>已停{{parkNum.total-parkNum.remaeNum}}个;</text>
  17. <text>空余{{parkNum.remaeNum}}个</text>
  18. </view>
  19. <view class="u-flex u-row-between">
  20. <text @click="goDeviceList" style="color: #0082FF;">
  21. 出入口信息
  22. <u-icon name="arrow-right" color="#0082FF" size="32" style="vertical-align: middle;"></u-icon>
  23. </text>
  24. <!-- <text>异常上报</text> -->
  25. </view>
  26. </view>
  27. <mescroll-uni ref="mescrollRef01" @init="mescrollInit" :top="config.platform=='h5'?250:350" :down="downOption" @down="downCallback" :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  28. <view class="device-list u-flex u-flex-wrap u-row-start" v-if="dataList.length>1">
  29. <view class="device-list-item u-m-b-24" v-for="item in dataList" :key="item.id"
  30. @click="goDetails(item.id)">
  31. <view class="top u-text-center">
  32. <view class="space-name">
  33. <text>{{item.vehicleNo}}</text>
  34. <image v-if="item.vehicleNoStatus" class="arrearage-img" src="../../static/img/arrearage.png" mode="widthFix"></image>
  35. </view>
  36. <view class="signal">
  37. <text>{{item.roadwayName}}</text>
  38. </view>
  39. </view>
  40. <image class="carImg" :src="item.inImage||'../../static/img/qiche-g.png'" mode="heightFix"></image>
  41. <view class="time">入场:{{item.inTime}}</view>
  42. <view class="time">时长:{{item.parkingTime}}</view>
  43. </view>
  44. </view>
  45. <view v-else class="empty">
  46. <image src="../../static/img/empty.png" mode="widthFix"></image>
  47. <view class="text">该停车场还没有车辆!</view>
  48. </view>
  49. </mescroll-uni>
  50. </view>
  51. </template>
  52. <script>
  53. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  54. export default{
  55. mixins: [MescrollMixin], // 使用mixin (在main.js注册全局组件)
  56. components:{
  57. },
  58. data(){
  59. return{
  60. roadName:'',
  61. roadNo:'',
  62. title:"停车场",
  63. downOption:{
  64. auto:false // 不自动加载 (mixin已处理第一个tab触发downCallback)
  65. },
  66. upOption:{
  67. page: {
  68. size: 10 // 每页数据的数量
  69. },
  70. auto:true,
  71. // use:false,
  72. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  73. empty:{
  74. tip: '~ 暂无数据 ~', // 提示
  75. // btnText: '去看看'
  76. }
  77. },
  78. dataList:[],
  79. parkNum:{
  80. remaeNum:null,
  81. total:null
  82. },
  83. }
  84. },
  85. onLoad(page){
  86. console.log('page',page);
  87. if(page.roadName){
  88. this.roadName = page.roadName;
  89. this.title = page.roadName;
  90. }
  91. if(page.roadNo){
  92. this.roadNo = page.roadNo
  93. }
  94. if(page.deviceType){
  95. this.deviceType = page.deviceType
  96. }
  97. },
  98. onShow(){
  99. this.selectParkNum();
  100. },
  101. methods:{
  102. customBack(){
  103. this.$u.route({
  104. url: '/pages/deviceList/deviceList',
  105. type:'redirect',
  106. params:{
  107. param:this.deviceType
  108. }
  109. })
  110. // uni.reLaunch({
  111. // url: '/pages/deviceList/deviceList'
  112. // });
  113. },
  114. openPage(path,id) {
  115. this.$u.route({
  116. url: path,
  117. params:{
  118. id:id
  119. }
  120. })
  121. },
  122. goDetails(id){
  123. this.$u.route({
  124. url: 'pages/deviceList/deviceListType3/deviceInfo',
  125. params:{
  126. id:id,
  127. roadNo:this.roadNo,
  128. roadName:this.roadName,
  129. deviceType:this.deviceType,
  130. }
  131. })
  132. },
  133. goDeviceList(){
  134. this.$u.route({
  135. url: 'pages/deviceList/deviceListType3/deviceListType3',
  136. params:{
  137. roadNo:this.roadNo,
  138. roadName:this.roadName,
  139. deviceType:this.deviceType,
  140. }
  141. })
  142. },
  143. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  144. upCallback(page) {
  145. // console.log('page',page);
  146. let params ={
  147. roadNo:this.roadNo,
  148. deviceType:this.deviceType,//设备类型: 1-地磁 2-车位锁
  149. breakStatus:this.breakStatus,//设备状态:低电量 (3200_b )、 低信号( -100_s)、有故障(0)
  150. pageNum:page.num,
  151. pageSize:page.size
  152. };
  153. this.$u.api.selectParkVehicleList(params).then(curPageData=>{
  154. // console.log('word',word);
  155. console.log('curPageData',curPageData);
  156. //联网成功的回调,隐藏下拉刷新和上拉加载的状态;
  157. this.mescroll.endSuccess(curPageData.data.total);
  158. this.mescroll.endBySize(curPageData.data.rows.length, curPageData.data.total);
  159. //设置列表数据
  160. if(page.num == 1) this.dataList = []; //如果是第一页需手动制空列表
  161. this.dataList=this.dataList.concat(curPageData.data.rows); //追加新数据
  162. console.log('this.dataList',this.dataList);
  163. }).catch(()=>{
  164. console.log('catch');
  165. //联网失败, 结束加载
  166. this.mescroll.endErr();
  167. })
  168. },
  169. //点击空布局按钮的回调
  170. emptyClick(){
  171. uni.showToast({
  172. title:'点击了按钮,具体逻辑自行实现'
  173. })
  174. },
  175. refresh(){
  176. this.mescroll.resetUpScroll( );
  177. },
  178. selectParkNum(){
  179. this.$u.api.selectParkNum({roadNo:this.roadNo}).then(res=>{
  180. console.log('selectParkNum',res);
  181. this.parkNum = res.data;
  182. }).catch(()=>{
  183. console.log('catch');
  184. //联网失败, 结束加载
  185. this.mescroll.endErr();
  186. })
  187. }
  188. }
  189. }
  190. </script>
  191. <style>
  192. page{background: #F3F3F3;}
  193. </style>
  194. <style lang="scss" scoped>
  195. .device-list{
  196. margin: 24rpx 0;
  197. .device-list-item{
  198. background-color: #fff;
  199. width: 45%;
  200. margin: 0 0 24rpx 3.3%;
  201. padding: 24rpx 15rpx;
  202. border-radius: 13rpx;
  203. .top{
  204. margin-bottom: 20rpx;
  205. .space-name{
  206. color: #212121;
  207. font-size: 30rpx;
  208. line-height: 42rpx;
  209. .arrearage-img{
  210. width: 35rpx;
  211. height: 35rpx;
  212. vertical-align: middle;
  213. margin-left: 8rpx;
  214. }
  215. }
  216. .signal{
  217. font-size: 26rpx;
  218. color: #5B5B5B;
  219. .img{
  220. display: inline-block;
  221. height: 26rpx;
  222. margin-left: 7rpx;
  223. }
  224. }
  225. .low{color: #f00;}
  226. }
  227. .vehicleNo{
  228. height: 42rpx;
  229. font-size: 30rpx;
  230. font-weight: 400;
  231. color: #212121;
  232. line-height: 42rpx;
  233. text-align: center;
  234. }
  235. .carImg{
  236. height: 229rpx;
  237. display: block;
  238. margin: 16rpx auto 18rpx;
  239. border-radius: 15rpx;
  240. }
  241. .parkingTime{
  242. height: 37rpx;
  243. font-size: 26rpx;
  244. font-weight: 400;
  245. color: #5B5B5B;
  246. line-height: 37rpx;
  247. margin-bottom: 15rpx;
  248. text-align: center;
  249. }
  250. .time{
  251. text-align: center;
  252. color: #6a6a6a;
  253. font-size: 14rpx;
  254. margin-top: 8rpx;
  255. }
  256. }
  257. }
  258. .base-info{
  259. background-color: #fff;
  260. padding: 30rpx;
  261. .park-num{
  262. text{color: #767676;margin-left: 8rpx;}
  263. padding-bottom: 20rpx;
  264. }
  265. }
  266. .empty{
  267. padding-top: 20vh;
  268. text-align: center;
  269. image{
  270. width: 344rpx;
  271. }
  272. .text{
  273. margin-top: 60rpx;
  274. font-weight: 400;
  275. font-size: 40rpx;
  276. }
  277. }
  278. </style>