deviceList.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view>
  3. <view>
  4. <u-navbar
  5. :title="title"
  6. title-color="#fff"
  7. :custom-back="customBack"
  8. :border-bottom="false"
  9. back-icon-color="#CCE8FF"
  10. :background="{background: '#4D68DC' }"></u-navbar>
  11. </view>
  12. <mescroll-uni ref="mescrollRef" @init="mescrollInit" :top="config.platform=='h5'?100:180" @down="downCallback" :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  13. <view class="device-list u-flex u-flex-wrap u-row-start">
  14. <view class="device-item"
  15. @click="goListPage(item)"
  16. v-for="item in dataList" :key="item.roadNo"
  17. >
  18. <u-icon name="star-fill" color="#0082FF" size="45"></u-icon>
  19. <!-- <image class="img" src="/static/img/icon-device.png" mode="widthFix"></image> -->
  20. <!-- <view class="device-name">{{item.deviceName}}</view> -->
  21. <view class="txt u-line-1">{{item.roadName}}</view>
  22. </view>
  23. </view>
  24. </mescroll-uni>
  25. </view>
  26. </template>
  27. <script>
  28. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  29. export default{
  30. mixins: [MescrollMixin], // 使用mixin (在main.js注册全局组件)
  31. data(){
  32. return{
  33. title:"选择路段",
  34. deviceTypeId:'',
  35. dataList:[],
  36. upOption:{
  37. // page: {
  38. // size: 10 // 每页数据的数量
  39. // },
  40. // auto:false,
  41. // use:false,
  42. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  43. empty:{
  44. tip: '~ 暂无数据 ~', // 提示
  45. // btnText: '去看看'
  46. }
  47. },
  48. }
  49. },
  50. onLoad(page){
  51. // console.log('page',page);
  52. this.deviceType = page.param;
  53. },
  54. onShow(){
  55. },
  56. methods:{
  57. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  58. upCallback(page) {
  59. // console.log('page',page)
  60. //联网加载数据
  61. // let keyword = this.tabs[this.tabIndex]?.text;
  62. let type = '';
  63. if(this.deviceType==1){
  64. type=1
  65. }else if(this.deviceType==2){
  66. type=1
  67. }else if(this.deviceType==3){
  68. type=2
  69. }
  70. let params ={
  71. type:type,
  72. pageNum:page.num,
  73. pageSize:page.size
  74. }
  75. this.$u.api.getRoadAllList(params).then(curPageData=>{
  76. console.log('curPageData',curPageData)
  77. //联网成功的回调,隐藏下拉刷新和上拉加载的状态;
  78. // this.mescroll.endSuccess(curPageData.data.total);
  79. this.mescroll.endBySize(curPageData.data.length, curPageData.data.length);
  80. //设置列表数据
  81. if(page.num == 1) this.dataList = []; //如果是第一页需手动制空列表
  82. this.dataList=this.dataList.concat(curPageData.data); //追加新数据
  83. if(this.dataList.length>=1){
  84. // this.title = this.dataList[0].roadwayName
  85. }
  86. }).catch((err)=>{
  87. uni.showToast({
  88. title:'链接失败'
  89. });
  90. console.log('err',err)
  91. //联网失败, 结束加载
  92. this.mescroll.endErr();
  93. })
  94. },
  95. //点击空布局按钮的回调
  96. emptyClick(){
  97. },
  98. customBack(){
  99. uni.reLaunch({
  100. url: '/pages/index/index'
  101. });
  102. },
  103. goListPage(roadItem) {
  104. console.log('this.deviceType',this.deviceType)
  105. console.log('roadItem',roadItem)
  106. let path = '';
  107. if(this.deviceType==1){
  108. path = 'pages/deviceList/deviceListType1/deviceListType1'
  109. }else if(this.deviceType==2){
  110. path = 'pages/deviceList/deviceListType2/deviceListType2'
  111. }else if(this.deviceType==3){
  112. path = 'pages/deviceList/deviceListType3/deviceListType3'
  113. }
  114. this.$u.route({
  115. url: path,
  116. params:{
  117. roadNo:roadItem.roadNo,
  118. roadName:roadItem.roadName,
  119. deviceType:this.deviceType
  120. }
  121. })
  122. },
  123. openPage(path,param) {
  124. this.$u.route({
  125. url: path,
  126. params:{
  127. param:param,
  128. deviceTypeId:this.deviceTypeId
  129. }
  130. })
  131. },
  132. }
  133. }
  134. </script>
  135. <style lang="scss" scoped>
  136. page{background-color: #fff;}
  137. // @import './deviceList.scss'
  138. .device-list{
  139. margin: 24rpx 0;
  140. .device-item{
  141. background-color: #F1F8FF;
  142. border-radius: 10rpx;
  143. box-sizing: border-box;
  144. padding: 20rpx 10rpx;
  145. text-align: center;
  146. width: 45%;
  147. margin: 0 0 24rpx 3.3%;
  148. .img{
  149. width: 57rpx;
  150. height: 55rpx;
  151. margin-bottom: 10rpx;
  152. }
  153. .device-name{
  154. font-size: 24rpx;
  155. color: #606266;
  156. margin-bottom: 5rpx;
  157. }
  158. .text{
  159. font-size: 28rpx;
  160. font-family: PingFangSC-Regular, PingFang SC;
  161. font-weight: 400;
  162. color: #474747;
  163. line-height: 40rpx;
  164. letter-spacing: 1px;
  165. }
  166. }
  167. }
  168. </style>