* [task#125618,doing,0.5h] * set team value.

This commit is contained in:
tianshujie
2024-08-20 09:47:59 +08:00
committed by 曹延义
parent 8726ffed00
commit 00dce315e7
+9
View File
@@ -75,6 +75,15 @@ window.changeKanbanSpace = function()
$('[name=owner]').zui('picker').render({items: data});
});
}
if(config.currentMethod == 'space')
{
const getTeamUrl = $.createLink('kanban', 'ajaxGetSpaceTeam', 'spaceID=' + spaceID);
$.getJSON(getTeamUrl, function(team)
{
$('[name^=team]').zui('picker').$.setValue(team)
});
}
}
/**