|  | @@ -7,173 +7,164 @@
 | 
	
		
			
				|  |  |        v-show="showSearch"
 | 
	
		
			
				|  |  |        label-width="88px"
 | 
	
		
			
				|  |  |      >
 | 
	
		
			
				|  |  | -      <el-form-item label="业务编号" prop="fBillno">
 | 
	
		
			
				|  |  | -        <el-input
 | 
	
		
			
				|  |  | -          v-model="queryParams.fBillno"
 | 
	
		
			
				|  |  | -          placeholder="请输入业务编号"
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          size="small"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -        />
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="制单人" prop="createBy">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.createBy"
 | 
	
		
			
				|  |  | -          filterable
 | 
	
		
			
				|  |  | -          remote
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          :remote-method="userRemoteMethod"
 | 
	
		
			
				|  |  | -          placeholder="请选择制单人"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in userOptions"
 | 
	
		
			
				|  |  | -            :key="index.userName"
 | 
	
		
			
				|  |  | -            :label="dict.nickName"
 | 
	
		
			
				|  |  | -            :value="dict.userName"
 | 
	
		
			
				|  |  | -          ></el-option>
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="入库日期" prop="timeInterval">
 | 
	
		
			
				|  |  | -        <el-date-picker
 | 
	
		
			
				|  |  | -          v-model="queryParams.timeInterval"
 | 
	
		
			
				|  |  | -          type="daterange"
 | 
	
		
			
				|  |  | -          value-format="yyyy-MM-dd"
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 60%"
 | 
	
		
			
				|  |  | -          range-separator="至"
 | 
	
		
			
				|  |  | -          start-placeholder="开始日期"
 | 
	
		
			
				|  |  | -          end-placeholder="结束日期"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -        </el-date-picker>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -      <el-form-item label="贸易方式" prop="fTrademodeid">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.fTrademodeid"
 | 
	
		
			
				|  |  | -          placeholder="请选择贸易方式"
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in fTrademodeidOptions"
 | 
	
		
			
				|  |  | -            :key="index.dictValue"
 | 
	
		
			
				|  |  | -            :label="dict.dictLabel"
 | 
	
		
			
				|  |  | -            :value="dict.dictValue"
 | 
	
		
			
				|  |  | +        <el-form-item label="业务编号" prop="fBillno">
 | 
	
		
			
				|  |  | +          <el-input
 | 
	
		
			
				|  |  | +            v-model="queryParams.fBillno"
 | 
	
		
			
				|  |  | +            placeholder="请输入业务编号"
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            size="small"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  |            />
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="货权方" prop="fCorpid">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.fCorpid"
 | 
	
		
			
				|  |  | -          filterable
 | 
	
		
			
				|  |  | -          remote
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -          :remote-method="corpsRemoteMethod"
 | 
	
		
			
				|  |  | -          placeholder="请输入模糊查找"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in fMblnoOptions"
 | 
	
		
			
				|  |  | -            :key="index.fId"
 | 
	
		
			
				|  |  | -            :label="dict.fName"
 | 
	
		
			
				|  |  | -            :value="dict.fId"
 | 
	
		
			
				|  |  | -          ></el-option>
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="提单号" prop="fMblno">
 | 
	
		
			
				|  |  | -        <el-input
 | 
	
		
			
				|  |  | -          v-model="queryParams.fMblno"
 | 
	
		
			
				|  |  | -          placeholder="请输入提单号"
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          size="small"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -        />
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="经营单位" prop="fSbu">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.fSbu"
 | 
	
		
			
				|  |  | -          filterable
 | 
	
		
			
				|  |  | -          remote
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          :remote-method="fSbuRemoteMethod"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          placeholder="请选择经营单位"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in fMblnoOptions"
 | 
	
		
			
				|  |  | -            :key="index.fId"
 | 
	
		
			
				|  |  | -            :label="dict.fName"
 | 
	
		
			
				|  |  | -            :value="dict.fId"
 | 
	
		
			
				|  |  | -          ></el-option>
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="货物名称" prop="fGoodsid">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.fGoodsid"
 | 
	
		
			
				|  |  | -          filterable
 | 
	
		
			
				|  |  | -          remote
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          :remote-method="goodsRemoteMethod"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -          placeholder="请选择货物名称"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in goodsOptions"
 | 
	
		
			
				|  |  | -            :key="index.fId"
 | 
	
		
			
				|  |  | -            :label="dict.fName"
 | 
	
		
			
				|  |  | -            :value="dict.fId"
 | 
	
		
			
				|  |  | -          ></el-option>
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="仓库" prop="fWarehouseid">
 | 
	
		
			
				|  |  | -        <el-select
 | 
	
		
			
				|  |  | -          v-model="queryParams.fWarehouseid"
 | 
	
		
			
				|  |  | -          filterable
 | 
	
		
			
				|  |  | -          remote
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          :remote-method="warehouseRemoteMethod"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -          placeholder="请输入"
 | 
	
		
			
				|  |  | -        >
 | 
	
		
			
				|  |  | -          <el-option
 | 
	
		
			
				|  |  | -            v-for="(dict, index) in warehouseOptions"
 | 
	
		
			
				|  |  | -            :key="index.fId"
 | 
	
		
			
				|  |  | -            :label="dict.fName"
 | 
	
		
			
				|  |  | -            :value="dict.fId"
 | 
	
		
			
				|  |  | -          ></el-option>
 | 
	
		
			
				|  |  | -        </el-select>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="品牌" prop="fMarks">
 | 
	
		
			
				|  |  | -        <el-input
 | 
	
		
			
				|  |  | -          v-model="queryParams.fMarks"
 | 
	
		
			
				|  |  | -          placeholder="请输入品牌"
 | 
	
		
			
				|  |  | -          clearable
 | 
	
		
			
				|  |  | -          style="width: 80%"
 | 
	
		
			
				|  |  | -          size="small"
 | 
	
		
			
				|  |  | -          @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | -        />
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item>
 | 
	
		
			
				|  |  | -        <el-button
 | 
	
		
			
				|  |  | -          type="cyan"
 | 
	
		
			
				|  |  | -          icon="el-icon-search"
 | 
	
		
			
				|  |  | -          size="mini"
 | 
	
		
			
				|  |  | -          @click="handleQuery"
 | 
	
		
			
				|  |  | -        >搜索
 | 
	
		
			
				|  |  | -        </el-button>
 | 
	
		
			
				|  |  | -        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
 | 
	
		
			
				|  |  | -        >重置
 | 
	
		
			
				|  |  | -        </el-button>
 | 
	
		
			
				|  |  | -      </el-form-item>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="制单人" prop="createBy">
 | 
	
		
			
				|  |  | +          <el-select
 | 
	
		
			
				|  |  | +            v-model="queryParams.createBy"
 | 
	
		
			
				|  |  | +            filterable
 | 
	
		
			
				|  |  | +            remote
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            :remote-method="userRemoteMethod"
 | 
	
		
			
				|  |  | +            placeholder="请选择制单人"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-option
 | 
	
		
			
				|  |  | +              v-for="(dict, index) in userOptions"
 | 
	
		
			
				|  |  | +              :key="index.userName"
 | 
	
		
			
				|  |  | +              :label="dict.nickName"
 | 
	
		
			
				|  |  | +              :value="dict.userName"
 | 
	
		
			
				|  |  | +            ></el-option>
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="入库日期" prop="timeInterval">
 | 
	
		
			
				|  |  | +          <el-date-picker
 | 
	
		
			
				|  |  | +            v-model="queryParams.timeInterval"
 | 
	
		
			
				|  |  | +            type="daterange"
 | 
	
		
			
				|  |  | +            value-format="yyyy-MM-dd"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 60%"
 | 
	
		
			
				|  |  | +            range-separator="至"
 | 
	
		
			
				|  |  | +            start-placeholder="开始日期"
 | 
	
		
			
				|  |  | +            end-placeholder="结束日期"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +          </el-date-picker>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="贸易方式" prop="fTrademodeid">
 | 
	
		
			
				|  |  | +          <el-select
 | 
	
		
			
				|  |  | +            v-model="queryParams.fTrademodeid"
 | 
	
		
			
				|  |  | +            placeholder="请选择贸易方式"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-option
 | 
	
		
			
				|  |  | +              v-for="(dict, index) in fTrademodeidOptions"
 | 
	
		
			
				|  |  | +              :key="index.dictValue"
 | 
	
		
			
				|  |  | +              :label="dict.dictLabel"
 | 
	
		
			
				|  |  | +              :value="dict.dictValue"
 | 
	
		
			
				|  |  | +            />
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="货权方" prop="fCorpid">
 | 
	
		
			
				|  |  | +          <el-select
 | 
	
		
			
				|  |  | +            v-model="queryParams.fCorpid"
 | 
	
		
			
				|  |  | +            filterable
 | 
	
		
			
				|  |  | +            remote
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +            :remote-method="corpsRemoteMethod"
 | 
	
		
			
				|  |  | +            placeholder="请输入模糊查找"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-option
 | 
	
		
			
				|  |  | +              v-for="(dict, index) in fMblnoOptions"
 | 
	
		
			
				|  |  | +              :key="index.fId"
 | 
	
		
			
				|  |  | +              :label="dict.fName"
 | 
	
		
			
				|  |  | +              :value="dict.fId"
 | 
	
		
			
				|  |  | +            ></el-option>
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="提单号" prop="fMblno">
 | 
	
		
			
				|  |  | +          <el-input
 | 
	
		
			
				|  |  | +            v-model="queryParams.fMblno"
 | 
	
		
			
				|  |  | +            placeholder="请输入提单号"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            size="small"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +          />
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="经营单位" prop="fSbu">
 | 
	
		
			
				|  |  | +          <el-select
 | 
	
		
			
				|  |  | +            v-model="queryParams.fSbu"
 | 
	
		
			
				|  |  | +            filterable
 | 
	
		
			
				|  |  | +            remote
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            :remote-method="fSbuRemoteMethod"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            placeholder="请选择经营单位"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-option
 | 
	
		
			
				|  |  | +              v-for="(dict, index) in fMblnoOptions"
 | 
	
		
			
				|  |  | +              :key="index.fId"
 | 
	
		
			
				|  |  | +              :label="dict.fName"
 | 
	
		
			
				|  |  | +              :value="dict.fId"
 | 
	
		
			
				|  |  | +            ></el-option>
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="货物名称" prop="fGoodsid">
 | 
	
		
			
				|  |  | +          <el-select
 | 
	
		
			
				|  |  | +            v-model="queryParams.fGoodsid"
 | 
	
		
			
				|  |  | +            filterable
 | 
	
		
			
				|  |  | +            remote
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            :remote-method="goodsRemoteMethod"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +            placeholder="请选择货物名称"
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  | +            <el-option
 | 
	
		
			
				|  |  | +              v-for="(dict, index) in goodsOptions"
 | 
	
		
			
				|  |  | +              :key="index.fId"
 | 
	
		
			
				|  |  | +              :label="dict.fName"
 | 
	
		
			
				|  |  | +              :value="dict.fId"
 | 
	
		
			
				|  |  | +            ></el-option>
 | 
	
		
			
				|  |  | +          </el-select>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="仓库" prop="fWarehouseid">
 | 
	
		
			
				|  |  | +            <treeselect style="width:160px"
 | 
	
		
			
				|  |  | +                        v-model="queryParams.fWarehouselocid"
 | 
	
		
			
				|  |  | +                        :options="fWarehouseidOption"
 | 
	
		
			
				|  |  | +                        @select="treeseLect"
 | 
	
		
			
				|  |  | +                        :show-count="true"
 | 
	
		
			
				|  |  | +                        :disable-branch-nodes="true"
 | 
	
		
			
				|  |  | +                        placeholder="请选择归属库区" />
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item label="品牌" prop="fMarks">
 | 
	
		
			
				|  |  | +          <el-input
 | 
	
		
			
				|  |  | +            v-model="queryParams.fMarks"
 | 
	
		
			
				|  |  | +            placeholder="请输入品牌"
 | 
	
		
			
				|  |  | +            clearable
 | 
	
		
			
				|  |  | +            style="width: 80%"
 | 
	
		
			
				|  |  | +            size="small"
 | 
	
		
			
				|  |  | +            @keyup.enter.native="handleQuery"
 | 
	
		
			
				|  |  | +          />
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +        <el-form-item>
 | 
	
		
			
				|  |  | +          <el-button
 | 
	
		
			
				|  |  | +            type="cyan"
 | 
	
		
			
				|  |  | +            icon="el-icon-search"
 | 
	
		
			
				|  |  | +            size="mini"
 | 
	
		
			
				|  |  | +            @click="handleQuery"
 | 
	
		
			
				|  |  | +          >搜索
 | 
	
		
			
				|  |  | +          </el-button>
 | 
	
		
			
				|  |  | +          <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
 | 
	
		
			
				|  |  | +          >重置
 | 
	
		
			
				|  |  | +          </el-button>
 | 
	
		
			
				|  |  | +        </el-form-item>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +      </el-row>
 | 
	
		
			
				|  |  |      </el-form>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <el-row :gutter="10" class="mb8">
 | 
	
	
		
			
				|  | @@ -2970,6 +2961,8 @@ export default {
 | 
	
		
			
				|  |  |        },
 | 
	
		
			
				|  |  |        // 部门树选项
 | 
	
		
			
				|  |  |        fWarehouseidOptions:[],
 | 
	
		
			
				|  |  | +      fWarehouseIdOptions:[],
 | 
	
		
			
				|  |  | +      fWarehouseidOption:[],
 | 
	
		
			
				|  |  |        activeNames:['1'],
 | 
	
		
			
				|  |  |        isrequired:2,
 | 
	
		
			
				|  |  |        isrequired_s:2,
 | 
	
	
		
			
				|  | @@ -3153,6 +3146,7 @@ export default {
 | 
	
		
			
				|  |  |        choiceWarehouse:false,
 | 
	
		
			
				|  |  |        // 查询参数
 | 
	
		
			
				|  |  |        queryParams: {
 | 
	
		
			
				|  |  | +        fWarehouselocid:null,
 | 
	
		
			
				|  |  |          pageNum: 1,
 | 
	
		
			
				|  |  |          pageSize: 10,
 | 
	
		
			
				|  |  |          fBillno: null,
 | 
	
	
		
			
				|  | @@ -3308,6 +3302,9 @@ export default {
 | 
	
		
			
				|  |  |      this.getDicts("data_customer_category").then(response => {
 | 
	
		
			
				|  |  |        this.fleetOptions = response.data;
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  | +    treeselect().then(response => {
 | 
	
		
			
				|  |  | +      this.fWarehouseidOption = response.data
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    activated() {
 | 
	
		
			
				|  |  |      this.adoPt()
 | 
	
	
		
			
				|  | @@ -3322,12 +3319,17 @@ export default {
 | 
	
		
			
				|  |  |        this.addAgreements(key)
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 查询部门下拉树结构 */
 | 
	
		
			
				|  |  | +    treeseLect(tree){
 | 
	
		
			
				|  |  | +      this.queryParams.fWarehouselocid = tree.id
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      getTreeselect(row) {
 | 
	
		
			
				|  |  |        this.treeselectList.fWarehouselocid = null
 | 
	
		
			
				|  |  |        this.inDex = row.$index
 | 
	
		
			
				|  |  |        this.choiceWarehouse = true
 | 
	
		
			
				|  |  |        treeselect(this.form.fWarehouseid).then(response => {
 | 
	
		
			
				|  |  | +        console.log(response)
 | 
	
		
			
				|  |  |          this.fWarehouseidOptions = response.data;
 | 
	
		
			
				|  |  | +        this.fWarehouseidOption = response.data;
 | 
	
		
			
				|  |  |        })
 | 
	
		
			
				|  |  |        this.Warehouse = this.dataList[this.inDex].fWarehouseInformation
 | 
	
		
			
				|  |  |      },
 |