|  | @@ -471,9 +471,6 @@
 | 
	
		
			
				|  |  |                </el-select>
 | 
	
		
			
				|  |  |              </el-form-item>
 | 
	
		
			
				|  |  |            </el-col>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -        </el-row>
 | 
	
		
			
				|  |  | -        <el-row>
 | 
	
		
			
				|  |  |            <el-col :span="8">
 | 
	
		
			
				|  |  |              <el-form-item label="单据编号" prop="fBillno">
 | 
	
		
			
				|  |  |                <el-input
 | 
	
	
		
			
				|  | @@ -639,11 +636,13 @@
 | 
	
		
			
				|  |  |                <el-select
 | 
	
		
			
				|  |  |                  style="width: 80%"
 | 
	
		
			
				|  |  |                  v-model="form.fLabour"
 | 
	
		
			
				|  |  | +                @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  |                  :remote-method="flabourRemoteMethod"
 | 
	
		
			
				|  |  | -                filterable
 | 
	
		
			
				|  |  |                  remote
 | 
	
		
			
				|  |  | +                filterable
 | 
	
		
			
				|  |  |                  :disabled="contrOl"
 | 
	
		
			
				|  |  | -                placeholder="请输入劳务公司">
 | 
	
		
			
				|  |  | +                placeholder="请输入劳务公司"
 | 
	
		
			
				|  |  | +              >
 | 
	
		
			
				|  |  |                  <el-option
 | 
	
		
			
				|  |  |                    v-for="(dict, index) in fCompanyOptIons"
 | 
	
		
			
				|  |  |                    :key="index.fId"
 | 
	
	
		
			
				|  | @@ -2685,7 +2684,6 @@ export default {
 | 
	
		
			
				|  |  |        this.fleetOptions = response.data;
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |      treeselect().then(response => {
 | 
	
		
			
				|  |  | -      console.log(response)
 | 
	
		
			
				|  |  |        this.warehouseOptions = response.data
 | 
	
		
			
				|  |  |      })
 | 
	
		
			
				|  |  |      this.warehousesssMethod()
 | 
	
	
		
			
				|  | @@ -3373,6 +3371,15 @@ export default {
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 查询仓库主(出入库)列表 */
 | 
	
		
			
				|  |  |      getList() {
 | 
	
		
			
				|  |  | +      let queryParams = { pageNum: 1, pageSize: 10, fTypeid: 6}
 | 
	
		
			
				|  |  | +      listCorps(queryParams).then((response) => {
 | 
	
		
			
				|  |  | +        this.fCompanyOptIons = response.rows;
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +      let params = { pageNum: 1, pageSize: 10, fTypeid: 2}
 | 
	
		
			
				|  |  | +      listCorps(params).then((response) => {
 | 
	
		
			
				|  |  | +        console.log(response)
 | 
	
		
			
				|  |  | +        this.fleetOptions = response.rows;
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  |        this.loading = true;
 | 
	
		
			
				|  |  |        getStockTransferList(this.queryParams).then((response) => {
 | 
	
		
			
				|  |  |          this.warehousebillsList = response.rows;
 |