|
|
|
@ -52,6 +52,7 @@
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
ref="list"
|
|
|
|
|
:data="list"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
highlight-current-row
|
|
|
|
@ -355,6 +356,14 @@ import { listDeptUser, removeUser } from "@/api/system/deptUser";
|
|
|
|
|
import { filterSubAll } from "@/api/system/invSubWarehouse";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
watch: {
|
|
|
|
|
list: {
|
|
|
|
|
handler: function () {
|
|
|
|
|
this.$refs.list.setCurrentRow(this.list[0]);
|
|
|
|
|
},
|
|
|
|
|
deep: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
filterQuery: {
|
|
|
|
@ -576,10 +585,6 @@ export default {
|
|
|
|
|
let depList = response.data.list || [];
|
|
|
|
|
this.deptOptions = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
});
|
|
|
|
|
console.log(row.id);
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// this.$refs.deptTableRef.setCurrentRow(this.list[row.pid]);
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
/* 获取列表 */
|
|
|
|
|
getList() {
|
|
|
|
@ -588,12 +593,7 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
let depList = response.data.list || [];
|
|
|
|
|
// console.log("deplist", depList);
|
|
|
|
|
this.list = this.handleTree(depList, "code", "pcode");
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.deptTableRef.setCurrentRow(this.list[0]);
|
|
|
|
|
});
|
|
|
|
|
console.log(this.list);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|