| | |
| | | import EecLevel2 from '@/assets/icons/energy_level_2.svg'; |
| | | import { onMounted, ref } from 'vue'; |
| | | import { useRouter } from 'vue-router'; |
| | | |
| | | import axios from 'axios'; |
| | | const router = useRouter(); |
| | | |
| | | // 分类选项 |
| | | const type = [ |
| | | { name: '电机', tag: 0 }, |
| | | { name: '泵', tag: 1 }, |
| | | { name: "泵", tag: 1 }, |
| | | { name: '容积式空压机', tag: 2 }, |
| | | { name: '通风机', tag: 3 }, |
| | | { name: '冷水机组', tag: 4 }, |
| | | { name: '电力变压器', tag: 5 }, |
| | | { name: '工业锅炉', tag: 6 }, |
| | | { name: "通风机", tag: 3 }, |
| | | { name: "冷水机组", tag: 4 }, |
| | | { name: "电力变压器", tag: 5 }, |
| | | { name: "工业锅炉", tag: 6 }, |
| | | { name: "电机", tag: 7 }, |
| | | ]; |
| | | const factory = [ |
| | | { name: '全部', tag: '全部' }, |
| | |
| | | const m_PageLoading = ref(false) |
| | | |
| | | // 选中状态 |
| | | const typeSelect = ref(0); |
| | | const typeSelect = ref(1); |
| | | const factorySelect = ref('全部'); |
| | | const EecSelect = ref(0); |
| | | |
| | |
| | | }; |
| | | |
| | | const m_RequestDataObj = { |
| | | 1: { requestPath: "static/EecProductData/ElectricMachinery.json" }, |
| | | 2: { requestPath: "static/EecProductData/Pump.json" }, |
| | | 3: { requestPath: "static/EecProductData/AirCompressor.json" }, |
| | | 4: { requestPath: "static/EecProductData/Fan.json" }, |
| | | 5: { requestPath: "static/EecProductData/WaterChiller.json" }, |
| | | 6: { requestPath: "static/EecProductData/PowerTransformer.json" }, |
| | | 7: { requestPath: "static/EecProductData/IndustrialBoiler.json" }, |
| | | 1: { requestPath: "static/EecProductData/Pump.json" }, |
| | | 2: { requestPath: "static/EecProductData/AirCompressor.json" }, |
| | | 3: { requestPath: "static/EecProductData/Fan.json" }, |
| | | 4: { requestPath: "static/EecProductData/WaterChiller.json" }, |
| | | 5: { requestPath: "static/EecProductData/PowerTransformer.json" }, |
| | | 6: { requestPath: "static/EecProductData/IndustrialBoiler.json" }, |
| | | 7: { requestPath: "static/EecProductData/ElectricMachinery.json" }, |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | const m_paginationConfig = ref({ |
| | | currentPage: 1, |
| | | pageSize: 10, |
| | | pageSize: 12, |
| | | }) |
| | | |
| | | onMounted(() => { |
| | |
| | | RecordNumber: item.RecordNumber, |
| | | EnergyEfficiencyClass: item.EnergyEfficiencyClass, |
| | | RecordTime: item.RecordTime, |
| | | // PhysicalPicturePath: "/static/EecProductData/" + item.PhysicalPicturePath, |
| | | PhysicalPicturePath: `https://private.zkh.com/PRODUCT/BIG/BIG_AE2310858_01.jpg?x-oss-process=style/WEBPCOM_style×tamp=1735778771000`, |
| | | PhysicalPicturePath: "/static/EecProductData/" + item.PhysicalPicturePath, |
| | | CertificatePath: `/static/EecProductData/${item.CertificatePath}`, |
| | | Tip: `备案时间:${item.RecordTime} \n 备案号:${item.RecordNumber}`, |
| | | } |