|
|
|
@ -423,15 +423,9 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column :width="isChoose?50:180" label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope" v-if="isChoose">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="chooseFunc(scope.row)"
|
|
|
|
|
>选择
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template slot-scope="scope" v-else>
|
|
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div v-if="!isChoose">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" v-if="vueRouteSource==1"
|
|
|
|
@ -445,8 +439,6 @@
|
|
|
|
|
@click.native.stop="handleModifyClick(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" v-if="vueRouteSource==1"
|
|
|
|
@ -474,7 +466,21 @@
|
|
|
|
|
@click.native.stop="uploadMsg(scope.row)"
|
|
|
|
|
>上传日志
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-else-if="isChoose">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="chooseFunc(scope.row)"
|
|
|
|
|
>选择
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<!-- <template slot-scope="scope" >-->
|
|
|
|
|
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-dialog
|
|
|
|
@ -1641,7 +1647,7 @@ import {postThirdProduct} from "@/api/thrsys/thrProductsExport";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "prodcut",
|
|
|
|
|
props: {isChoose: {required: false, default: false, type: Boolean},chooseFunc: {required:false,type: Function}},
|
|
|
|
|
props: {isChoose: {required: false, default: false, type: Boolean}, chooseFunc: {required: false, type: Function}},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
Dictionary: false, //物资字典分类显示、隐藏
|
|
|
|
@ -1759,6 +1765,7 @@ export default {
|
|
|
|
|
activeNames: ["1"],
|
|
|
|
|
useNumEnable: true,
|
|
|
|
|
vueRouteSource: 1, //路由来源 1:耗材字典:2:第三方产品信息上传
|
|
|
|
|
isSelect: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
@ -2342,6 +2349,9 @@ export default {
|
|
|
|
|
selectUnBindHospProduct,
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
// debugger
|
|
|
|
|
// if (this.isChoose != null)
|
|
|
|
|
// this.isSelect = this.isChoose;
|
|
|
|
|
this.vueRouteSource = this.$route.query.vueRouteSource;
|
|
|
|
|
this.findBasicProductSet();
|
|
|
|
|
this.getList();
|
|
|
|
|