|  | @@ -138,15 +138,15 @@ export default {
 | 
	
		
			
				|  |  |                          spinner: 'el-icon-loading',
 | 
	
		
			
				|  |  |                          background: 'rgba(255,255,255,0.7)'
 | 
	
		
			
				|  |  |                      });
 | 
	
		
			
				|  |  | -                    let obj={
 | 
	
		
			
				|  |  | +                    let obj = {
 | 
	
		
			
				|  |  |                          ...this.bigObj,
 | 
	
		
			
				|  |  | -                        periodVouchersTemplate:this.form
 | 
	
		
			
				|  |  | +                        periodVouchersTemplate: this.form
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  |                      submit(obj).then(res => {
 | 
	
		
			
				|  |  |                          this.form = res.data.data
 | 
	
		
			
				|  |  |                          this.$message.success("保存成功");
 | 
	
		
			
				|  |  |                          this.editButton = true;
 | 
	
		
			
				|  |  | -                        this.getDetail(this.form.periodVouchersTemplate.id,this.form.periodVouchersTemplate.bsType)
 | 
	
		
			
				|  |  | +                        this.getDetail(this.form.periodVouchersTemplate.id, this.form.periodVouchersTemplate.bsType)
 | 
	
		
			
				|  |  |                      }).finally(() => {
 | 
	
		
			
				|  |  |                          loading.close();
 | 
	
		
			
				|  |  |                      });
 | 
	
	
		
			
				|  | @@ -169,7 +169,13 @@ export default {
 | 
	
		
			
				|  |  |                  loading.close();
 | 
	
		
			
				|  |  |              }).catch(() => {
 | 
	
		
			
				|  |  |                  loading.close();
 | 
	
		
			
				|  |  | -            })
 | 
	
		
			
				|  |  | +            }).finally(() => {
 | 
	
		
			
				|  |  | +                this.form.accItems.forEach((e, index) => {
 | 
	
		
			
				|  |  | +                    if (e.selected == 'true') {
 | 
	
		
			
				|  |  | +                        this.$refs.crud.toggleRowSelection(e);
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                })
 | 
	
		
			
				|  |  | +            });
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          importData() {
 | 
	
		
			
				|  |  |              this.$confirm('是否导入科目明细总账?', '提示', {
 |