|
@@ -15,7 +15,7 @@
|
|
:format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
|
|
:format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
|
|
@change="onChange"
|
|
@change="onChange"
|
|
v-model="searchDay"/>-->
|
|
v-model="searchDay"/>-->
|
|
-<!-- <a-select v-model="searchDay" style="width: 120px" @change="onChange">
|
|
|
|
|
|
+ <!-- <a-select v-model="searchDay" style="width: 120px" @change="onChange">
|
|
<a-select-option :value="parseInt('1')">
|
|
<a-select-option :value="parseInt('1')">
|
|
5分钟
|
|
5分钟
|
|
</a-select-option>
|
|
</a-select-option>
|
|
@@ -199,6 +199,7 @@ export default {
|
|
this.confirmLoading = false
|
|
this.confirmLoading = false
|
|
this.modalTitle = '详情'
|
|
this.modalTitle = '详情'
|
|
this.model = record
|
|
this.model = record
|
|
|
|
+ this.doSelect()
|
|
// this.onChange(1)
|
|
// this.onChange(1)
|
|
},
|
|
},
|
|
getCharts () {
|
|
getCharts () {
|
|
@@ -257,14 +258,14 @@ export default {
|
|
this.endTime = this.BaseTool.Date.formatter(dateString, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
this.endTime = this.BaseTool.Date.formatter(dateString, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
},
|
|
},
|
|
doSelect () {
|
|
doSelect () {
|
|
- if (this.startTime == null) {
|
|
|
|
|
|
+ /* if (this.startTime == null) {
|
|
this.$message.error('请选择查询开始时间')
|
|
this.$message.error('请选择查询开始时间')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (this.endTime == null) {
|
|
if (this.endTime == null) {
|
|
this.$message.error('请选择查询截止时间')
|
|
this.$message.error('请选择查询截止时间')
|
|
return
|
|
return
|
|
- }
|
|
|
|
|
|
+ } */
|
|
this.confirmLoading = true
|
|
this.confirmLoading = true
|
|
this.model.startTime = this.startTime
|
|
this.model.startTime = this.startTime
|
|
this.model.endTime = this.endTime
|
|
this.model.endTime = this.endTime
|