|
@@ -233,10 +233,10 @@
|
233
|
233
|
v-if="dayorMonth == 'month'">{{ getMonthTotal() ? getMonthTotal() : '' }}元</span>
|
234
|
234
|
|
235
|
235
|
</div>
|
236
|
|
- <span v-if="dayorMonth =='day'&&curPrescriptions.advices.length > 0" :class="!curPrescriptions.is_medicine_status ? 'statusRed' : ''">{{curPrescriptions.is_medicine_status?'已发药':'未发药'}}</span>
|
237
|
|
- <span v-else></span>
|
238
|
|
- <span :class="order_status == '未收费' ? 'statusRed' : ''">{{ order_status }}</span>
|
239
|
236
|
|
|
237
|
+ <span :class="!is_medicine_status ? 'statusRed' : ''">{{is_medicine_status?'已发药':'未发药'}}</span>
|
|
238
|
+
|
|
239
|
+ <span :class="order_status == '未收费' ? 'statusRed' : ''">{{order_status}}</span>
|
240
|
240
|
</div>
|
241
|
241
|
</div>
|
242
|
242
|
<div class='centerRight'>
|
|
@@ -620,6 +620,7 @@ export default {
|
620
|
620
|
isShowDayPrescription: false,
|
621
|
621
|
monthCustomTabIndex: 1,
|
622
|
622
|
order_status: '',
|
|
623
|
+ is_medicine_status:false,
|
623
|
624
|
register_types: [
|
624
|
625
|
{ id: 1, name: '医保' },
|
625
|
626
|
{ id: 2, name: '自费' }
|
|
@@ -1861,6 +1862,7 @@ export default {
|
1861
|
1862
|
this.order_status = ''
|
1862
|
1863
|
}
|
1863
|
1864
|
|
|
1865
|
+ this.is_medicine_status = this.curPrescriptions.is_medicine_status
|
1864
|
1866
|
if (this.curPrescriptions.order_status == 1) {
|
1865
|
1867
|
this.order_status = '未收费'
|
1866
|
1868
|
}
|
|
@@ -1918,6 +1920,8 @@ export default {
|
1918
|
1920
|
this.curPrescriptions = {}
|
1919
|
1921
|
}
|
1920
|
1922
|
|
|
1923
|
+ this.is_medicine_status = this.curPrescriptions.is_medicine_status
|
|
1924
|
+
|
1921
|
1925
|
if (this.curPrescriptions.advices.length > 0 && this.curPrescriptions.project.length == 0) {
|
1922
|
1926
|
this.curStatus = 1
|
1923
|
1927
|
this.customTabIndex = 1
|