物资字典维护 默认分类隐藏

prod
CTP 2 years ago
parent 35d7002376
commit 78434fb5cc

@ -2,8 +2,8 @@
<div> <div>
<el-card> <el-card>
<el-row type="flex"> <el-row type="flex">
<el-col v-show="showSearch" style="width: 300px"> <el-col style="flex: 1" v-show="Dictionary">
<div style="height: 100%"> <el-col v-show="showSearch" style="min-width: 200px; max-width: 100%">
<el-tree <el-tree
:data="treeList" :data="treeList"
class="tree" class="tree"
@ -17,8 +17,24 @@
}}</span></span }}</span></span
> >
</el-tree> </el-tree>
</div> </el-col>
</el-col> </el-col>
<el-button
type="success"
@click="Dictionary = !Dictionary"
icon="el-icon-arrow-left"
v-show="Dictionary"
class="iconButton"
>
</el-button>
<el-button
type="success"
@click="Dictionary = !Dictionary"
icon="el-icon-arrow-right"
v-show="!Dictionary"
class="iconButton"
>
</el-button>
<el-col style="border-left: 3px solid #dddddd; overflow-y: hidden"> <el-col style="border-left: 3px solid #dddddd; overflow-y: hidden">
<el-form <el-form
:model="filterQuery" :model="filterQuery"
@ -1460,6 +1476,7 @@ import { getBasicHospType, getListTree } from "@/api/basic/basicHospType";
export default { export default {
data() { data() {
return { return {
Dictionary: false, //
filterQuery: { filterQuery: {
lockStatus: null, lockStatus: null,
unionCode: null, unionCode: null,
@ -2100,6 +2117,10 @@ export default {
}; };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.iconButton {
margin-left: 0px;
height: 30px;
}
.tree { .tree {
::v-deep .el-tree-node { ::v-deep .el-tree-node {
white-space: normal; white-space: normal;

Loading…
Cancel
Save