...
|
...
|
@@ -273,7 +273,12 @@ export default { |
|
|
|
|
|
let getChartData = () => {
|
|
|
|
|
|
let timeScope = form.value.scene.timeScope.replaceAll("time_scope_", "")
|
|
|
let timeScope = '';
|
|
|
try {
|
|
|
timeScope = form.value.scene.timeScope.replaceAll("time_scope_", "")
|
|
|
}catch (e) {
|
|
|
timeScope = form.value.scene.timeScope.replace("time_scope_", "")
|
|
|
}
|
|
|
if (timeScope == '') {
|
|
|
proxy.$global.showMsg("请选择时间范围!", "warning");
|
|
|
return;
|
...
|
...
|
|