basefacility.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <view>
  3. <view class="status_bar"></view>
  4. <view class="" style="position: relative;top: 44px;">
  5. <view style="position: fixed;z-index: 100;">
  6. <uni-nav-bar @clickLeft="clickLeft" left-icon="back" left-text="返回" title="基地设备"></uni-nav-bar>
  7. </view>
  8. <view class="ass_list">
  9. <view class="equipment" v-for="(items,indexs) in assignments" :key="items.id" v-if="tishiTF" @click="skip(items)">
  10. <view class="equipment_top">
  11. <image :src="'http://www.hnyfwlw.com:8006/bigdata_app'+items.src" mode="" class="equipment_top_img"></image>
  12. <span class="equipment_top_name">{{items.type_name}}</span>
  13. </view>
  14. <view class="equipment_bot">
  15. <p class="equipment_bot_id">设备ID:{{items.d_id}}</p>
  16. <p class="equipment_bot_name">设备名称:{{items.device_id}}</p>
  17. <view class="equipment_state">在线</view>
  18. </view>
  19. </view>
  20. <view class="tishi" v-if="!tishiTF">
  21. 暂无数据
  22. </view>
  23. </view>
  24. </view>
  25. <view class="top" v-if="isTop" @click="top">
  26. <image :src="'http://www.hnyfwlw.com:8006/bigdata_app'+'/image/6209a98f0cb3b5086f2ca36152c9269.png'" mode=""></image>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. base_id: "",
  35. assignments: [],
  36. images: [{
  37. path: "/image/fourMoodBase/1.png",
  38. id: 3
  39. }, {
  40. path: "/image/fourMoodBase/5.png",
  41. id: 5
  42. }, {
  43. path: "/image/fourMoodBase/2.png",
  44. id: 6
  45. }, {
  46. path: "/image/fourMoodBase/4.png",
  47. id: 3
  48. }, {
  49. path: "/image/fourMoodBase/qxz.png",
  50. id: 5
  51. }, {
  52. path: "/image/fourMoodBase/jk.png",
  53. id: 6
  54. }, {
  55. path: "/image/fourMoodBase/bzy.png",
  56. id: 7
  57. },{
  58. path: "/image/fourMoodBase/10.png",
  59. id: 10
  60. }],
  61. tishiTF: false,
  62. isTop:false
  63. }
  64. },
  65. methods: {
  66. async ybase(id) { //获取分布位置
  67. const res = await this.$myRequest({
  68. url: '/api/api_gateway?method=base.bases.base_map_list',
  69. data: {
  70. base_id: id
  71. }
  72. })
  73. this.assignments = res
  74. console.log(this.assignments)
  75. for (var i = 0; i < this.images.length; i++) {
  76. for (var j = 0; j < this.assignments.length; j++) {
  77. if (this.assignments[j].equip_type == this.images[i].id) {
  78. this.assignments[j].src = this.images[i].path
  79. }
  80. }
  81. }
  82. if (this.assignments.length == 0) {
  83. this.tishiTF = false
  84. } else {
  85. this.tishiTF = true
  86. }
  87. },
  88. async camera() { //设备列表
  89. const res = await this.$myRequest({
  90. url: '/api/api_gateway?method=camera.camera_manage.list_camera',
  91. data: {
  92. page_size: 1,
  93. }
  94. })
  95. this.accessToken = res.accessToken
  96. },
  97. clickLeft() {
  98. uni.navigateBack({
  99. delta: 1
  100. })
  101. },
  102. top() {
  103. uni.pageScrollTo({
  104. scrollTop: 0,
  105. duration: 500
  106. })
  107. },
  108. skip(items){
  109. console.log(items)
  110. // uni.navigateTo({
  111. // url: "../environment/equipment?shebei=" + JSON.stringify(items)
  112. // })
  113. var item = JSON.stringify(items)
  114. switch (items.equip_type){
  115. case 5 :
  116. uni.navigateTo({
  117. url: "../environment/equipment?shebei=" + JSON.stringify(items)
  118. })
  119. break
  120. case 6 :
  121. uni.navigateTo({
  122. url: "/pages/webview?device_id=" + items.device_id + "&accessToken=" + this.accessToken
  123. })
  124. break
  125. case 10 :
  126. uni.navigateTo({
  127. url: '/pages/cb/xy2.0/particulars?info=' + item
  128. });
  129. break
  130. default:
  131. uni.navigateTo({
  132. url: '/pages/cb/equip-detail/equip-detail?info=' + item
  133. });
  134. break
  135. }
  136. }
  137. },
  138. onLoad(option) {
  139. this.base_id = option.id
  140. this.ybase(option.id)
  141. this.camera()
  142. },
  143. onPageScroll(e) { //nvue暂不支持滚动监听,可用bindingx代替
  144. if (e.scrollTop > 200) { //距离大于200时显示
  145. this.isTop = true
  146. } else { //距离小于200时隐藏
  147. this.isTop = false
  148. }
  149. },
  150. }
  151. </script>
  152. <style lang="scss">
  153. .ass_list {
  154. position: absolute;
  155. top: 54px;
  156. width: 100%;
  157. margin-bottom: 40px;
  158. .tishi {
  159. width: 100%;
  160. text-align: center;
  161. height: 100rpx;
  162. line-height: 100rpx;
  163. font-size: 36rpx;
  164. }
  165. .equipment {
  166. width: 90%;
  167. margin: 20rpx auto;
  168. box-shadow: 0 0 10rpx #bcb9ca;
  169. padding: 20rpx 30rpx;
  170. box-sizing: border-box;
  171. .equipment_top {
  172. height: 60rpx;
  173. width: 100%;
  174. border-bottom: 1px solid #dfe5ec;
  175. position: relative;
  176. .equipment_top_img {
  177. width: 40rpx;
  178. height: 40rpx;
  179. position: absolute;
  180. }
  181. .equipment_top_name {
  182. font-size: 28rpx;
  183. margin-left: 60rpx;
  184. }
  185. }
  186. .equipment_bot {
  187. padding: 30rpx 0;
  188. position: relative;
  189. .equipment_bot_id {
  190. font-weight: 700;
  191. font-size: 15px;
  192. margin-bottom: 16rpx;
  193. }
  194. .equipment_bot_name {
  195. font-size: 13px;
  196. }
  197. .equipment_state {
  198. position: absolute;
  199. top: 20rpx;
  200. right: 0;
  201. width: 100rpx;
  202. height: 100rpx;
  203. text-align: center;
  204. line-height: 100rpx;
  205. color: #42b983;
  206. }
  207. }
  208. }
  209. }
  210. .top {
  211. position: fixed;
  212. right: 30px;
  213. bottom: 100px;
  214. z-index: 100;
  215. image{
  216. width: 100rpx;
  217. height: 100rpx;
  218. }
  219. }
  220. </style>