deviceDetailsList.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="`${productName}(${total})`" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  3. <template #left>
  4. <view class="u-navbar__content__left__item">
  5. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  6. </view>
  7. </template>
  8. </u-navbar>
  9. <oa-scroll
  10. customClass="scroll-height"
  11. :pageSize="pageSize"
  12. :total="total"
  13. :isSticky="false"
  14. :refresherLoad="true"
  15. :refresherEnabled="true"
  16. :refresherDefaultStyle="'none'"
  17. :refresherThreshold="44"
  18. :refresherBackground="'#f5f6f7'"
  19. @load="load"
  20. @refresh="refresh"
  21. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  22. >
  23. <template #default>
  24. <view class="deviceDetailsList-container">
  25. <view class="flex bg-white p10" style="position: relative">
  26. <u--input
  27. style="width: 100%"
  28. v-model="deviceName"
  29. placeholder="请输入设备名称"
  30. prefixIcon="search"
  31. prefixIconStyle="font-size: 22px;color: #909399"
  32. customStyle="height:30px;background-color:#f5f6fa;"
  33. @confirm="dmpDeviceInfoApi()"
  34. clearable
  35. ></u--input>
  36. <view class="ml10" style="margin-top: auto; margin-bottom: auto; white-space: nowrap" @click="dropdownShow = !dropdownShow">筛选</view>
  37. </view>
  38. <oa-dropdown :dropdownShow="dropdownShow" :closeOnClickOverlay="true" @close="dropdownShow = false">
  39. <template #content>
  40. <u-radio-group v-model="radioValue" placement="column" iconPlacement="right" @change="radioChange">
  41. <u-radio v-for="ra in radioList" :key="ra" :activeColor="proxy.$settingStore.themeColor.color" :label="ra.label" :name="ra.value"></u-radio>
  42. </u-radio-group>
  43. </template>
  44. </oa-dropdown>
  45. <view class="menu-list m0">
  46. <view class="list-cell list-cell-arrow" v-for="(base, index) in dataList" :key="index" @click="handleToDevice(base)">
  47. <view class="menu-item">
  48. <image class="image-bg" style="width: 80rpx; height: 80rpx; margin: auto 10px auto 0" src="@/static/images/deviceManage/1.png"></image>
  49. <view style="width: calc(100% - 51px); display: flex; flex-flow: row wrap; padding-right: 10px">
  50. <view class="deviceHeader">
  51. <view class="deviceName text-ellipsis">设备编号:{{ base.deviceId }}</view>
  52. <view class="deviceStatus" v-if="base.deviceStatus == 1" style="background-color: #16bf00"> 在线 </view>
  53. <view class="deviceStatus" v-if="base.deviceStatus == 2" style="background-color: red"> 离线 </view>
  54. </view>
  55. <view class="deviceContent">设备名称:{{ base.deviceName }}</view>
  56. <view class="deviceContent">安装位置:{{ base.installAddress }}</view>
  57. <!-- <view class="deviceContent">激活状态:{{ base.serviceStatus == 1 ? "未激活" : base.serviceStatus == 2 ? "已激活" : "禁用" }}</view> -->
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </template>
  64. </oa-scroll>
  65. </template>
  66. <script setup>
  67. import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  68. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  69. import { useStores, commonStores } from "@/store/modules/index";
  70. import { dmpDeviceInfo } from "@/api/business/fireIot/deviceManage.js";
  71. const { proxy } = getCurrentInstance();
  72. const commonStore = commonStores();
  73. const dataList = ref([]);
  74. const deviceName = ref("");
  75. const productId = ref("");
  76. const productName = ref("");
  77. const pageSize = ref(20);
  78. const current = ref(1);
  79. const total = ref(0);
  80. const data = reactive({
  81. radioList: [
  82. { label: "全部", value: "" },
  83. { label: "在线", value: "1" },
  84. { label: "离线", value: "2" },
  85. ],
  86. radioValue: "1",
  87. dropdownShow: false,
  88. });
  89. const { radioList, radioValue, dropdownShow } = toRefs(data);
  90. /**
  91. * @页面初始化
  92. */
  93. function init() {
  94. dmpDeviceInfoApi();
  95. }
  96. /**
  97. * @列表查询
  98. * @api接口查询
  99. */
  100. function dmpDeviceInfoApi() {
  101. dmpDeviceInfo({ productId: productId.value, deviceName: deviceName.value, current: current.value, size: pageSize.value, deviceStatus: radioValue.value }).then((requset) => {
  102. if (requset.status == "SUCCESS") {
  103. dataList.value = requset.data.records;
  104. total.value = requset.data.total;
  105. }
  106. });
  107. }
  108. /**
  109. * @设备详情跳转点击事件
  110. */
  111. function handleToDevice(array) {
  112. proxy.$tab.navigateTo(`/pages/business/fireIot/deviceManage/components/deviceDetails?productId=${array.productId}&deviceId=${array.deviceId}`);
  113. commonStore.deviceDetailsArray = array;
  114. commonStore.deviceDetailsArray.productName = productName.value;
  115. }
  116. /**
  117. * @单选change事件
  118. */
  119. function radioChange(e) {
  120. // console.log(e,'e')
  121. radioValue.value = e;
  122. dmpDeviceInfoApi();
  123. dropdownShow.value = false;
  124. }
  125. /**
  126. * @scrollView加载数据
  127. */
  128. function load() {
  129. pageSize.value += 10;
  130. init();
  131. }
  132. /**
  133. * @scrollView刷新数据
  134. */
  135. function refresh() {
  136. deviceName.value = "";
  137. pageSize.value = 20;
  138. init();
  139. }
  140. onReady(() => {});
  141. onShow(() => {
  142. //调用系统主题颜色
  143. proxy.$settingStore.systemThemeColor([1]);
  144. });
  145. onLoad((options) => {
  146. if ("productName" in options) {
  147. productName.value = options.productName;
  148. }
  149. if ("id" in options) {
  150. productId.value = parseInt(options.id);
  151. init();
  152. }
  153. });
  154. </script>
  155. <style lang="scss" scoped>
  156. .deviceDetailsList-container {
  157. .deviceHeader {
  158. min-width: 100%;
  159. font-size: 15px;
  160. display: flex;
  161. white-space: nowrap;
  162. .deviceName {
  163. width: 75%;
  164. color: #000;
  165. }
  166. .deviceStatus {
  167. max-width: 30%;
  168. margin-left: 20px;
  169. font-size: 12px;
  170. color: #ffffff;
  171. padding: 0 5px;
  172. border-radius: 20px;
  173. line-height: 20px;
  174. }
  175. }
  176. .deviceContent {
  177. min-width: 100%;
  178. margin-top: 10px;
  179. font-size: 14px;
  180. color: rgb(102, 102, 102);
  181. }
  182. }
  183. </style>