|
|
|
@ -34,25 +34,24 @@
|
|
|
|
|
<el-table :data="list" style="width: 100%" border
|
|
|
|
|
max-height="350" height="350"
|
|
|
|
|
highlight-current-row>
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="处方编码" prop="prescribeCode" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="DI标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="DI标识" prop="diCode" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" prop="thrName" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" width="140" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measureUnit" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="数量" header-align="center">
|
|
|
|
|
<el-table-column label="处方数量" prop="count" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="处方数量" prop="measureCount" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="扫码数量" prop="realCount" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="价格" header-align="center">
|
|
|
|
|
<el-table-column label="处方价格" prop="price" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="实际价格" prop="realPrice" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="处方金额" prop="amount" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="实际金额" prop="realPrice" width="100" show-overflow-tooltip></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="注册/备案凭证" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="ylqxzcrbarmc" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column width="60" label="操作" fixed="right">
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column width="60" label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.native.stop="handleModifyClick(scope.row)">详情</el-button>
|
|
|
|
|
</template>
|
|
|
|
@ -83,10 +82,13 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
|
cpmctymc: null,
|
|
|
|
|
unionCode: null,
|
|
|
|
|
billNo: null,
|
|
|
|
|
adNum: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
ggxh: null,
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: false,
|
|
|
|
@ -96,6 +98,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getList() {
|
|
|
|
|
debugger
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.filterQuery.adNum = this.sickerAdNum;
|
|
|
|
|
this.filterQuery.billNo = this.perscribeData.billNo;
|
|
|
|
|