|
@@ -52,7 +52,7 @@
|
|
</el-select>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <span style="font-weight: bold;font-size: 14px"> 所属设备:</span>
|
|
|
|
|
|
+ <span style="font-weight: bold;font-size: 14px"> 设备名称:</span>
|
|
<el-select style="width:250px" v-model="equipmentId" filterable size="small">
|
|
<el-select style="width:250px" v-model="equipmentId" filterable size="small">
|
|
<el-option
|
|
<el-option
|
|
v-for="item in weatherStationInfoData"
|
|
v-for="item in weatherStationInfoData"
|
|
@@ -592,9 +592,11 @@ export default {
|
|
param.append('startTime', this.startTime)
|
|
param.append('startTime', this.startTime)
|
|
param.append('endTime', this.endTime)
|
|
param.append('endTime', this.endTime)
|
|
param.append('equipmentId', this.equipmentId)
|
|
param.append('equipmentId', this.equipmentId)
|
|
|
|
+ if (this.equipmentId==null || this.equipmentId==""){
|
|
|
|
+ return
|
|
|
|
+ }
|
|
queryTableData(param).then((res) => {
|
|
queryTableData(param).then((res) => {
|
|
this.tableData = res.data.data.records
|
|
this.tableData = res.data.data.records
|
|
-
|
|
|
|
this.page.pageSize = res.data.data.size
|
|
this.page.pageSize = res.data.data.size
|
|
this.page.total = res.data.data.total
|
|
this.page.total = res.data.data.total
|
|
})
|
|
})
|