浏览代码

用户管理行政区划修改

master
庞东旭 2 周前
父节点
当前提交
e625c51a3f
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      src/views/system/user/index.vue

+ 7
- 1
src/views/system/user/index.vue 查看文件

@@ -8,7 +8,7 @@
<div class="head-container"> <div class="head-container">
<el-input v-model="deptName" placeholder="请输入区划名称" clearable size="small" prefix-icon="el-icon-search" style="margin-bottom: 20px" /> <el-input v-model="deptName" placeholder="请输入区划名称" clearable size="small" prefix-icon="el-icon-search" style="margin-bottom: 20px" />
</div> </div>
<div class="head-container">
<div class="head-container container_main">
<el-tree :data="deptOptions" :props="defaultProps" :expand-on-click-node="false" :filter-node-method="filterNode" ref="tree" node-key="id" default-expand-all highlight-current @node-click="handleNodeClick" /> <el-tree :data="deptOptions" :props="defaultProps" :expand-on-click-node="false" :filter-node-method="filterNode" ref="tree" node-key="id" default-expand-all highlight-current @node-click="handleNodeClick" />
</div> </div>
</el-col> </el-col>
@@ -554,3 +554,9 @@ export default {
} }
} }
</script> </script>
<style scoped type="scss">
.container_main{
height: 75vh;
overflow-y: scroll;
}
</style>

正在加载...
取消
保存