|
|
|
@ -111,7 +111,7 @@
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%;" border highlight-current-row
|
|
|
|
|
ref="multipleTable"
|
|
|
|
|
:default-sort="defaultSort"
|
|
|
|
|
:row-style="{ height: '32px' }" @selection-change="handleUserSelectionChange">
|
|
|
|
|
:row-style="{ height: '32px' }" @selection-change="handleUserSelectionChange" @row-click="prescribeClick">
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<template v-for="(item, index) in tableHeader">
|
|
|
|
|
<el-table-column
|
|
|
|
@ -217,6 +217,14 @@
|
|
|
|
|
@pagination="handleCurrentChange"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
<el-tab-pane label="单据明细">
|
|
|
|
|
<PannelOriginOrderDetail
|
|
|
|
|
v-if="panelALive"
|
|
|
|
|
:prescribeData="curRow"
|
|
|
|
|
></PannelOriginOrderDetail>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -226,6 +234,7 @@ import {executeFuc, getHead} from "@/utils/customConfig";
|
|
|
|
|
import {deleteDataByCode} from "@/api/basic/sicker/prescribeApi";
|
|
|
|
|
import {getThrOrderPage} from "@/api/collect/collectOrder";
|
|
|
|
|
import {getWorkBindBusTypes} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
|
import PannelOriginOrderDetail from "../PannelOriginOrderDetail"
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "prescribeDownloadDialog",
|
|
|
|
@ -235,6 +244,7 @@ export default {
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components:{PannelOriginOrderDetail},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
actDateRange: [],
|
|
|
|
@ -316,6 +326,8 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
panelALive:false,
|
|
|
|
|
curRow: null,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -421,9 +433,15 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
prescribeClick(_this, row) {
|
|
|
|
|
this.getPrescribeDetail(_this, row)
|
|
|
|
|
this.getCodeDetail(_this, row)
|
|
|
|
|
// prescribeClick(_this, row) {
|
|
|
|
|
// this.getPrescribeDetail(_this, row)
|
|
|
|
|
// this.getCodeDetail(_this, row)
|
|
|
|
|
// _this.curRow = row;
|
|
|
|
|
// _this.refreshCodesPanel(_this);
|
|
|
|
|
// },
|
|
|
|
|
prescribeClick(row) {
|
|
|
|
|
this.curRow = row;
|
|
|
|
|
this.refreshCodesPanel();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getPrescribeDetail(_this, row) {
|
|
|
|
@ -503,7 +521,12 @@ export default {
|
|
|
|
|
return
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
refreshCodesPanel() {
|
|
|
|
|
this.panelALive = false;
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.panelALive = true;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
getHead("prescribePanel-online", "1").then((re) => {
|
|
|
|
|