diff --git a/src/views/report/dashboardList/index.vue b/src/views/report/dashboardList/index.vue
index bf98f4ee..35b35764 100644
--- a/src/views/report/dashboardList/index.vue
+++ b/src/views/report/dashboardList/index.vue
@@ -72,7 +72,7 @@
@@ -208,6 +208,8 @@
import { getStrDictOptions, DICT_TYPE } from '@/utils/dict'
import request from '@/config/axios'
import defaultImage from '@/assets/imgs/logo.png'
+import dashboardImage1 from '@/assets/imgs/dashboard1.png'
+import dashboardImage2 from '@/assets/imgs/dashboard2.png'
import { OrganizationApi } from '@/api/mes/organization'
import { handleTree } from '@/utils/tree'
import { DeviceApi } from '@/api/iot/device'
@@ -235,6 +237,16 @@ const loading = ref(false)
const list = ref([])
const total = ref(0)
+const getDashboardImage = (item: DashboardItem) => {
+ if (item.name === '智能制造产线任务总览') {
+ return dashboardImage1
+ }
+ if (item.name === '产线运行看板') {
+ return dashboardImage2
+ }
+ return item.indexImage || defaultImage
+}
+
const queryParams = reactive({
pageNo: 1,
pageSize: 10,