|  | @@ -261,7 +261,7 @@
 | 
	
		
			
				|  |  |          <template slot-scope="scope">
 | 
	
		
			
				|  |  |            <span v-if="scope.row.fItemsStatus === 1">计划</span>
 | 
	
		
			
				|  |  |            <span v-if="scope.row.fItemsStatus === 2">卸货中</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fItemsStatus === 3">已卸货</span>
 | 
	
		
			
				|  |  | +          <span v-if="scope.row.fItemsStatus === 3">已装货</span>
 | 
	
		
			
				|  |  |            <span v-if="scope.row.fItemsStatus === 4">已入库</span>
 | 
	
		
			
				|  |  |          </template>
 | 
	
		
			
				|  |  |        </el-table-column>
 | 
	
	
		
			
				|  | @@ -334,6 +334,7 @@
 | 
	
		
			
				|  |  |      <el-dialog
 | 
	
		
			
				|  |  |        :visible.sync="open"
 | 
	
		
			
				|  |  |        :close-on-click-modal="false"
 | 
	
		
			
				|  |  | +      @close='addCloseDialog'
 | 
	
		
			
				|  |  |        width="80%"
 | 
	
		
			
				|  |  |        append-to-body
 | 
	
		
			
				|  |  |      >
 | 
	
	
		
			
				|  | @@ -1036,7 +1037,7 @@
 | 
	
		
			
				|  |  |            <template slot-scope="scope">
 | 
	
		
			
				|  |  |              <span v-if="scope.row.fBillstatus === 40">已出库</span>
 | 
	
		
			
				|  |  |              <span v-if="scope.row.fBillstatus === 20">卸货中</span>
 | 
	
		
			
				|  |  | -            <span v-if="scope.row.fBillstatus === 30">已卸货</span>
 | 
	
		
			
				|  |  | +            <span v-if="scope.row.fBillstatus === 30">已装货</span>
 | 
	
		
			
				|  |  |              <span v-if="scope.row.fBillstatus === 10">计划</span>
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
	
		
			
				|  | @@ -2468,6 +2469,10 @@ export default {
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  | +    //关闭弹框的事件
 | 
	
		
			
				|  |  | +    addCloseDialog(){    
 | 
	
		
			
				|  |  | +      this.getList()
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      // 上传成功返回数据
 | 
	
		
			
				|  |  |      showFile(row) {
 | 
	
		
			
				|  |  |        for(let list in this.relevantAttachments) {
 |