fix:修改添加学员

This commit is contained in:
lixg
2022-12-01 14:55:31 +08:00
parent bb84f0a026
commit 8ae00ef4ce
6 changed files with 27 additions and 15 deletions

View File

@@ -162,6 +162,7 @@
placeholder="请选择项目经理"
style="width: 100%"
:options="classifyList1"
:filterOption="false"
@change="classificationChange1"
allowClear
showSearch
@@ -812,7 +813,9 @@ export default {
.then((res) => {
if (res.data.code === 200) {
let arr = res.data.data.rows;
let array = classifyList1.value;
console.log("array", array);
arr.map((value) => {
let obj = {
value: value.id,
@@ -836,7 +839,7 @@ export default {
if (e) {
state.searchName = e;
classifyList1.value = [];
getMember();
getMember(e);
}
};