|  | @@ -72,16 +72,17 @@
 | 
	
		
			
				|  |  |              <template slot="unitNo" slot-scope="{ row }">
 | 
	
		
			
				|  |  |                  <search-query v-if="row.editType" :datalist="unitNoData" :selectValue="row.unitNo" :filterable="true"
 | 
	
		
			
				|  |  |                      :clearable="true" :remote="true" :buttonIf="false" placeholder="请选择计量单位"
 | 
	
		
			
				|  |  | -                    :forParameter="{ key: 'id', label: 'code', value: 'code', disabled: 'status' }" @corpFocus="getBunitsPagefun"
 | 
	
		
			
				|  |  | -                    @corpChange="corpChange($event, 'unitNo', row)">
 | 
	
		
			
				|  |  | +                    :forParameter="{ key: 'id', label: 'code', value: 'code', disabled: 'status' }"
 | 
	
		
			
				|  |  | +                    @corpFocus="getBunitsPagefun" @corpChange="corpChange($event, 'unitNo', row)">
 | 
	
		
			
				|  |  |                  </search-query>
 | 
	
		
			
				|  |  |                  <span v-else>{{ row.unitNo }}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |              <template slot="curCode" slot-scope="{ row }">
 | 
	
		
			
				|  |  |                  <search-query v-if="row.editType" :datalist="curCodeData" :selectValue="row.curCode" :filterable="true"
 | 
	
		
			
				|  |  |                      :clearable="true" :remote="true" :buttonIf="false" placeholder="请选择币种"
 | 
	
		
			
				|  |  | -                    :forParameter="{ key: 'id', label: 'code', value: 'code' }" @remoteMethod="bcurrencyGetExratefun(row.dc)"
 | 
	
		
			
				|  |  | -                    @corpChange="corpChange($event, 'curCode', row)" @corpFocus="bcurrencyGetExratefun(row.dc)">
 | 
	
		
			
				|  |  | +                    :forParameter="{ key: 'id', label: 'code', value: 'code' }"
 | 
	
		
			
				|  |  | +                    @remoteMethod="bcurrencyGetExratefun(row.dc)" @corpChange="corpChange($event, 'curCode', row)"
 | 
	
		
			
				|  |  | +                    @corpFocus="bcurrencyGetExratefun(row.dc)">
 | 
	
		
			
				|  |  |                  </search-query>
 | 
	
		
			
				|  |  |                  <span v-else>{{ row.curCode }}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
	
		
			
				|  | @@ -771,7 +772,8 @@ export default {
 | 
	
		
			
				|  |  |          bcurrencyGetExratefun(dc) {
 | 
	
		
			
				|  |  |              bcurrencyGetExrate({
 | 
	
		
			
				|  |  |                  date: this.form.etd ? this.form.etd.slice(0, 10) + ' 00:00:00' : dateFormat(new Date(), "yyyy-MM-dd") + ' 00:00:00', // 开船日期
 | 
	
		
			
				|  |  | -                dc: dc
 | 
	
		
			
				|  |  | +                dc: dc,
 | 
	
		
			
				|  |  | +                type: 1
 | 
	
		
			
				|  |  |              }).then(res => {
 | 
	
		
			
				|  |  |                  this.curCodeData = res.data.data
 | 
	
		
			
				|  |  |              })
 |