|
|
|
@ -32,19 +32,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" prop="cpmctymc" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measureUnit" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="数量" prop="count" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="价格" prop="price" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案凭证" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column width="60" label="操作">
|
|
|
|
|
<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="规格型号" 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="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>
|
|
|
|
|
|
|
|
|
|
<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">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.native.stop="handleModifyClick(scope.row)">详情</el-button>
|
|
|
|
|
</template>
|
|
|
|
@ -56,7 +64,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {dlOrFilter, skPrescribeDi} from "@/api/basic/sicker/skPersonApi";
|
|
|
|
|
import {dlOrFilter, skPrescribeCheck, skPrescribeDi} from "@/api/basic/sicker/skPersonApi";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "skPrescribeDi",
|
|
|
|
@ -75,6 +83,7 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
|
billNo: null,
|
|
|
|
|
adNum: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
@ -89,16 +98,17 @@ export default {
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.filterQuery.adNum = this.sickerAdNum;
|
|
|
|
|
skPrescribeDi(this.filterQuery)
|
|
|
|
|
this.filterQuery.billNo = this.perscribeData.billNo;
|
|
|
|
|
skPrescribeCheck(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.list = response.data || [];
|
|
|
|
|
// this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
// this.list = [];
|
|
|
|
|
// this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|