|  | @@ -269,6 +269,7 @@ module.exports = app => {
 | 
	
		
			
				|  |  |           * @return {Promise<boolean>} - 结果
 | 
	
		
			
				|  |  |           */
 | 
	
		
			
				|  |  |          async deleteTenderNoBackup(id) {
 | 
	
		
			
				|  |  | +            this.ctx.query_tender = await this.ctx.service.tender.getDataById(id);
 | 
	
		
			
				|  |  |              const transaction = await this.db.beginTransaction();
 | 
	
		
			
				|  |  |              try {
 | 
	
		
			
				|  |  |                  const tenderMsg = await this.getDataById(id);
 | 
	
	
		
			
				|  | @@ -337,6 +338,7 @@ module.exports = app => {
 | 
	
		
			
				|  |  |                  await transaction.rollback();
 | 
	
		
			
				|  |  |                  return false;
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | +            this.ctx.query_tender = null;
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          /**
 |