修改邮箱添加用户id

This commit is contained in:
X1627315083
2025-09-23 16:03:08 +08:00
parent 29a68c2481
commit f59e2acdac
7 changed files with 49 additions and 16 deletions

View File

@@ -1818,7 +1818,19 @@ export default defineComponent({
},
getSkecthBoard(boardData: any) {
console.log(boardData,this.store.state.Workspace.probjects)
boardData = boardData || []
const mapB = new Map();
boardData.forEach(item => {
if (item.categoryValue !== undefined) {
mapB.set(item.categoryValue, true);
}
});
boardData.filter(item =>
item.categoryValue !== undefined && mapB.has(item.categoryValue)
);
console.log(boardData)
let sketchBoards = boardData.map((v: any) => {
let data = {
designType: v.resData.designType,