|
@@ -3621,9 +3621,9 @@ export default {
|
3621
|
3621
|
var dlegh = 0;
|
3622
|
3622
|
if (
|
3623
|
3623
|
this.records[recordIndex].monitor_records &&
|
3624
|
|
- this.records[recordIndex].monitor_records.length < 6
|
|
3624
|
+ this.records[recordIndex].monitor_records.length < 8
|
3625
|
3625
|
) {
|
3626
|
|
- dlegh = 6 - this.records[recordIndex].monitor_records.length;
|
|
3626
|
+ dlegh = 8 - this.records[recordIndex].monitor_records.length;
|
3627
|
3627
|
} else {
|
3628
|
3628
|
dlegh = 0;
|
3629
|
3629
|
}
|
|
@@ -3659,9 +3659,9 @@ export default {
|
3659
|
3659
|
var delghTwo = 0;
|
3660
|
3660
|
if (
|
3661
|
3661
|
this.records[recordIndex].advices &&
|
3662
|
|
- this.records[recordIndex].advices.length < 12
|
|
3662
|
+ this.records[recordIndex].advices.length < 14
|
3663
|
3663
|
) {
|
3664
|
|
- delghTwo = 12 - this.records[recordIndex].advices.length;
|
|
3664
|
+ delghTwo = 14 - this.records[recordIndex].advices.length;
|
3665
|
3665
|
} else {
|
3666
|
3666
|
delghTwo = 0;
|
3667
|
3667
|
}
|
|
@@ -3762,12 +3762,12 @@ export default {
|
3762
|
3762
|
rightIndex in advices ? advices[i + halfLen] : []
|
3763
|
3763
|
);
|
3764
|
3764
|
}
|
3765
|
|
- if (halfLen < 6) {
|
3766
|
|
- var nl = 6 - leftAdvice.length;
|
|
3765
|
+ if (halfLen < 8) {
|
|
3766
|
+ var nl = 8 - leftAdvice.length;
|
3767
|
3767
|
for (let index = 0; index < nl; index++) {
|
3768
|
3768
|
leftAdvice.push([]);
|
3769
|
3769
|
}
|
3770
|
|
- var nl = 6 - rightAdvice.length;
|
|
3770
|
+ var nl = 8 - rightAdvice.length;
|
3771
|
3771
|
for (let index = 0; index < nl; index++) {
|
3772
|
3772
|
rightAdvice.push([]);
|
3773
|
3773
|
}
|