Merge branch 'CTP'

ywj_dev
CTP 2 years ago
commit bf1a61a241

@ -753,10 +753,7 @@ export default {
findConfig()
.then((response) => {
this.configQuery = response.data;
console.log(
"this.configQuery",
<this className="configQuery"></this>
);
// console.log("this.configQuery", this.configQuery);
this.checkedBusTypes = this.configQuery.busTypes;
this.checkedToInBusTypes = this.configQuery.toInBusTypes;
this.checkedChangeBusTypes = this.configQuery.changeBusTypes;

@ -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;

Loading…
Cancel
Save