| 
					
				 | 
			
			
				@@ -47,6 +47,8 @@ class PQStuckPointPublicController: PQBaseViewController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     // 导出进度 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private var exportProgrss = 0 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     var mStickers: [PQEditVisionTrackMaterialsModel]? 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    var remindView:PQRemindView? 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     // 预览大小 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     private var preViewSize: CGSize { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         switch aspectRatio { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -269,14 +271,14 @@ class PQStuckPointPublicController: PQBaseViewController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             view.endEditing(true) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             let remindData = PQBaseModel() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             remindData.title = "编辑的内容,将不会被保存" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            let remindView = PQRemindView(frame: CGRect(x: 0, y: 0, width: cScreenWidth, height: cScreenHeigth)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.isBanned = true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.confirmBtn.setTitle("确认", for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.cancelBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#333333"), for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.confirmBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#EE0051"), for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            UIApplication.shared.keyWindow?.addSubview(remindView) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.remindData = remindData 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            remindView.remindBlock = { [weak self] item, _ in 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView = PQRemindView(frame: CGRect(x: 0, y: 0, width: cScreenWidth, height: cScreenHeigth)) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.isBanned = true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.confirmBtn.setTitle("确认", for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.cancelBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#333333"), for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.confirmBtn.setTitleColor(UIColor.hexColor(hexadecimal: "#EE0051"), for: .normal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            UIApplication.shared.keyWindow?.addSubview(remindView!) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.remindData = remindData 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            remindView?.remindBlock = { [weak self] item, _ in 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 if item.tag == 2 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     // 取消导出 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     if self?.exporter != nil { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -448,6 +450,7 @@ extension PQStuckPointPublicController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if self?.exporter != nil { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 self?.exporter.cancel() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            self?.remindView?.removeFromSuperview() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if !(self?.isExportSuccess ?? false) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 self?.isExportSuccess = true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 self?.exportEndDate = Date().timeIntervalSince1970 
			 |