|
|
|
@ -36,7 +36,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 列表 --> |
|
|
|
<div style="padding: 15px;border-radius: 8px;background-color: #fff;"> |
|
|
|
<div style="padding: 10px;border-radius: 8px;background-color: #fff;"> |
|
|
|
<el-table :data="patientList" border highlight-current-row ref="patientList" :height="tableListHeight" |
|
|
|
@row-click="rowClick" size="small"> |
|
|
|
<!-- |
|
|
|
@ -143,7 +143,7 @@ |
|
|
|
</div> |
|
|
|
<!-- charge_pay --> |
|
|
|
<div style="padding: 10px;background-color: #fff;margin-bottom: 7px;border-radius: 8px;"> |
|
|
|
<div style="margin-top:5px;font-size:10px;">{{ query.chargeFlag == 'B' ? '退' : '收' }}费方式:</div> |
|
|
|
<div style="font-size:10px;">{{ query.chargeFlag == 'B' ? '退' : '收' }}费方式:</div> |
|
|
|
<el-table :data="chargePays" border highlight-current-row size="small" |
|
|
|
:height="Math.floor((tableListHeight - 155) / 2)"> |
|
|
|
<el-table-column prop="payModeId" :label="(query.chargeFlag == 'B' ? '退' : '收') + '费方式'" width="180"> |
|
|
|
@ -169,10 +169,10 @@ |
|
|
|
</div> |
|
|
|
<!-- asbitem --> |
|
|
|
<div style="padding: 10px;background-color: rgb(255, 255, 255);border-radius: 8px;"> |
|
|
|
<div style="margin-top:5px; font-size:10px;">{{ query.chargeFlag == 'N' ? '待收' : (query.chargeFlag == 'Y' ? |
|
|
|
<div style="font-size:10px;">{{ query.chargeFlag == 'N' ? '待收' : (query.chargeFlag == 'Y' ? |
|
|
|
'已收' : '已退') }}费项目:</div> |
|
|
|
<el-table :data="asbItemsForFee" border highlight-current-row |
|
|
|
:height="Math.floor((tableListHeight - 150) / 2)" size="small" @selection-change="handleSelectionChange" |
|
|
|
:height="Math.floor((tableListHeight - 155) / 2)" size="small" @selection-change="handleSelectionChange" |
|
|
|
ref="asbItemsForFeeTable"> |
|
|
|
<el-table-column type="selection" align="center" v-if="query.chargeFlag == 'N'" /> |
|
|
|
<el-table-column label="组合项目" width="120" prop="asbitemName" /> |
|
|
|
@ -345,12 +345,12 @@ export default { |
|
|
|
|
|
|
|
tableListHeight() { |
|
|
|
let tempH = this.window.pageHeight < 600 ? 600 : this.window.pageHeight |
|
|
|
return tempH - 175 - 40 |
|
|
|
return tempH - 175 - 30 |
|
|
|
}, |
|
|
|
|
|
|
|
bodyWidth() { |
|
|
|
let tempW = this.window.pageWidth < 600 ? 600 : this.window.pageWidth |
|
|
|
return tempW - 110 - 20 |
|
|
|
return tempW - 110 - 25 |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
|