修复用户指引

This commit is contained in:
X1627315083
2023-11-29 10:11:19 +08:00
parent 22df874f78
commit 4daa21d46b
4 changed files with 4 additions and 5 deletions

View File

@@ -869,7 +869,7 @@ export default defineComponent({
position: relative; position: relative;
height: 80%; height: 80%;
display: inline-block; display: inline-block;
width: 100%; // width: 100%;
.detail_modal_model{ .detail_modal_model{
z-index: 1; z-index: 1;
position: relative; position: relative;

View File

@@ -229,6 +229,7 @@ export default defineComponent({
let data = this.workspaceItem let data = this.workspaceItem
delete data.isLastIndex delete data.isLastIndex
this.putWorkspace(data,'') this.putWorkspace(data,'')
this.openType.model = false
// this.getDetail(this.workspaceItem.id) // this.getDetail(this.workspaceItem.id)
this.store.commit("setWorkspace", this.workspaceItem); this.store.commit("setWorkspace", this.workspaceItem);
} }

View File

@@ -201,7 +201,7 @@ export default defineComponent({
watch:{ watch:{
printBoards:{ printBoards:{
handler(newVal:any,oldVal:any){ handler(newVal:any,oldVal:any){
if(newVal.length>=2 && this.driver__.driver){ if(newVal.length>=2 && this.driver__.driver && newVal.length!=oldVal.length){
driverObj__.moveTo(9) driverObj__.moveTo(9)
} }
} }

View File

@@ -346,9 +346,7 @@ export default defineComponent({
}, },
sketchboardList:{ sketchboardList:{
handler(newVal:any,oldVal:any){ handler(newVal:any,oldVal:any){
if(newVal.length>=2 && this.driver__.driver){ if(newVal.length>=2 && this.driver__.driver&& newVal.length!=oldVal.length){
console.log(newVal);
driverObj__.moveTo(16) driverObj__.moveTo(16)
} }
} }