|
@@ -172,6 +172,7 @@ export default {
|
172
|
172
|
list_batch(this.list_id).then(res =>{
|
173
|
173
|
console.log('res',res);
|
174
|
174
|
this.list_arr = res.data.data.orders
|
|
175
|
+ console.log("listArr=======",this.list_arr)
|
175
|
176
|
for(let x in this.list_arr){
|
176
|
177
|
this.list_arr[x]['lists']=[]
|
177
|
178
|
for (let i = 0; i < this.list_arr[x].order_info.length; i++) {
|
|
@@ -194,10 +195,11 @@ export default {
|
194
|
195
|
obj['unit'] = infos.project.project.unit
|
195
|
196
|
obj['is_total']= 0
|
196
|
197
|
obj['record_date'] = infos.project.record_date
|
|
198
|
+ obj['spec'] = ""
|
197
|
199
|
|
198
|
200
|
}else if (infos.project.type == 3){
|
199
|
201
|
obj['name'] = infos.project.good_info.good_name
|
200
|
|
- obj['spec'] = ""
|
|
202
|
+ obj['spec'] = infos.project.good_info.specification_name
|
201
|
203
|
obj['code'] = infos.project.good_info.medical_insurance_number
|
202
|
204
|
obj['unit'] = infos.project.good_info.packing_unit
|
203
|
205
|
obj['is_total']= 0
|