|  | @@ -10,14 +10,14 @@
 | 
	
		
			
				|  |  |                  <el-button class="el-button--small-yh" type="primary" size="small"
 | 
	
		
			
				|  |  |                      v-if="form.id" @click="confirmEditing">编辑
 | 
	
		
			
				|  |  |                  </el-button>
 | 
	
		
			
				|  |  | -                <el-button class="el-button--small-yh" type="primary" size="small" v-if="form.statusName != '已入库'"
 | 
	
		
			
				|  |  | +                <el-button class="el-button--small-yh" type="primary" :disabled="isButton" size="small" v-if="form.statusName != '已入库'"
 | 
	
		
			
				|  |  |                      @click="editCustomer">保存数据
 | 
	
		
			
				|  |  |                  </el-button>
 | 
	
		
			
				|  |  |                  <el-button class="el-button--small-yh" type="success" size="small"
 | 
	
		
			
				|  |  | -                    v-if="form.statusName == '待入库' || form.statusName == '已撤销'" @click="complete">入库完成
 | 
	
		
			
				|  |  | +                    v-if="form.statusName == '待入库' || form.statusName == '已撤销'" @click="complete" :disabled="isButton">入库完成
 | 
	
		
			
				|  |  |                  </el-button>
 | 
	
		
			
				|  |  |                  <el-button class="el-button--small-yh" type="success" size="small" v-if="form.statusName == '已入库'"
 | 
	
		
			
				|  |  | -                    @click="revoke">撤销入库
 | 
	
		
			
				|  |  | +                    @click="revoke" :disabled="isButton">撤销入库
 | 
	
		
			
				|  |  |                  </el-button>
 | 
	
		
			
				|  |  |              </div>
 | 
	
		
			
				|  |  |          </div>
 | 
	
	
		
			
				|  | @@ -109,6 +109,7 @@ export default {
 | 
	
		
			
				|  |  |              switchDialog: false,
 | 
	
		
			
				|  |  |              isEdit:false,
 | 
	
		
			
				|  |  |              isEdits:false,
 | 
	
		
			
				|  |  | +            isButton:false,
 | 
	
		
			
				|  |  |              activeName: "sale_detail",
 | 
	
		
			
				|  |  |              disabled: false,
 | 
	
		
			
				|  |  |              isrowAdd: true,
 | 
	
	
		
			
				|  | @@ -596,6 +597,7 @@ export default {
 | 
	
		
			
				|  |  |          this.optionPaymentDetails = await this.getColumnData(this.getColumnName(274.2), this.optionPaymentDetailsBack);
 | 
	
		
			
				|  |  |          this.optionOutboundRecords = await this.getColumnData(this.getColumnName(274.3), this.optionOutboundRecordsBack);
 | 
	
		
			
				|  |  |          this.key++
 | 
	
		
			
				|  |  | +        this.isButton = true
 | 
	
		
			
				|  |  |          if (this.onLoad.id && this.detailData.id) {
 | 
	
		
			
				|  |  |              this.refresh(this.onLoad.id, true)
 | 
	
		
			
				|  |  |              this.$set(this.optionForm, 'disabled', true)
 | 
	
	
		
			
				|  | @@ -679,6 +681,7 @@ export default {
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          //编辑
 | 
	
		
			
				|  |  |          confirmEditing() {
 | 
	
		
			
				|  |  | +            this.isButton = false
 | 
	
		
			
				|  |  |              if (this.form.statusName == '待入库') {
 | 
	
		
			
				|  |  |                  this.isEdit = false
 | 
	
		
			
				|  |  |                  this.isrowAdd = false
 |