diff --git a/src/views/mes/energydevicecheck/index.vue b/src/views/mes/energydevicecheck/index.vue index 1e17a8ec..8900fe01 100644 --- a/src/views/mes/energydevicecheck/index.vue +++ b/src/views/mes/energydevicecheck/index.vue @@ -2,7 +2,8 @@ - + @@ -12,49 +13,34 @@ - + - 查询 - 重置 + + 查询 + + + 重置 + 导出 - + @@ -109,6 +96,14 @@ const selectedIds = ref>([]) const orgOptions = ref<{ label: string; value: string | number; raw?: OrganizationVO }[]>([]) +const getDisabledTime = () => { + const all = Array.from({ length: 60 }, (_, i) => i) + return { + disabledMinutes: () => all, + disabledSeconds: () => all + } +} + const queryParams = reactive({ pageNo: 1, pageSize: 10, @@ -236,8 +231,12 @@ onMounted(async () => { }) -