basefacility.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <view>
  3. <view class="status_bar"></view>
  4. <view class="" style="position: relative;top: 40px;">
  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(JSON.stringify(items))">
  10. <view class="equipment_top">
  11. <image :src="$imageURL+'/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="$imageURL+'/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.navigateTo({
  99. url:"./index"
  100. })
  101. },
  102. top() {
  103. uni.pageScrollTo({
  104. scrollTop: 0,
  105. duration: 500
  106. })
  107. },
  108. skip(items){
  109. console.log(items)
  110. var item = JSON.parse(items)
  111. switch (item.equip_type){
  112. case 5 :
  113. uni.navigateTo({
  114. url: "../environment/equipment?shebei=" + items
  115. })
  116. break
  117. case 6 :
  118. uni.navigateTo({
  119. url: "/pages/webview/webview?device_id=" + item.device_id + "&accessToken=" + this.accessToken
  120. })
  121. break
  122. case 44:
  123. uni.navigateTo({
  124. url: "/pages/webview?device_id=" + item.device_id + "&accessToken=" + uni
  125. .getStorageSync('session_key') +
  126. '&type=dgp'
  127. })
  128. break;
  129. case 10 :
  130. uni.navigateTo({
  131. url: '/pages/cb/xy2.0/particulars?info=' + items
  132. });
  133. break
  134. default:
  135. uni.navigateTo({
  136. url: '/pages/cb/equip-detail/equip-detail?info=' + items
  137. });
  138. break
  139. }
  140. }
  141. },
  142. onLoad(option) {
  143. this.base_id = option.id
  144. this.ybase(option.id)
  145. this.camera()
  146. },
  147. onPageScroll(e) { //nvue暂不支持滚动监听,可用bindingx代替
  148. if (e.scrollTop > 200) { //距离大于200时显示
  149. this.isTop = true
  150. } else { //距离小于200时隐藏
  151. this.isTop = false
  152. }
  153. },
  154. }
  155. </script>
  156. <style lang="scss">
  157. .ass_list {
  158. position: absolute;
  159. top: 54px;
  160. width: 100%;
  161. margin-bottom: 40px;
  162. .tishi {
  163. width: 100%;
  164. text-align: center;
  165. height: 100rpx;
  166. line-height: 100rpx;
  167. font-size: 36rpx;
  168. }
  169. .equipment {
  170. width: 90%;
  171. margin: 20rpx auto;
  172. box-shadow: 0 0 10rpx #bcb9ca;
  173. padding: 20rpx 30rpx;
  174. box-sizing: border-box;
  175. .equipment_top {
  176. height: 60rpx;
  177. width: 100%;
  178. border-bottom: 1px solid #dfe5ec;
  179. position: relative;
  180. .equipment_top_img {
  181. width: 40rpx;
  182. height: 40rpx;
  183. position: absolute;
  184. }
  185. .equipment_top_name {
  186. font-size: 28rpx;
  187. margin-left: 60rpx;
  188. }
  189. }
  190. .equipment_bot {
  191. padding: 30rpx 0;
  192. position: relative;
  193. .equipment_bot_id {
  194. font-weight: 700;
  195. font-size: 15px;
  196. margin-bottom: 16rpx;
  197. }
  198. .equipment_bot_name {
  199. font-size: 13px;
  200. }
  201. .equipment_state {
  202. position: absolute;
  203. top: 20rpx;
  204. right: 0;
  205. width: 100rpx;
  206. height: 100rpx;
  207. text-align: center;
  208. line-height: 100rpx;
  209. color: #42b983;
  210. }
  211. }
  212. }
  213. }
  214. .top {
  215. position: fixed;
  216. right: 30px;
  217. bottom: 100px;
  218. z-index: 100;
  219. image{
  220. width: 100rpx;
  221. height: 100rpx;
  222. }
  223. }
  224. </style>