|
@@ -378,13 +378,18 @@
|
378
|
378
|
}
|
379
|
379
|
}
|
380
|
380
|
that.info.new_detail_list.push(obj)
|
381
|
|
- let num = 0
|
382
|
|
- that.info.new_detail_list.map(item => {
|
383
|
|
- num++
|
384
|
|
- })
|
385
|
|
- that.num = num
|
386
|
|
- console.log('this.num222',that.num)
|
|
381
|
+
|
387
|
382
|
}
|
|
383
|
+ let num = 0
|
|
384
|
+ that.info.new_detail_list.map(item => {
|
|
385
|
+ if(item.details.length > 0){
|
|
386
|
+ item.details.map(it => {
|
|
387
|
+ num++
|
|
388
|
+ })
|
|
389
|
+ }
|
|
390
|
+ })
|
|
391
|
+ that.num = num
|
|
392
|
+ console.log('this.num222',that.num)
|
388
|
393
|
|
389
|
394
|
}
|
390
|
395
|
}
|