EquipmentException.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="billall">
  3. <u-cell-group class="toptemplate">
  4. <u-cell :title="mytitle" @click="floorchange">
  5. <u-icon slot="icon" size="40" color="#fff" name="map"></u-icon>
  6. <u-icon slot="right-icon" size="40" color="#fff" name="search"></u-icon>
  7. </u-cell>
  8. </u-cell-group>
  9. <view class="u-listdata">
  10. <view style="padding:10rpx 0 0 30rpx">
  11. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  12. </view>
  13. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  14. <u-list-item v-for="(item, index) in indexList" :key="index">
  15. <view class="companylist" >
  16. <h3>{{item.deviceName}}</h3>
  17. <view class="Currentamount">
  18. 空间信息:跨境电商大厦-{{ item.positionInfo }}
  19. </view>
  20. <view class="Currentamount">
  21. 设备编号: {{ item.deviceId }}
  22. </view>
  23. <view class="Currentamount">
  24. 告警原因: <span>{{item.alertConfigName}}</span>
  25. </view>
  26. <view class="Currentamount">
  27. 告警内容: {{item.content}}
  28. </view>
  29. </view>
  30. </u-list-item>
  31. </u-list>
  32. </view>
  33. <u-picker :itemHeight="80" :show="showfloor" ref="uPicker" :loading="loading" @confirm="confirmfloor" @cancel='cancelfloor'
  34. :columns="columns" keyName="orgName" @change="changeHandler"></u-picker>
  35. <u-notify ref="uNotify" :show="showdct" message="服务器请求失败"></u-notify>
  36. </view>
  37. </template>
  38. <script>
  39. //import { isEmpty, getDictDataList } from "@/utils/index";
  40. export default {
  41. components: {
  42. },
  43. data() {
  44. return {
  45. totalnumber: 0,
  46. setyesno: true,
  47. indexList: [],
  48. dataList: [],
  49. dataForm: {
  50. buildingId: "",
  51. storeyId: "",
  52. // page: 1,
  53. // limit: 10,
  54. },
  55. pd: true,
  56. showtype: false,
  57. showdct: false,
  58. mytitle: '',
  59. alldata: [],
  60. showfloor: false,
  61. loading: false,
  62. columns: [],
  63. columnData: [],
  64. myday: '',
  65. mytype: '全部',
  66. showPicker: false,
  67. //myday: currentDate,
  68. columnstype: [
  69. ],
  70. }
  71. },
  72. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  73. onLoad() {
  74. // let getDictDataList = uni.getStorageSync('getDictDataList');
  75. //
  76. // for (let i = 0; i < getDictDataList.length; i++) {
  77. // if (getDictDataList[i].dictType == 'PayType') {
  78. // this.columnstype = [getDictDataList[i].dataList]
  79. // }
  80. // }
  81. this.getfloor();
  82. // this.loadmore();
  83. },
  84. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  85. onReady() {
  86. // 微信小程序需要用此写法
  87. },
  88. //监听页面隐藏
  89. onHide() {},
  90. //监听窗口尺寸变化
  91. onResize() {},
  92. //监听页面卸载
  93. onUnload() {},
  94. //监听用户下拉动作,一般用于下拉刷新
  95. onPullDownRefresh() {},
  96. methods: {
  97. scrolltolower() {
  98. if (this.pd) {
  99. this.getalldata();
  100. } else {
  101. return
  102. }
  103. },
  104. getalldata() {
  105. this.$api.get('/home/actualAlertList', this.dataForm)
  106. .then(res => {
  107. // this.totalnumber = res.data.data.total;
  108. if(res.data.code==0){
  109. console.log('111111111111111111',res.data.data)
  110. if(res.data.data==null){
  111. this.totalnumber=0;
  112. this.indexList=[];
  113. }else{
  114. this.totalnumber=res.data.data.length;
  115. this.indexList=res.data.data;
  116. }
  117. }else{
  118. uni.showToast({
  119. title: res.data.msg,
  120. icon: 'none',
  121. duration: 1500
  122. })
  123. }
  124. // if (res.data.data.list.length != 0) {
  125. // this.indexList.push(...res.data.data.list);
  126. // this.dataForm.page = this.dataForm.page + 1;
  127. // this.pd = true;
  128. // } else {
  129. // uni.showToast({
  130. // title: '暂无更多数据了',
  131. // icon: 'none',
  132. // duration: 1500
  133. // })
  134. // this.pd = false;
  135. // }
  136. })
  137. },
  138. getfloor() {
  139. this.$api.get('/control/getOrgStructureTree/', {})
  140. .then(res => {
  141. if (res.data.code == 0) {
  142. // this.dataForm.projectId = res.data.data[0].orgId;
  143. this.mytitle = res.data.data[0].orgName;
  144. this.alldata = res.data.data[0].childrenList;
  145. //console.log('111111111111111111', res.data.data[0].childrenList)
  146. this.columns = [
  147. res.data.data[0].childrenList,
  148. res.data.data[0].childrenList[0].childrenList
  149. ]
  150. let allfloor = [];
  151. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  152. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  153. }
  154. // console.log('111111111111111111',allfloor)
  155. this.columnData = allfloor;
  156. // this.dataForm.page = 1;
  157. this.getalldata();
  158. } else {
  159. this.showdct = true
  160. }
  161. })
  162. },
  163. floorchange() {
  164. this.showfloor = true;
  165. },
  166. changeHandler(e) {
  167. const {
  168. columnIndex,
  169. index,
  170. // 微信小程序无法将picker实例传出来,只能通过ref操作
  171. picker = this.$refs.uPicker
  172. } = e
  173. if (columnIndex === 0) {
  174. this.loading = true
  175. picker.setColumnValues(1, this.columnData[index])
  176. this.loading = false
  177. }
  178. // this.getalldata();
  179. },
  180. confirmfloor(e) {
  181. console.log('222222', e.value)
  182. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  183. this.dataForm.buildingId = e.value[0].orgId;
  184. this.dataForm.storeyId = e.value[1].orgId;
  185. this.showfloor = false;
  186. this.getalldata();
  187. },
  188. cancelfloor() {
  189. this.showfloor = false;
  190. },
  191. }
  192. }
  193. </script>
  194. <style lang="scss">
  195. .Currentamount {
  196. padding-left: 30rpx;
  197. height: 50rpx;
  198. line-height: 50rpx;
  199. color: #BCB3A7;
  200. span {
  201. color: #FA5555;
  202. padding-left: 9rpx;
  203. }
  204. }
  205. .Callfee {
  206. width: 100rpx;
  207. height: 45rpx;
  208. text-align: center;
  209. line-height: 45rpx;
  210. color: #5C8FFF;
  211. border: 1px solid #5C8FFF;
  212. font-size: 22rpx;
  213. position: absolute;
  214. bottom: 10rpx;
  215. right: 10px;
  216. font-weight: bold;
  217. }
  218. .companylist {
  219. margin: 20rpx 30rpx;
  220. background: #fff;
  221. height: 280rpx;
  222. border-radius: 10px;
  223. position: relative;
  224. h3 {
  225. height: 70rpx;
  226. line-height: 70rpx;
  227. padding-left: 30rpx;
  228. }
  229. }
  230. .settled {
  231. background-color: #09C700;
  232. width: 100rpx;
  233. height: 40rpx;
  234. text-align: center;
  235. line-height: 40rpx;
  236. color: #fff;
  237. font-size: 14rpx;
  238. position: absolute;
  239. top: 0px;
  240. right: 0px;
  241. border-top-right-radius: 10rpx;
  242. border-bottom-left-radius: 10rpx;
  243. }
  244. .outstanding {
  245. background-color: #30D3A2;
  246. width: 100rpx;
  247. height: 40rpx;
  248. text-align: center;
  249. line-height: 40rpx;
  250. color: #fff;
  251. font-size: 14rpx;
  252. position: absolute;
  253. top: 0px;
  254. right: 0px;
  255. border-top-right-radius: 10rpx;
  256. border-bottom-left-radius: 10rpx;
  257. }
  258. .billall {}
  259. .topbill {
  260. display: flex;
  261. justify-content: center;
  262. align-items: center;
  263. height: 100rpx;
  264. background-color: #e6e6e6;
  265. }
  266. .topbilledit {
  267. display: flex;
  268. justify-content: space-around;
  269. align-items: center;
  270. }
  271. .changetime1 {
  272. padding-right: 10rpx;
  273. }
  274. </style>