|
@@ -1116,9 +1116,9 @@ export default {
|
1116
|
1116
|
var delghTwo = 0
|
1117
|
1117
|
if (
|
1118
|
1118
|
this.records[recordIndex].advices &&
|
1119
|
|
- this.records[recordIndex].advices.length < 14
|
|
1119
|
+ this.records[recordIndex].advices.length < 7
|
1120
|
1120
|
) {
|
1121
|
|
- delghTwo = 14 - this.records[recordIndex].advices.length
|
|
1121
|
+ delghTwo = 7 - this.records[recordIndex].advices.length
|
1122
|
1122
|
} else {
|
1123
|
1123
|
delghTwo = 0
|
1124
|
1124
|
}
|
|
@@ -1173,29 +1173,29 @@ export default {
|
1173
|
1173
|
var adlen = advices.length
|
1174
|
1174
|
|
1175
|
1175
|
var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2
|
1176
|
|
- for (var i = 0; i < halfLen; i++) {
|
|
1176
|
+ for (var i = 0; i < adlen; i++) {
|
1177
|
1177
|
leftAdvice.push(advices[i])
|
1178
|
|
- var rightIndex = i + halfLen
|
1179
|
|
- rightAdvice.push(
|
1180
|
|
- rightIndex in advices ? advices[i + halfLen] : []
|
1181
|
|
- )
|
1182
|
|
- }
|
1183
|
|
- if (halfLen < 5) {
|
1184
|
|
- var nl = 5 - leftAdvice.length
|
1185
|
|
- for (let index = 0; index < nl; index++) {
|
1186
|
|
- leftAdvice.push([])
|
1187
|
|
- }
|
1188
|
|
- var nl = 5 - rightAdvice.length
|
1189
|
|
- for (let index = 0; index < nl; index++) {
|
1190
|
|
- rightAdvice.push([])
|
1191
|
|
- }
|
|
1178
|
+ // var rightIndex = i + halfLen
|
|
1179
|
+ // rightAdvice.push(
|
|
1180
|
+ // rightIndex in advices ? advices[i + halfLen] : []
|
|
1181
|
+ // )
|
1192
|
1182
|
}
|
|
1183
|
+ // if (halfLen < 5) {
|
|
1184
|
+ // var nl = 5 - leftAdvice.length
|
|
1185
|
+ // for (let index = 0; index < nl; index++) {
|
|
1186
|
+ // leftAdvice.push([])
|
|
1187
|
+ // }
|
|
1188
|
+ // var nl = 5 - rightAdvice.length
|
|
1189
|
+ // for (let index = 0; index < nl; index++) {
|
|
1190
|
+ // rightAdvice.push([])
|
|
1191
|
+ // }
|
|
1192
|
+ // }
|
1193
|
1193
|
|
1194
|
1194
|
this.records[recordIndex].advices = []
|
1195
|
|
- for (var i = 0; i < halfLen; i++) {
|
|
1195
|
+ for (var i = 0; i < adlen; i++) {
|
1196
|
1196
|
var item = []
|
1197
|
1197
|
item.push(leftAdvice[i])
|
1198
|
|
- item.push(rightAdvice[i])
|
|
1198
|
+ // item.push(rightAdvice[i])
|
1199
|
1199
|
this.records[recordIndex].advices.push(item)
|
1200
|
1200
|
}
|
1201
|
1201
|
}
|