equipmentList.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <!-- 设备状态 1-已离线 2-运行中 4-保养中 -->
  2. <template>
  3. <view class="wrap">
  4. <view>
  5. <u-navbar
  6. :title="title"
  7. title-color="#fff"
  8. :custom-back="customBack"
  9. :border-bottom="false"
  10. back-icon-color="#CCE8FF"
  11. :background="{background: '#4D68DC' }"></u-navbar>
  12. </view>
  13. <!-- <u-button class="u-reset-button" @click="selectShow = true">{{deviceType}}</u-button> -->
  14. <u-cell-item icon="setting-fill" :title="deviceTypeName" :arrow="true" @click="selectShow = true" arrow-direction="right"></u-cell-item>
  15. <u-select v-model="selectShow" :list="deviceTypeListData" @confirm="selectConfirm"></u-select>
  16. <u-cell-item class="road-select-cell" icon="map-fill" bg-color="#fff" :border-bottom="false" :title="roadName" :arrow="true" @click="roadSelectShow = true" arrow-direction="right"></u-cell-item>
  17. <u-select v-model="roadSelectShow" :list="roadListData" value-name="roadNo" label-name="roadName" @confirm="roadSelectConfirm"></u-select>
  18. <u-gap height="12" bg-color="#e7e7e7"></u-gap>
  19. <mescroll-uni ref="mescrollRef" @init="mescrollInit" top="300" @down="downCallback" :up="upOption" @up="upCallback" @emptyclick="emptyClick">
  20. <view class="g-device-item u-flex u-row-between u-m-b-24" v-for="item in dataList" :key="item.id">
  21. <view class="u-font-30" style="color: #414141;">
  22. <view class="u-m-b-20 ">
  23. <text>{{item.deviceType|deviceType}}</text>
  24. <text class="u-p-l-40" style="font-weight: bold;">{{item.roadName}}-{{item.spaceName}}</text>
  25. </view>
  26. <view class="u-font-26">设备编号:{{item.deviceNo}}</view>
  27. </view>
  28. <view class="">
  29. <view class="" :class="{'c-offline':item.deviceStatus=='0','c-online':item.deviceStatus=='1','c-repair':item.deviceStatus=='2'}">
  30. {{item.deviceStatus|deviceStatus}}
  31. </view>
  32. </view>
  33. </view>
  34. </mescroll-uni>
  35. </view>
  36. </template>
  37. <script>
  38. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  39. export default{
  40. mixins: [MescrollMixin], // 使用mixin (在main.js注册全局组件)
  41. data(){
  42. return{
  43. selectShow:false,
  44. roadSelectShow:false,
  45. title:"设备列表",
  46. deviceTypeName:'全部类型',
  47. deviceType:null,
  48. roadName:'全部路段/停车场',
  49. roadNo:'',
  50. deviceRunStatus:'1',
  51. upOption:{
  52. // page: {
  53. // size: 10 // 每页数据的数量
  54. // },
  55. // auto:false,
  56. // use:false,
  57. noMoreSize: 4, //如果列表已无数据,可设置列表的总数量要大于半页才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看; 默认5
  58. empty:{
  59. tip: '~ 暂无数据 ~', // 提示
  60. // btnText: '去看看'
  61. }
  62. },
  63. dataList: [], //列表数据
  64. deviceTypeId:'',//设备类型id
  65. deviceTypeListData:this.config.deviceTypeList,
  66. roadListData:[],
  67. dictData:[],
  68. }
  69. },
  70. onLoad(page){
  71. // console.log('page',page);
  72. this.deviceRunStatus = page.param;
  73. if(this.deviceRunStatus=='1'){
  74. this.title = "全部设备"
  75. }else if(this.deviceRunStatus=='2'){
  76. this.title = "离线设备"
  77. }else if(this.deviceRunStatus=='4'){
  78. this.title = "保养设备"
  79. }
  80. this.getRoadList();
  81. // this.deviceTypeList();
  82. // this.handlegetDictData('device_run_status');
  83. },
  84. onShow(){
  85. },
  86. computed:{
  87. filterDeviceStatus(){
  88. return function(value){
  89. let v = '';
  90. for (let i = 0; i < this.dictData.length; i++){
  91. // console.log('value',value);
  92. // console.log('value',this.dictData[i]);
  93. let item = this.dictData[i];
  94. if (value == item.status) {
  95. v = item.dictLabel;
  96. break;
  97. }
  98. }
  99. return v
  100. }
  101. }
  102. },
  103. methods:{
  104. /*上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10 */
  105. upCallback(page) {
  106. // console.log('page',page)
  107. //联网加载数据
  108. // let keyword = this.tabs[this.tabIndex]?.text;
  109. let params ={
  110. roadNo:this.roadNo,
  111. deviceType:this.deviceType,
  112. pageNum:page.num,
  113. pageSize:page.size
  114. }
  115. this.$u.api.getDeviceList(params).then(curPageData=>{
  116. console.log('curPageData',curPageData)
  117. //联网成功的回调,隐藏下拉刷新和上拉加载的状态;
  118. this.mescroll.endSuccess(curPageData.total);
  119. this.mescroll.endBySize(curPageData.data.rows.length, curPageData.total);
  120. //设置列表数据
  121. if(page.num == 1) this.dataList = []; //如果是第一页需手动制空列表
  122. this.dataList=this.dataList.concat(curPageData.data.rows); //追加新数据
  123. }).catch((err)=>{
  124. uni.showToast({
  125. title:'链接失败'
  126. });
  127. console.log('err',err)
  128. //联网失败, 结束加载
  129. this.mescroll.endErr();
  130. })
  131. },
  132. //点击空布局按钮的回调
  133. emptyClick(){
  134. },
  135. // 切换菜单
  136. tabChange(index) {
  137. this.dataList = [];// 先置空列表,显示加载进度
  138. this.tabIndex = index;
  139. this.mescroll.resetUpScroll(); // 再刷新列表数据
  140. },
  141. customBack(){
  142. uni.reLaunch({
  143. url: '/pages/index/index'
  144. });
  145. },
  146. handlegetDictData(device_status){
  147. let that = this;
  148. this.$u.api.getDictData(device_status).then(res=>{
  149. if(res.code==200){
  150. res.data.data.map(function(currentValue,index,arr){
  151. that.dictData.push({status:currentValue.dictValue,dictLabel:currentValue.dictLabel})
  152. // console.log('currentValue',currentValue);
  153. })
  154. // this.dictData = res.data.data;
  155. console.log('getDeviceStatis',this.dictData);
  156. }else{
  157. uni.showToast({
  158. icon:'none',
  159. title:res.msg
  160. })
  161. }
  162. console.log('res',res);
  163. }).catch(err=>{
  164. console.log('err',err);
  165. })
  166. },
  167. // deviceTypeList(){
  168. // this.$u.api.getDeviceTypeList().then(res=>{
  169. // if(res.code==200){
  170. // this.deviceTypeListData = res.data;
  171. // // console.log('getDeviceStatis',res);
  172. // }else{
  173. // uni.showToast({
  174. // icon:'none',
  175. // title:res.msg
  176. // })
  177. // }
  178. // console.log('res',res);
  179. // }).catch(err=>{
  180. // console.log('err',err);
  181. // })
  182. // },
  183. selectConfirm(e){
  184. console.log('selectConfirm',e);
  185. this.deviceTypeName = e[0].label;
  186. this.deviceType = e[0].value;
  187. this.mescroll.resetUpScroll();
  188. },
  189. getRoadList(){
  190. let that = this;
  191. that.$u.api.getRoadList()
  192. .then(res=>{
  193. this.roadListData = res.data;
  194. console.log('this.getRoadList',res)
  195. }).catch(err=>{
  196. this.$refs.uToast.show({
  197. title: err.msg,
  198. type: 'error',
  199. });
  200. });
  201. },
  202. roadSelectConfirm(e){
  203. // console.log('roadSelectConfirm',e[0]);
  204. this.roadName = e[0].label;
  205. this.roadNo = e[0].value;
  206. console.log('this.roadNo',this.roadNo);
  207. this.mescroll.resetUpScroll();
  208. },
  209. }
  210. }
  211. </script>
  212. <style lang="scss" scoped>
  213. // @import './equipmentList.scss'
  214. </style>