|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
<div>
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col style="flex: 1" v-show="Dictionary">
|
|
|
|
|
<el-col style="flex: 1" v-show="Dictionary && vueRouteSource==1">
|
|
|
|
|
<el-col v-show="showSearch" style="min-width: 200px; max-width: 100%">
|
|
|
|
|
<el-tree
|
|
|
|
|
:data="treeList"
|
|
|
|
@ -23,7 +23,7 @@
|
|
|
|
|
type="success"
|
|
|
|
|
@click="Dictionary = !Dictionary"
|
|
|
|
|
icon="el-icon-arrow-left"
|
|
|
|
|
v-show="Dictionary"
|
|
|
|
|
v-show="Dictionary && vueRouteSource==1"
|
|
|
|
|
class="iconButton"
|
|
|
|
|
>
|
|
|
|
|
</el-button>
|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
type="success"
|
|
|
|
|
@click="Dictionary = !Dictionary"
|
|
|
|
|
icon="el-icon-arrow-right"
|
|
|
|
|
v-show="!Dictionary"
|
|
|
|
|
v-show="!Dictionary && vueRouteSource==1"
|
|
|
|
|
class="iconButton"
|
|
|
|
|
>
|
|
|
|
|
</el-button>
|
|
|
|
@ -206,24 +206,27 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="editUdiType">物资分类管理</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="editUdiType"
|
|
|
|
|
v-if="vueRouteSource==1"
|
|
|
|
|
>物资分类管理
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
icon="el-icon-plus" v-if="vueRouteSource==1"
|
|
|
|
|
@click="intentImportUdi"
|
|
|
|
|
>选入DI信息
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
icon="el-icon-plus" v-if="vueRouteSource==1"
|
|
|
|
|
@click="intentImportErp"
|
|
|
|
|
>添加院内字典
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
icon="el-icon-plus" v-if="vueRouteSource==1"
|
|
|
|
|
@click="intentDetail"
|
|
|
|
|
>关联添加
|
|
|
|
|
</el-button
|
|
|
|
@ -411,7 +414,7 @@
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
size="small" v-if="vueRouteSource==1"
|
|
|
|
|
:disabled="scope.row.originUuid != null"
|
|
|
|
|
@click.native.stop="intentSelectUdi(scope.row)"
|
|
|
|
|
>关联DI
|
|
|
|
@ -425,17 +428,23 @@
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
size="small" v-if="vueRouteSource==1"
|
|
|
|
|
@click.native.stop="diEdit(scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
size="small" v-if="vueRouteSource==1"
|
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" v-if="vueRouteSource==2"
|
|
|
|
|
@click.native.stop="uploadThird(scope.row)"
|
|
|
|
|
>上传
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -1599,6 +1608,7 @@ import selectHospProduct from "@/views/basic/product/bindHospProduct";
|
|
|
|
|
import selectUnBindHospProduct from "@/views/basic/product/unbindHospProduct";
|
|
|
|
|
import {getBasicHospType, getListTree} from "@/api/basic/basicHospType";
|
|
|
|
|
import {getHslbs} from "@/api/thrsys/thrHsfl";
|
|
|
|
|
import {postThirdProduct} from "@/api/thrsys/thrProductsExport";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -1710,6 +1720,7 @@ export default {
|
|
|
|
|
lockStatusMap: {1: "未提交", 2: "已提交", 3: "已锁定"},
|
|
|
|
|
activeNames: ["1"],
|
|
|
|
|
useNumEnable: true,
|
|
|
|
|
vueRouteSource: 1, //路由来源 1:耗材字典:2:第三方产品信息上传
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
@ -2042,6 +2053,32 @@ export default {
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploadThird(row) {
|
|
|
|
|
this.$confirm('确定上传至第三方系统?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
postThirdProduct(row)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.success(response.data);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lockProducts(status) {
|
|
|
|
|
let selectData = this.multipleSelection;
|
|
|
|
|
let postQuery = {
|
|
|
|
@ -2244,6 +2281,7 @@ export default {
|
|
|
|
|
selectUnBindHospProduct,
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.vueRouteSource = this.$route.query.vueRouteSource;
|
|
|
|
|
this.findBasicProductSet();
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getTerrList();
|
|
|
|
|