|
@@ -15,15 +15,15 @@
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>
|
|
|
- 风电场
|
|
|
+ 场站
|
|
|
</th>
|
|
|
<th>
|
|
|
- <input class='t2' type='checkbox' @click="rqCheck"/>
|
|
|
- 日期间隔
|
|
|
+ <input class='t2' type='checkbox' @click="rqCheck" checked='checked'/>
|
|
|
+ 日期
|
|
|
</th>
|
|
|
<th>
|
|
|
- <input class='t2' type='checkbox' @click="sjCheck"/>
|
|
|
- 时间间隔
|
|
|
+ <input class='t2' type='checkbox' @click="sjCheck" checked='checked'/>
|
|
|
+ 时间间隔(s)
|
|
|
</th>
|
|
|
<th width="120px">
|
|
|
操作
|
|
@@ -70,8 +70,8 @@
|
|
|
const that = this;
|
|
|
return {
|
|
|
single:false,
|
|
|
- rqChecked:false,
|
|
|
- sjChecked:false,
|
|
|
+ rqChecked:true,
|
|
|
+ sjChecked:true,
|
|
|
checkList: [],
|
|
|
tableIdArr: [], //放checkbox的id数组
|
|
|
tableData: [],
|
|
@@ -210,7 +210,7 @@
|
|
|
data: {
|
|
|
templateId: that.templateId,
|
|
|
startTs: thisIndex!=undefined ? that.startTs[thisIndex] : that.startTs[_index],
|
|
|
- endTs: thisIndex!=undefined ? that.endTs[thisIndex] : that.endTs[_index],
|
|
|
+ endTs: thisIndex!=undefined ? that.endTs[thisIndex] + 86400000 : that.endTs[_index] + 86400000,
|
|
|
interval: thisIndex!=undefined ? that.inputVal[thisIndex] : that.inputVal[_index],
|
|
|
station: thisIndex!=undefined ? that.stations[thisIndex] : that.stations[_index]
|
|
|
},
|