|
|
|
@ -3,15 +3,10 @@
|
|
|
|
|
<!-- 部门信息相关-->
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-form
|
|
|
|
|
|
|
|
|
|
:inline="true"
|
|
|
|
|
|
|
|
|
|
:model="filterQuery"
|
|
|
|
|
|
|
|
|
|
class="query-form"
|
|
|
|
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-form-item class="query-form-item" label="部门名称:">
|
|
|
|
@ -23,13 +18,9 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item" label="状态:">
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
|
|
v-model="filterQuery.status"
|
|
|
|
|
|
|
|
|
|
placeholder="请选择状态:"
|
|
|
|
|
|
|
|
|
|
clearable
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
|
<el-option label="禁用" :value="0"></el-option>
|
|
|
|
@ -39,8 +30,8 @@
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"
|
|
|
|
|
>重置
|
|
|
|
|
|
|
|
|
|
>重置</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="onSubmit" icon="el-icon-search"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button>
|
|
|
|
@ -53,7 +44,7 @@
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-sort"
|
|
|
|
|
@click="toggleExpandAll"
|
|
|
|
|
>展开/折叠
|
|
|
|
|
>展开/折叠
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -586,9 +577,9 @@ export default {
|
|
|
|
|
this.deptOptions = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
});
|
|
|
|
|
console.log(row.id);
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// this.$refs.deptTableRef.setCurrentRow(this.list[row.pid]);
|
|
|
|
|
// });
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// this.$refs.deptTableRef.setCurrentRow(this.list[row.pid]);
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
/* 获取列表 */
|
|
|
|
|
getList() {
|
|
|
|
@ -600,9 +591,9 @@ export default {
|
|
|
|
|
// console.log("deplist", depList);
|
|
|
|
|
this.list = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.deptTableRef.setCurrentRow(this.list[0]);
|
|
|
|
|
});
|
|
|
|
|
console.log(this.list);
|
|
|
|
|
this.$refs.deptTableRef.setCurrentRow(this.list[0]);
|
|
|
|
|
});
|
|
|
|
|
console.log(this.list);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|