|  | @@ -655,7 +655,7 @@
 | 
	
		
			
				|  |  |                  :disabled="contrOl"
 | 
	
		
			
				|  |  |                  placeholder="请输入劳务公司">
 | 
	
		
			
				|  |  |                  <el-option
 | 
	
		
			
				|  |  | -                  v-for="(dict, index) in fSbuOptions"
 | 
	
		
			
				|  |  | +                  v-for="(dict, index) in fLabourOptions"
 | 
	
		
			
				|  |  |                    :key="index.fId"
 | 
	
		
			
				|  |  |                    :label="dict.fName"
 | 
	
		
			
				|  |  |                    :value="dict.fId"
 | 
	
	
		
			
				|  | @@ -681,7 +681,7 @@
 | 
	
		
			
				|  |  |                  placeholder="请输入车队">
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |                  <el-option
 | 
	
		
			
				|  |  | -                  v-for="(dict, index) in fSbuOptions"
 | 
	
		
			
				|  |  | +                  v-for="(dict, index) in fLeetOptions"
 | 
	
		
			
				|  |  |                    :key="index.fId"
 | 
	
		
			
				|  |  |                    :label="dict.fName"
 | 
	
		
			
				|  |  |                    :value="dict.fId"
 | 
	
	
		
			
				|  | @@ -2967,6 +2967,8 @@ export default {
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    data() {
 | 
	
		
			
				|  |  |      return {
 | 
	
		
			
				|  |  | +      fLabourOptions:[],
 | 
	
		
			
				|  |  | +      fLeetOptions:[],
 | 
	
		
			
				|  |  |        information:'',
 | 
	
		
			
				|  |  |        informationId:'',
 | 
	
		
			
				|  |  |        inDex:'',
 | 
	
	
		
			
				|  | @@ -3315,8 +3317,6 @@ export default {
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      handleSelect(key, keyPath) {
 | 
	
		
			
				|  |  | -      console.log(key, keyPath);
 | 
	
		
			
				|  |  | -      console.log(key)
 | 
	
		
			
				|  |  |        this.addAgreements(key)
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 查询部门下拉树结构 */
 | 
	
	
		
			
				|  | @@ -4212,7 +4212,6 @@ export default {
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 新增按钮操作 */
 | 
	
		
			
				|  |  |      handleAdd(status) {
 | 
	
		
			
				|  |  | -      this.changefLourd()
 | 
	
		
			
				|  |  |        this.reset()
 | 
	
		
			
				|  |  |        this.form = {
 | 
	
		
			
				|  |  |            fItemsStatus: null,
 | 
	
	
		
			
				|  | @@ -4997,7 +4996,7 @@ export default {
 | 
	
		
			
				|  |  |        let queryParams = { pageNum: 1, pageSize: 10, fName: name, fTypeid: 6};
 | 
	
		
			
				|  |  |        listCorps(queryParams).then((response) => {
 | 
	
		
			
				|  |  |          console.log(response)
 | 
	
		
			
				|  |  | -        this.fSbuOptions = response.rows;
 | 
	
		
			
				|  |  | +        this.fLabourOptions = response.rows;
 | 
	
		
			
				|  |  |        });
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /* 远程模糊查询车队 */
 | 
	
	
		
			
				|  | @@ -5007,7 +5006,7 @@ export default {
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |        let queryParams = { pageNum: 1, pageSize: 10, fName: name, fTypeid: 2};
 | 
	
		
			
				|  |  |        listCorps(queryParams).then((response) => {
 | 
	
		
			
				|  |  | -        this.fSbuOptions = response.rows;
 | 
	
		
			
				|  |  | +        this.fLeetOptions = response.rows;
 | 
	
		
			
				|  |  |        });
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /* 远程模糊查询经营单位 */
 |