修复部分bug

This commit is contained in:
wxd
2024-09-13 21:26:17 +08:00
parent 01b0fa0b7e
commit 6393952e52
11 changed files with 108 additions and 94 deletions

View File

@@ -235,13 +235,13 @@ export default defineComponent({
let arr:any = []
rv.forEach((item:any) => {
arr.push({
name:item.name,
value:item.value,
name:item.value,
value:item.name,
})
});
this.designType = rv[0]
this.editDesignType = rv[0]
this.disignTypeList = rv
this.designType = arr[0]
this.editDesignType = arr[0]
this.disignTypeList = arr
// this.workspaceItem.position = this.singleTypeList[0].label
}
})