Browse Source

设备列表参数筛选

dengrui 1 month ago
parent
commit
9b51215210
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/views/report/statistics/screens/line/index.vue

+ 3 - 1
src/views/report/statistics/screens/line/index.vue

@@ -271,7 +271,9 @@ const getRateArray = async () => {
 const deviceArray = ref([]);
 //获取设备列表
 const getDevice = async () => {
-  const { data } = await getDeviceList();
+  const { data } = await getDeviceList({
+    deviceTypes: ["DDLSD", "WXDJC", "WKDLT"],
+  });
   deviceArray.value = data;
   nextTick(() => {
     ShowScrollRef2.value.setActive();