|  | @@ -318,7 +318,8 @@
 | 
	
		
			
				|  |  |          <el-table-column label="提单号" align="center" prop="fMblno" />
 | 
	
		
			
				|  |  |          <el-table-column label="业务日期" align="center" prop="fBsdate">
 | 
	
		
			
				|  |  |            <template slot-scope="scope">
 | 
	
		
			
				|  |  | -            <span>{{scope.row.fBsdate.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  | +            <span v-if="scope.row.fBsdate === undefined">无</span>
 | 
	
		
			
				|  |  | +            <span v-else>{{scope.row.fBsdate.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  |          <el-table-column label="费用名称" align="center" prop="fFeeName" />
 | 
	
	
		
			
				|  | @@ -351,12 +352,14 @@
 | 
	
		
			
				|  |  |          <el-table-column label="品牌" align="center" prop="fMarks" />
 | 
	
		
			
				|  |  |          <el-table-column label="计费起始日期" align="center" prop="fChargedate">
 | 
	
		
			
				|  |  |            <template slot-scope="scope">
 | 
	
		
			
				|  |  | -            <span>{{scope.row.fChargedate.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  | +            <span v-if="scope.row.fChargedate === undefined">无</span>
 | 
	
		
			
				|  |  | +            <span v-else>{{scope.row.fChargedate.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  |          <el-table-column label="计费截止日期" align="center" prop="fBillingDeadline">
 | 
	
		
			
				|  |  |            <template slot-scope="scope">
 | 
	
		
			
				|  |  | -            <span>{{scope.row.fBillingDeadline.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  | +            <span v-if="scope.row.fBillingDeadline === undefined">无</span>
 | 
	
		
			
				|  |  | +            <span v-else>{{scope.row.fBillingDeadline.slice(0, 10)}}</span>
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  |          <el-table-column label="计费天数" align="center" prop="fBillingDays" />
 |