|
|
|
|
@ -96,7 +96,13 @@ import PointCheckbox from "@/views/stationData/component/pointCheckbox.vue";
@@ -96,7 +96,13 @@ import PointCheckbox from "@/views/stationData/component/pointCheckbox.vue";
|
|
|
|
|
|
|
|
|
|
const env = import.meta.env |
|
|
|
|
const isShowDrawer = defineModel<boolean>() |
|
|
|
|
const title = computed(() => (curDevice.value?.isonLine ? '数据详情' : `已导出数据详情`)) |
|
|
|
|
const title = computed(() => |
|
|
|
|
( |
|
|
|
|
curDevice.value?.isonLine ? |
|
|
|
|
'数据详情' : env.VITE_APP_ENV === 'local' |
|
|
|
|
? `已导出数据详情` : '已导入数据详情' |
|
|
|
|
) |
|
|
|
|
) |
|
|
|
|
const message = useMessage() |
|
|
|
|
const PointCheckboxRef = ref<InstanceType<typeof PointCheckbox>>() |
|
|
|
|
|
|
|
|
|
@ -392,6 +398,7 @@ const disabledDate = (time: any) => {
@@ -392,6 +398,7 @@ const disabledDate = (time: any) => {
|
|
|
|
|
} |
|
|
|
|
const getBeforeMonth = dayjs().startOf('month').subtract(1, 'month').startOf('month').toDate() |
|
|
|
|
const collapsed = ref(false) |
|
|
|
|
|
|
|
|
|
function onCollapse(value?: boolean) { |
|
|
|
|
collapsed.value = value ?? !collapsed.value |
|
|
|
|
} |
|
|
|
|
|