Commit 07dfc22e by wangshuangqing

修改患者详情页面表格对齐方式

parent 670a906b
......@@ -177,23 +177,23 @@
@row-click="eowclick"
@expand-change="changeRowClick"
>
<el-table-column prop="iteM_TYPE" label="项目名称" width="100" header-align="center" align="center"> </el-table-column>
<el-table-column prop="totalFee" label="总金额(小计)" width="80" header-align="center" align="center">
<el-table-column prop="iteM_TYPE" label="项目名称" width="110" header-align="center" align="left"> </el-table-column>
<el-table-column prop="totalFee" label="总金额(小计)" width="80" header-align="center" align="right">
<template slot-scope="scope">
{{ decimal(scope.row.totalFee) }}
</template>
</el-table-column>
<el-table-column prop="proportion" label="占总费用(比例)" width="80" header-align="center" align="center">
<el-table-column prop="proportion" label="占总费用(比例)" width="90" header-align="center" align="right">
<template slot-scope="scope" >
{{scope.row.proportion !=undefined?decimal(scope.row.proportion)+'%':''}}
</template>
</el-table-column>
<el-table-column prop="coreTotalFee" label="预计DRG设定费用(参考)" width="100" header-align="center" align="center">
<el-table-column prop="coreTotalFee" label="预计DRG设定费用(参考)" width="100" header-align="center" align="right">
<template slot-scope="scope" >
{{ decimal(scope.row.coreTotalFee)}}
</template>
</el-table-column>
<el-table-column prop="coreProportion" label="设定费用比例(参考)" header-align="center" align="center">
<el-table-column prop="coreProportion" label="设定费用比例(参考)" width="100" header-align="center" align="center">
<template slot-scope="scope" >
{{ scope.row.coreProportion !=undefined? decimal(scope.row.coreProportion)+'%':''}}
</template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment