Commit 5f30e692 authored by 任鸿志's avatar 任鸿志

refactor(jiesuan): 调整门诊收费界面布局和列顺序

- 移除结算清单标题下的工商时间相关代码
- 调整表格列的顺序,将审核状态列移到就诊序号和费用流水号之前
- 增加审核人列
- 调整费用名称列宽度,以适应更多内容
- 设置操作列宽度,优化空间利用
parent b48823b5
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<div style=" margin-top: 10px" v-loading="yujiesuanLoading"> <div style=" margin-top: 10px" v-loading="yujiesuanLoading">
<div class="box-card"> <div class="box-card">
<div class="box_card_title"> <div class="box_card_title">
<div style="display: flex; justify-content: space-between; width: 100%;line-height: 28px;"> <div style="display: flex; width: 100%;line-height: 28px;">
<div>结算清单</div> <div>结算清单</div>
<!-- <div style="font-weight: 500" v-if="isGS"> <!-- <div style="font-weight: 500" v-if="isGS">
工商时间 工商时间
...@@ -82,16 +82,18 @@ ...@@ -82,16 +82,18 @@
<el-table-column prop="occurrence_dept_name" label="开单科室" :show-overflow-tooltip="true" width="150"> </el-table-column> <el-table-column prop="occurrence_dept_name" label="开单科室" :show-overflow-tooltip="true" width="150"> </el-table-column>
<el-table-column prop="executive_dept_name" label="执行科室" :show-overflow-tooltip="true"> </el-table-column> <el-table-column prop="executive_dept_name" label="执行科室" :show-overflow-tooltip="true"> </el-table-column>
<el-table-column prop="reviewed" align="center" label="审核状态" width="80">
<el-table-column prop="visit_no" label="就诊序号" :show-overflow-tooltip="true"> </el-table-column>
<el-table-column prop="serial_no" label="费用流水号" width="100" :show-overflow-tooltip="true"> </el-table-column>
<el-table-column prop="reviewed_by" align="center" label="审核人" width="110" > </el-table-column>
<el-table-column prop="reviewed" align="center" label="审核状态" width="80" >
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.reviewed == 1" style="color: greenyellow;">已审核</span> <span v-if="scope.row.reviewed == 1" style="color: greenyellow;">已审核</span>
<span v-else style="color: red;">未审核</span> <span v-else style="color: red;">未审核</span>
</template> </template>
<span></span> <span></span>
</el-table-column> </el-table-column>
<el-table-column prop="reviewed_by" align="center" label="审核人" width="110"> </el-table-column>
<el-table-column prop="visit_no" label="就诊序号" :show-overflow-tooltip="true"> </el-table-column>
<el-table-column prop="serial_no" label="费用流水号" width="100" :show-overflow-tooltip="true"> </el-table-column>
</el-table> </el-table>
</div> </div>
<div class="box-card-right"> <div class="box-card-right">
...@@ -114,7 +116,7 @@ ...@@ -114,7 +116,7 @@
<template slot="empty"> <template slot="empty">
<el-empty :image="tempsrc" :image-size="250" description="暂无数据"></el-empty> <el-empty :image="tempsrc" :image-size="250" description="暂无数据"></el-empty>
</template> </template>
<el-table-column prop="item_name" label="费用名称" width="200"> </el-table-column> <el-table-column prop="item_name" label="费用名称" width="300"> </el-table-column>
<el-table-column prop="amount" align="center" label="单价"> </el-table-column> <el-table-column prop="amount" align="center" label="单价"> </el-table-column>
<el-table-column prop="qty" align="center" label="数量"> </el-table-column> <el-table-column prop="qty" align="center" label="数量"> </el-table-column>
...@@ -138,7 +140,7 @@ ...@@ -138,7 +140,7 @@
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="操作"> <el-table-column align="center" label="操作" width="110">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="primary" @click="getProp(scope.row)" size="small">最新比例</el-button> <el-button type="primary" @click="getProp(scope.row)" size="small">最新比例</el-button>
</template> </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