feat: 科室医保分类功能

dev_ksck2.0
chenhc 1 year ago
parent 280aeea409
commit 2c0b597385

@ -2,14 +2,30 @@ import axios from "@/utils/request";
export function deptCategoryTreeselect(deptCode) {
return axios({
url: `/deptCategoryTreeselect/${deptCode}`,
url: `/consumeMaterialCategory/deptCategoryTreeselect/${deptCode}`,
method: "GET"
});
}
export function deptCategoryList(deptCode) {
return axios({
url: `/deptCategoryList/${deptCode}`,
url: `/consumeMaterialCategory/deptCategoryList/${deptCode}`,
method: "GET"
});
}
export function updateBindCategory(query) {
return axios({
url: "/consumeMaterialCategory/updateBindCategory",
method: "post",
data: query
});
}
export function deleteBindCategory(query) {
return axios({
url: `/consumeMaterialCategory/deleteBindCategory`,
method: "DELETE",
data: query
});
}

@ -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)
}
},

Loading…
Cancel
Save