This commit is contained in:
闫晓茹 2024-03-07 14:19:14 +08:00
parent d188e634ae
commit 836973e58b
2 changed files with 13 additions and 4 deletions

View File

@ -331,9 +331,8 @@ export default {
}, },
change(e) { change(e) {
console.log(e, "9"); console.log(e, "9");
if(e){ if (e) {
this.form.parentCategoryId = e[e.length - 1]; this.form.parentCategoryId = e[e.length - 1];
} }
}, },
/** 查询机构类别列表 */ /** 查询机构类别列表 */
@ -409,7 +408,7 @@ export default {
this.open = false; this.open = false;
++this.isResouceShow; ++this.isResouceShow;
this.getList(); this.getList();
this.gettreelistitem() this.gettreelistitem();
}); });
} else { } else {
addAgencyCategory(this.form).then((response) => { addAgencyCategory(this.form).then((response) => {
@ -417,7 +416,7 @@ export default {
this.open = false; this.open = false;
++this.isResouceShow; ++this.isResouceShow;
this.getList(); this.getList();
this.gettreelistitem() this.gettreelistitem();
}); });
} }
} }
@ -450,3 +449,8 @@ export default {
}, },
}; };
</script> </script>
<style lang="scss">
.el-cascader .el-input input::-webkit-input-placeholder {
color: #CCCFD6;
}
</style>

View File

@ -1005,3 +1005,8 @@ export default {
margin: 22px; margin: 22px;
} }
</style> </style>
<style lang="scss">
.el-cascader .el-input input::-webkit-input-placeholder {
color: #686a6d;
}
</style>