Merge remote-tracking branch 'origin/StableVersion' into develop

This commit is contained in:
X1627315083
2024-09-25 11:14:55 +08:00
12 changed files with 160 additions and 105 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
}
})