|
|
|
@ -95,7 +95,7 @@
|
|
|
|
|
<!-- show-overflow-tooltip-->
|
|
|
|
|
<!-- ></el-table-column>-->
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="220" fixed="right">
|
|
|
|
|
<el-table-column label="操作" width="280" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
@ -127,6 +127,14 @@
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
:disabled="scope.row.drugLink == 1"
|
|
|
|
|
@click.native.stop="association(scope.row)"
|
|
|
|
|
>关联
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -159,6 +167,21 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="editTitle"
|
|
|
|
|
:visible.sync="associationCodeVisible"
|
|
|
|
|
append-to-body width="70%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="associationCodeVisible"
|
|
|
|
|
>
|
|
|
|
|
<operateRelCodeSpell
|
|
|
|
|
:closeCodeDialog="closeCodeDialog"
|
|
|
|
|
:orderQuery="orderQuery">
|
|
|
|
|
</operateRelCodeSpell>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!-- 绑定产品-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="selectRlTitle"
|
|
|
|
@ -222,6 +245,9 @@ import DialogSelectUnit from "../inout/DialogSelectUnit";
|
|
|
|
|
import editCodeDialog from "../inout/DialogEditCode";
|
|
|
|
|
import {parseTime} from "@/utils/coTools";
|
|
|
|
|
import {getCheckDetailCodes} from "@/api/inout/orderDetailCode";
|
|
|
|
|
import operateRelCodeSpell from "@/views/collect/relCode/operateRelCodeSpell";
|
|
|
|
|
import {updateIoCodeTempEntity} from "@/api/collect/relCode";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "PanelCreateOrderCodesDrug",
|
|
|
|
@ -254,6 +280,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
orderQuery: null,
|
|
|
|
|
editTitle: "",
|
|
|
|
|
associationCodeVisible: false,
|
|
|
|
|
loading: false,
|
|
|
|
|
query: {
|
|
|
|
|
code: "",
|
|
|
|
@ -408,7 +437,11 @@ export default {
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
association(row) {
|
|
|
|
|
this.editTitle = "关联条码";
|
|
|
|
|
this.orderQuery = row;
|
|
|
|
|
this.associationCodeVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeBindDialog() {
|
|
|
|
|
this.selectRlVisible = false;
|
|
|
|
@ -419,6 +452,11 @@ export default {
|
|
|
|
|
closeCodeDialog() {
|
|
|
|
|
this.editCodeVisible = false;
|
|
|
|
|
this.editOriginCodeVisible = false;
|
|
|
|
|
this.associationCodeVisible = false;
|
|
|
|
|
//前往更新码明细
|
|
|
|
|
updateIoCodeTempEntity({parentCode:this.orderQuery.code}).then((response) => {
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
this.refreshPanel();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -438,7 +476,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
selectRlDialog, DialogSelectUnit, editCodeDialog
|
|
|
|
|
selectRlDialog, DialogSelectUnit, editCodeDialog,operateRelCodeSpell
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|