|
|
|
@ -72,9 +72,11 @@
|
|
|
|
|
label="操作"
|
|
|
|
|
align="center"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button-group style="margin-bottom: 8px; margin-top: 8px;">
|
|
|
|
|
<el-button type="danger" @click.native="del(scope.row)" :loading="loading">删除</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-col>
|
|
|
|
@ -98,6 +100,11 @@
|
|
|
|
|
<deptSelect :value.sync="addData.deptCode" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="4" :offset="14" >
|
|
|
|
|
<el-button-group >
|
|
|
|
|
<el-button type="primary" @click.native="save()" :loading="loading">保存</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="医保分类绑定">
|
|
|
|
@ -123,7 +130,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { deptCategoryTreeselect , deptCategoryList} from '@/api/basic/consume/materialCategory'
|
|
|
|
|
import { deptCategoryTreeselect , deptCategoryList , updateBindCategory , deleteBindCategory } from '@/api/basic/consume/materialCategory'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'materialCategory',
|
|
|
|
@ -136,6 +143,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
addData:{
|
|
|
|
|
deptCode: null,
|
|
|
|
|
deptCategory: [],
|
|
|
|
|
},
|
|
|
|
|
selectDialog:false,
|
|
|
|
|
categoryExpand:false,
|
|
|
|
@ -148,8 +156,30 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleUpdate() {
|
|
|
|
|
let deptCode = this.addData.deptCode
|
|
|
|
|
save(){
|
|
|
|
|
this.addData.deptCategory = this.getDeptAllCheckedKeys()
|
|
|
|
|
updateBindCategory(this.addData).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.selectDialog = !this.selectDialog
|
|
|
|
|
this.getData(this.query.deptCode)
|
|
|
|
|
this.$message.success("保存成功");
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.$message.error("保存失败");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 所有部门节点数据
|
|
|
|
|
getDeptAllCheckedKeys() {
|
|
|
|
|
// 目前被选中的部门节点
|
|
|
|
|
let checkedKeys = this.$refs.deptCategory.getCheckedKeys();
|
|
|
|
|
// 半选中的部门节点
|
|
|
|
|
// let halfCheckedKeys = this.$refs.deptCategory.getHalfCheckedKeys();
|
|
|
|
|
// checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);
|
|
|
|
|
return checkedKeys;
|
|
|
|
|
},
|
|
|
|
|
handleUpdate(deptCode) {
|
|
|
|
|
const deptCategory = this.getDeptCategoryTreeselect(deptCode)
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
deptCategory.then(res => {
|
|
|
|
@ -218,11 +248,45 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
add(){
|
|
|
|
|
this.addData.deptCode = this.query.deptCode
|
|
|
|
|
this.handleUpdate()
|
|
|
|
|
this.handleUpdate(this.addData.deptCode)
|
|
|
|
|
this.selectDialog = !this.selectDialog
|
|
|
|
|
},
|
|
|
|
|
del(row){
|
|
|
|
|
console.log(row)
|
|
|
|
|
let ids = []
|
|
|
|
|
let children = row.children
|
|
|
|
|
ids.push(row.categoryId)
|
|
|
|
|
if (children.length > 0 ){
|
|
|
|
|
for (let i = 0; i < children.length; i++) {
|
|
|
|
|
ids.push(children[i].categoryId)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let del = {
|
|
|
|
|
deptCode: this.query.deptCode,
|
|
|
|
|
deptCategory: ids
|
|
|
|
|
}
|
|
|
|
|
//调用删除
|
|
|
|
|
deleteBindCategory(del).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.getData(this.query.deptCode)
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.$message.error("删除失败");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onReset(){
|
|
|
|
|
this.query.deptCode = this.$store.getters.locDeptCode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
watch:{
|
|
|
|
|
'query.deptCode'(newVal, oldVal) { //监听数据被修改时触发,默认初始化时,不会触发
|
|
|
|
|
this.getData(newVal)
|
|
|
|
|
},
|
|
|
|
|
'addData.deptCode'(newVal, oldVal) { //监听数据被修改时触发,默认初始化时,不会触发
|
|
|
|
|
this.handleUpdate(newVal)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|