|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="real-time-export">
|
|
|
+ <div class="real-time-export" v-loading="loading">
|
|
|
<div class="standBook-ul-box">
|
|
|
<ul class="standBook-ul clearfix">
|
|
|
<li v-for="item in options" :key="item.value">
|
|
@@ -269,13 +269,14 @@ export default {
|
|
|
this.loading = false;
|
|
|
}, 500);
|
|
|
} else {
|
|
|
- this.$message.error(res.data.message);
|
|
|
+ this.$message.error("时间区间过长,请修改后再试!");
|
|
|
setTimeout(() => {
|
|
|
this.loading = false;
|
|
|
}, 500);
|
|
|
}
|
|
|
})
|
|
|
.catch((error) => {
|
|
|
+ this.$message.error("时间区间过长,请修改后再试!");
|
|
|
this.loading = false;
|
|
|
});
|
|
|
}
|