|
|
|
@ -120,6 +120,24 @@
|
|
|
|
|
@pagination="preHandleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="扫码明细"
|
|
|
|
|
:visible.sync="scanDetailVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="scanDetailVisible"
|
|
|
|
|
width="65%"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<PanelOrderManuTagCode
|
|
|
|
|
:fifoSplit="3"
|
|
|
|
|
:prescribeData="prescribeData"
|
|
|
|
|
:bizId="bizId"
|
|
|
|
|
:closeScanDialog="closeScanDialog"
|
|
|
|
|
></PanelOrderManuTagCode>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -128,6 +146,7 @@ import {convertDate} from "@/utils/date";
|
|
|
|
|
import {detail} from "@/api/basic/sicker/prescribeApi";
|
|
|
|
|
import {executeFuc, getHead} from "@/utils/customConfig";
|
|
|
|
|
import {orderDetail, codeRemove} from "@/api/collect/collectOrder";
|
|
|
|
|
import PanelOrderManuTagCode from "@/views/collect/PanelOrderManuTagCode";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 原始处方明细
|
|
|
|
@ -175,7 +194,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
countVisible: false,
|
|
|
|
|
|
|
|
|
|
scanDetailVisible: false,
|
|
|
|
|
bizId: null,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -264,6 +284,16 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
scanDetail(_this, row) {
|
|
|
|
|
_this.bizId = row.id;
|
|
|
|
|
_this.scanDetailVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeScanDialog() {
|
|
|
|
|
this.getPrescribeDetail(this);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
rowStyle({row, rowIndex}) {
|
|
|
|
|
let rowBackground = {};
|
|
|
|
|
if (row.count != row.scanCount) {
|
|
|
|
@ -275,6 +305,11 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
PanelOrderManuTagCode
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
if (this.tableHeader1 == null || this.tableHeader1.length == 0) {
|
|
|
|
|
getHead("prescribeOriginPanel", "1").then((re) => {
|
|
|
|
|