|
@@ -5,8 +5,10 @@
|
5
|
5
|
<div class="listInfo">
|
6
|
6
|
|
7
|
7
|
<div>患者姓名:{{patient.name}}</div>
|
8
|
|
- <div>透析号:{{patient.dialysis_no}}</div>
|
9
|
|
- <div>性别:{{patient.gender == 1 ? '男': '女'}}</div>
|
|
8
|
+ <div v-if="$store.getters.xt_user.org.id != 10191">透析号:{{patient.dialysis_no}}</div>
|
|
9
|
+ <div v-if="$store.getters.xt_user.org.id == 10191">身份证号:{{patient.id_card_no}}</div>
|
|
10
|
+
|
|
11
|
+ <div>性别:{{patient.gender == 1 ? '男': '女'}}</div>
|
10
|
12
|
<div>年龄:{{patient.age}} 岁</div>
|
11
|
13
|
<div v-if="order.settle_type == 1">收费日期:{{getTimes(order.settle_accounts_date)}}</div>
|
12
|
14
|
<div v-if="order.settle_type == 2">收费日期:{{getTimes(order.settle_start_time)}} 至 {{getTimes(order.settle_end_time)}}</div>
|
|
@@ -39,6 +41,12 @@
|
39
|
41
|
<div class="tableBottomOne">制表人:{{admin.user_name}}</div>
|
40
|
42
|
<div class="tableBottomOne">制表日期:{{ getNowTime()}}</div>
|
41
|
43
|
<div class="tableBottomOne">总费用:{{order.medfee_sumamt}}元</div>
|
|
44
|
+ <div class="tableBottomOne">基金总额:{{order.fund_pay_sumamt}}元</div>
|
|
45
|
+ <div class="tableBottomOne">统筹支付:{{order.hifp_pay}}元</div>
|
|
46
|
+ <div class="tableBottomOne">医疗救助:{{order.maf_pay}}元</div>
|
|
47
|
+ <div class="tableBottomOne">医保报销:{{order.fund_pay_sumamt}}元</div>
|
|
48
|
+ <div class="tableBottomOne">个人支付:{{order.psn_cash_pay}}元</div>
|
|
49
|
+
|
42
|
50
|
</div>
|
43
|
51
|
</div>
|
44
|
52
|
</div>
|
|
@@ -94,21 +102,21 @@
|
94
|
102
|
let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds()
|
95
|
103
|
:
|
96
|
104
|
new Date().getSeconds()
|
97
|
|
- dateTime = yy + '-' + mm + '-' + dd + ' ' + hh + ':' + mf + ':' + ss
|
|
105
|
+ dateTime = yy + '-' + mm + '-' + dd
|
98
|
106
|
return dateTime
|
99
|
107
|
},
|
100
|
108
|
getTimes(time) {
|
101
|
109
|
return uParseTime(time, '{y}-{m}-{d}')
|
102
|
110
|
},
|
103
|
111
|
getPage(){
|
104
|
|
- if(this.list.length <= 13){
|
|
112
|
+ if(this.list.length <= 15){
|
105
|
113
|
this.page = 1
|
106
|
114
|
this.pageArr.push(this.list.length)
|
107
|
|
- }else if(this.list.length > 13){
|
108
|
|
- this.page = parseInt(this.list.length / 13)
|
109
|
|
- let num = this.list.length % 13
|
|
115
|
+ }else if(this.list.length > 15){
|
|
116
|
+ this.page = parseInt(this.list.length / 15)
|
|
117
|
+ let num = this.list.length % 15
|
110
|
118
|
for (var i=0;i<this.page;i++){
|
111
|
|
- this.pageArr.push(13)
|
|
119
|
+ this.pageArr.push(15)
|
112
|
120
|
}
|
113
|
121
|
if(num != 0){
|
114
|
122
|
this.pageArr.push(num)
|
|
@@ -164,11 +172,11 @@
|
164
|
172
|
padding: 0 5px;
|
165
|
173
|
}
|
166
|
174
|
.tableBottom{
|
167
|
|
- font-size: 16px;
|
|
175
|
+ font-size: 12px;
|
168
|
176
|
display: flex;
|
169
|
177
|
margin-top: 20px;
|
170
|
178
|
}
|
171
|
179
|
.tableBottomOne{
|
172
|
|
- margin-right: 40px;
|
|
180
|
+ margin-right: 20px;
|
173
|
181
|
}
|
174
|
182
|
</style>
|