|  |  |  | @ -175,8 +175,6 @@ export default { | 
			
		
	
		
			
				
					|  |  |  |  |                     this.loading = false; | 
			
		
	
		
			
				
					|  |  |  |  |                     this.list = response.data.list || []; | 
			
		
	
		
			
				
					|  |  |  |  |                     this.total = response.data.total || 0; | 
			
		
	
		
			
				
					|  |  |  |  |                     console.log('------------') | 
			
		
	
		
			
				
					|  |  |  |  |                     console.log(response) | 
			
		
	
		
			
				
					|  |  |  |  |                 }) | 
			
		
	
		
			
				
					|  |  |  |  |                 .catch(() => { | 
			
		
	
		
			
				
					|  |  |  |  |                     this.loading = false; | 
			
		
	
	
		
			
				
					|  |  |  | @ -214,15 +212,17 @@ export default { | 
			
		
	
		
			
				
					|  |  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |  |         }, | 
			
		
	
		
			
				
					|  |  |  |  |         formSubmit() { | 
			
		
	
		
			
				
					|  |  |  |  |             if (!Number.isInteger(parseInt(this.formData.paramValue))) { | 
			
		
	
		
			
				
					|  |  |  |  |                 this.$message.warning("参数值必须为数字"); | 
			
		
	
		
			
				
					|  |  |  |  |                 return; | 
			
		
	
		
			
				
					|  |  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |  |             this.$refs["dataForm"].validate(valid => { | 
			
		
	
		
			
				
					|  |  |  |  |                 if (valid) { | 
			
		
	
		
			
				
					|  |  |  |  |                     this.formLoading = true; | 
			
		
	
		
			
				
					|  |  |  |  |                     let data = Object.assign({}, this.formData); | 
			
		
	
		
			
				
					|  |  |  |  |                     console.log('------2------') | 
			
		
	
		
			
				
					|  |  |  |  |                     data.paramValue = data.paramValue.trim(); | 
			
		
	
		
			
				
					|  |  |  |  |                     systemParamConfigSave(data, this.formName) | 
			
		
	
		
			
				
					|  |  |  |  |                         .then(response => { | 
			
		
	
		
			
				
					|  |  |  |  |                             console.log(response) | 
			
		
	
		
			
				
					|  |  |  |  |                             this.formLoading = false; | 
			
		
	
		
			
				
					|  |  |  |  |                             if (response.code !== 20000) { | 
			
		
	
		
			
				
					|  |  |  |  |                                 this.$message.error(response.message); | 
			
		
	
	
		
			
				
					|  |  |  | 
 |