basefacility.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 10 :
  123. uni.navigateTo({
  124. url: '/pages/cb/xy2.0/particulars?info=' + items
  125. });
  126. break
  127. default:
  128. uni.navigateTo({
  129. url: '/pages/cb/equip-detail/equip-detail?info=' + items
  130. });
  131. break
  132. }
  133. }
  134. },
  135. onLoad(option) {
  136. this.base_id = option.id
  137. this.ybase(option.id)
  138. this.camera()
  139. },
  140. onPageScroll(e) { //nvue暂不支持滚动监听,可用bindingx代替
  141. if (e.scrollTop > 200) { //距离大于200时显示
  142. this.isTop = true
  143. } else { //距离小于200时隐藏
  144. this.isTop = false
  145. }
  146. },
  147. }
  148. </script>
  149. <style lang="scss">
  150. .ass_list {
  151. position: absolute;
  152. top: 54px;
  153. width: 100%;
  154. margin-bottom: 40px;
  155. .tishi {
  156. width: 100%;
  157. text-align: center;
  158. height: 100rpx;
  159. line-height: 100rpx;
  160. font-size: 36rpx;
  161. }
  162. .equipment {
  163. width: 90%;
  164. margin: 20rpx auto;
  165. box-shadow: 0 0 10rpx #bcb9ca;
  166. padding: 20rpx 30rpx;
  167. box-sizing: border-box;
  168. .equipment_top {
  169. height: 60rpx;
  170. width: 100%;
  171. border-bottom: 1px solid #dfe5ec;
  172. position: relative;
  173. .equipment_top_img {
  174. width: 40rpx;
  175. height: 40rpx;
  176. position: absolute;
  177. }
  178. .equipment_top_name {
  179. font-size: 28rpx;
  180. margin-left: 60rpx;
  181. }
  182. }
  183. .equipment_bot {
  184. padding: 30rpx 0;
  185. position: relative;
  186. .equipment_bot_id {
  187. font-weight: 700;
  188. font-size: 15px;
  189. margin-bottom: 16rpx;
  190. }
  191. .equipment_bot_name {
  192. font-size: 13px;
  193. }
  194. .equipment_state {
  195. position: absolute;
  196. top: 20rpx;
  197. right: 0;
  198. width: 100rpx;
  199. height: 100rpx;
  200. text-align: center;
  201. line-height: 100rpx;
  202. color: #42b983;
  203. }
  204. }
  205. }
  206. }
  207. .top {
  208. position: fixed;
  209. right: 30px;
  210. bottom: 100px;
  211. z-index: 100;
  212. image{
  213. width: 100rpx;
  214. height: 100rpx;
  215. }
  216. }
  217. </style>