修改邮箱添加用户id
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user