|  | @@ -440,6 +440,8 @@ export default {
 | 
	
		
			
				|  |  |        showSearch: true,
 | 
	
		
			
				|  |  |        // 总条数
 | 
	
		
			
				|  |  |        total: 0,
 | 
	
		
			
				|  |  | +      //提单号暂存
 | 
	
		
			
				|  |  | +      fMblno:'',
 | 
	
		
			
				|  |  |        // 财务数据主表格数据
 | 
	
		
			
				|  |  |        chargeList: [],
 | 
	
		
			
				|  |  |        // 弹出层标题
 | 
	
	
		
			
				|  | @@ -533,10 +535,14 @@ export default {
 | 
	
		
			
				|  |  |          console.log('未选择')//写入提示
 | 
	
		
			
				|  |  |        } else {
 | 
	
		
			
				|  |  |          console.log(this.selection[0].fMblno)
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          for (let item in this.selection){
 | 
	
		
			
				|  |  |            console.log(this.selection[item])
 | 
	
		
			
				|  |  |            console.log(this.selection[item].fMblno)
 | 
	
		
			
				|  |  | +          if(item > 1){
 | 
	
		
			
				|  |  | +            this.fMblno = this.selection[item].fMblno + "..."
 | 
	
		
			
				|  |  | +          }else if(item == 0){
 | 
	
		
			
				|  |  | +            this.fMblno = this.selection[item].fMblno
 | 
	
		
			
				|  |  | +          }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          this.increase_s = this.selection
 | 
	
		
			
				|  |  |          this.innerVisible = false
 | 
	
	
		
			
				|  | @@ -689,6 +695,7 @@ export default {
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 提交按钮 */
 | 
	
		
			
				|  |  |      submitForm() {
 | 
	
		
			
				|  |  | +      console.log(this.queryParameter)
 | 
	
		
			
				|  |  |        this.$refs['ruless'].validate(valid => {
 | 
	
		
			
				|  |  |          console.log(valid)
 | 
	
		
			
				|  |  |          if (valid) {
 |