|  | @@ -258,10 +258,10 @@ function setModelPostion(item: any, x: number, y: number) {
 | 
	
		
			
				|  |  |  		} else {
 | 
	
		
			
				|  |  |  			/** 如果是app内嵌打开,需要通过rem转换 */
 | 
	
		
			
				|  |  |  			let tsX = x, tsY = y;
 | 
	
		
			
				|  |  | -			if (storeData.isApp && (item.xRem || item.yRem)) {
 | 
	
		
			
				|  |  | -				tsX = item.xRem * clientWidth/10
 | 
	
		
			
				|  |  | -				tsY = item.yRem * clientWidth/10
 | 
	
		
			
				|  |  | -			}
 | 
	
		
			
				|  |  | +			// if (storeData.isApp && (item.xRem || item.yRem)) {
 | 
	
		
			
				|  |  | +			// 	tsX = item.xRem * clientWidth/10
 | 
	
		
			
				|  |  | +			// 	tsY = item.yRem * clientWidth/10
 | 
	
		
			
				|  |  | +			// }
 | 
	
		
			
				|  |  |  			g && g.setAttribute("transform", `translate(${tsX / moveData.zoom}, ${tsY / moveData.zoom})`);
 | 
	
		
			
				|  |  |  			el && (el.style.transform = `translate(${tsX}px, ${tsY}px)`);
 | 
	
		
			
				|  |  |  		}
 |