import { reactive, markRaw, defineAsyncComponent } from 'vue'; import { getThemifyImagesURL } from '/@/utils/ui'; export const cardList = reactive([ { name: 'modelsensor', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/cgq.png'), url1: getThemifyImagesURL('device/cgq-1.png'), }, { name: 'fanmain', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/zhufengji.png'), url1: getThemifyImagesURL('device/zhufengji-1.png'), }, { name: 'fanlocal', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/jubufengji.png'), url1: getThemifyImagesURL('device/jubufengji-1.png'), }, { name: 'fanlocaldp', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/jubufengji.png'), url1: getThemifyImagesURL('device/jubufengji-1.png'), }, { name: 'gate', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/fengmen.png'), url1: getThemifyImagesURL('device/fengmen-1.png'), }, { name: 'window', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/fengchuang.png'), url1: getThemifyImagesURL('device/fengchuang-1.png'), }, { name: 'windrect', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/cefeng.png'), url1: getThemifyImagesURL('device/cefeng-1.png'), }, { name: 'forcFan', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/yafeng.png'), url1: getThemifyImagesURL('device/yafeng-1.png'), }, { name: 'spray', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/penling.png'), url1: getThemifyImagesURL('device/penling-1.png'), }, { name: 'dustdev', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/penfen.png'), url1: getThemifyImagesURL('device/penfen-1.png'), }, { name: 'nitrogen', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/zhudan.png'), url1: getThemifyImagesURL('device/zhudan-1.png'), }, { name: 'pulping', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/zhujiang.png'), url1: getThemifyImagesURL('device/zhujiang-1.png'), }, { name: 'atomizing', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/penwu.png'), url1: getThemifyImagesURL('device/penwu-1.png'), }, { name: 'dustsensor', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/chuchen.png'), url1: getThemifyImagesURL('device/chuchen-1.png'), }, { name: 'gas', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/wsgl.png'), url1: getThemifyImagesURL('device/wsgl-1.png'), }, { name: 'pump', title: '', sumVal: 0, warnVal: 0, closeVal: 0, devicekind: '', url: getThemifyImagesURL('device/wsb.png'), url1: getThemifyImagesURL('device/wsb-1.png'), }, ]);