|
|
@@ -33,7 +33,6 @@ const pageData: any = ref({
|
|
|
},
|
|
|
orderBy: ''
|
|
|
})
|
|
|
-const reportName = ref('')
|
|
|
|
|
|
onMounted(() => {
|
|
|
loading.value = true
|
|
|
@@ -42,7 +41,6 @@ onMounted(() => {
|
|
|
.then((res: any) => {
|
|
|
if (res.code === 200) {
|
|
|
pageData.value = res.data.showData
|
|
|
- reportName.value = res.data.reportName
|
|
|
// 初始化的时候如果Report Data Time Range 有值 则调用一次查询
|
|
|
changeTimeRange(pageData.value.timeRange)
|
|
|
}
|
|
|
@@ -111,7 +109,7 @@ const handleSave = () => {
|
|
|
<template>
|
|
|
<div v-vloading="loading">
|
|
|
<div class="Title">
|
|
|
- <span>Schedule Configuration - {{ reportName }}</span>
|
|
|
+ <span>Schedule Configuration - {{ pageData.reportName }}</span>
|
|
|
<el-button @click="handleSave" class="el-button--main save_button"
|
|
|
><span class="font_family icon-icon_save_b icon_dark" style="margin-right: 5px"></span
|
|
|
>Save</el-button
|