|
@@ -126,6 +126,10 @@
|
126
|
126
|
<el-table-column align="center" prop="name" label="是否结算">
|
127
|
127
|
<template slot-scope="scope">{{scope.row.order_status == 2?'已结算':'未结算'}}</template>
|
128
|
128
|
</el-table-column>
|
|
129
|
+
|
|
130
|
+ <el-table-column align="center" prop="name" label="结算时间">
|
|
131
|
+ <template slot-scope="scope">{{scope.row.order_status == 2?scope.row.setl_time:''}}</template>
|
|
132
|
+ </el-table-column>
|
129
|
133
|
</el-table>
|
130
|
134
|
</div>
|
131
|
135
|
|
|
@@ -528,6 +532,8 @@ export default {
|
528
|
532
|
newObj['price'] = orders[c].pric
|
529
|
533
|
|
530
|
534
|
newObj['order_status'] = orders[c].order_status
|
|
535
|
+ newObj['setl_time'] = orders[c].setl_time
|
|
536
|
+
|
531
|
537
|
newObj['med_type'] = orders[c].med_type
|
532
|
538
|
newObj['record_date'] = orders[c].record_date
|
533
|
539
|
newObj['unit'] = orders[c].unit
|
|
@@ -590,6 +596,8 @@ export default {
|
590
|
596
|
obj['item_spec'] = project[i].item_spec
|
591
|
597
|
|
592
|
598
|
obj['order_status'] = project[i].order_status
|
|
599
|
+ obj['setl_time'] = project[i].setl_time
|
|
600
|
+
|
593
|
601
|
obj['med_type'] = project[i].med_type
|
594
|
602
|
obj['record_date'] = project[i].record_date
|
595
|
603
|
obj['item_cost_type'] = project[i].item_cost_type
|
|
@@ -623,6 +631,8 @@ export default {
|
623
|
631
|
|
624
|
632
|
obj['name'] = tempPatientsTwo[d].name
|
625
|
633
|
obj['order_status'] = advice[i].order_status
|
|
634
|
+ obj['setl_time'] = advice[i].setl_time
|
|
635
|
+
|
626
|
636
|
obj['med_type'] = advice[i].med_type
|
627
|
637
|
obj['record_date'] = advice[i].record_date
|
628
|
638
|
obj['item_cost_type'] = advice[i].item_cost_type
|
|
@@ -664,6 +674,8 @@ export default {
|
664
|
674
|
count: tempPatientsTwo[i].new_order_info[b].count,
|
665
|
675
|
item_spec: tempPatientsTwo[i].new_order_info[b].item_spec,
|
666
|
676
|
order_status: tempPatientsTwo[i].new_order_info[b].order_status,
|
|
677
|
+ setl_time: tempPatientsTwo[i].new_order_info[b].setl_time,
|
|
678
|
+
|
667
|
679
|
med_type: tempPatientsTwo[i].new_order_info[b].med_type,
|
668
|
680
|
record_date: tempPatientsTwo[i].new_order_info[b].record_date,
|
669
|
681
|
item_cost_type: tempPatientsTwo[i].new_order_info[b].item_cost_type,
|