|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
<el-table-column prop="remark" label="备注"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click="handleSubForm( scope.row, 'add')" :disabled="scope.row.code==10000">新增</el-button>
|
|
|
|
|
<el-button type="text" @click="handleSubForm( scope.row, 'add')">新增</el-button>
|
|
|
|
|
<el-button type="text" @click.native.stop="handleSubForm( scope.row, 'edit')">编辑</el-button>
|
|
|
|
|
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="handleDelInv(scope.row)">删除</el-button>
|
|
|
|
|
<el-button type="text" v-if="scope.row.code!=10000" @click.native.stop="addHospProduct( scope.row)">绑定</el-button>
|
|
|
|
@ -232,7 +232,7 @@ export default {
|
|
|
|
|
this.subData = JSON.parse(JSON.stringify(data));
|
|
|
|
|
} else if (formName === "add") {
|
|
|
|
|
this.subData= {
|
|
|
|
|
parentCode:JSON.parse(JSON.stringify(data)).parentCode
|
|
|
|
|
parentCode:JSON.parse(JSON.stringify(data)).code
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
this.getTreeselect(data);
|
|
|
|
|