|
@@ -15,6 +15,7 @@
|
|
<a-col :span="10">
|
|
<a-col :span="10">
|
|
<a-form-item label="查询时间" :labelCol="BaseTool.Constant.labelCol" :wrapperCol="BaseTool.Constant.wrapperCol">
|
|
<a-form-item label="查询时间" :labelCol="BaseTool.Constant.labelCol" :wrapperCol="BaseTool.Constant.wrapperCol">
|
|
<a-date-picker
|
|
<a-date-picker
|
|
|
|
+ show-time
|
|
:format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
|
|
:format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
|
|
v-model="queryParam.createdTimeEnd" />
|
|
v-model="queryParam.createdTimeEnd" />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
@@ -61,7 +62,8 @@ export default {
|
|
visible: false,
|
|
visible: false,
|
|
confirmLoading: false,
|
|
confirmLoading: false,
|
|
queryParam: {
|
|
queryParam: {
|
|
- searchType: '1'
|
|
|
|
|
|
+ searchType: '1',
|
|
|
|
+ createdTimeEnd: this.BaseTool.Date.formatter(new Date(), this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
},
|
|
},
|
|
remoteOpc: null,
|
|
remoteOpc: null,
|
|
positionNum: null,
|
|
positionNum: null,
|
|
@@ -90,6 +92,7 @@ export default {
|
|
this.visible = true
|
|
this.visible = true
|
|
this.remoteOpc = remoteOpc
|
|
this.remoteOpc = remoteOpc
|
|
this.queryParam.createdTimeEnd = this.BaseTool.Date.formatter(new Date(), this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
this.queryParam.createdTimeEnd = this.BaseTool.Date.formatter(new Date(), this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
|
|
|
|
+ console.log(this.queryParam.createdTimeEnd)
|
|
this.getInfo()
|
|
this.getInfo()
|
|
/* this.$nextTick(() => {
|
|
/* this.$nextTick(() => {
|
|
this.createChart(this.dataList)
|
|
this.createChart(this.dataList)
|
|
@@ -173,6 +176,7 @@ export default {
|
|
this.chart1 && this.chart1.destroy()
|
|
this.chart1 && this.chart1.destroy()
|
|
this.queryParam = {
|
|
this.queryParam = {
|
|
searchType: '1'
|
|
searchType: '1'
|
|
|
|
+
|
|
}
|
|
}
|
|
this.visible = false
|
|
this.visible = false
|
|
}
|
|
}
|