|  | @@ -56,8 +56,8 @@
 | 
	
		
			
				|  |  |                  </el-select>
 | 
	
		
			
				|  |  |                  <crop-select v-else-if="item.prop === 'belongtocompany'" v-model="form[item.prop]"
 | 
	
		
			
				|  |  |                    @getCorpData="getCorpName" corpType="GS"></crop-select>
 | 
	
		
			
				|  |  | -                <el-input type="text" v-else-if="item.prop === 'initials'" v-model="form[item.prop]" size="small" autocomplete="off"
 | 
	
		
			
				|  |  | -                  :disabled="item.disabled" show-word-limit maxlength="1"></el-input>
 | 
	
		
			
				|  |  | +                <el-input type="text" v-else-if="item.prop === 'initials'" v-model="form[item.prop]" size="small"
 | 
	
		
			
				|  |  | +                  autocomplete="off" :disabled="item.disabled" show-word-limit maxlength="1"></el-input>
 | 
	
		
			
				|  |  |                  <el-input type="age" v-else v-model="form[item.prop]" size="small" autocomplete="off"
 | 
	
		
			
				|  |  |                    :disabled="item.disabled"></el-input>
 | 
	
		
			
				|  |  |                </el-form-item>
 | 
	
	
		
			
				|  | @@ -730,7 +730,7 @@ export default {
 | 
	
		
			
				|  |  |              label: "代理商编码",
 | 
	
		
			
				|  |  |              prop: "agentCode",
 | 
	
		
			
				|  |  |              span: 8
 | 
	
		
			
				|  |  | -          },{
 | 
	
		
			
				|  |  | +          }, {
 | 
	
		
			
				|  |  |              label: "首字母",
 | 
	
		
			
				|  |  |              prop: "initials",
 | 
	
		
			
				|  |  |              span: 8
 | 
	
	
		
			
				|  | @@ -867,6 +867,19 @@ export default {
 | 
	
		
			
				|  |  |        });
 | 
	
		
			
				|  |  |      } else if (this.detailData.treeDeptId) {
 | 
	
		
			
				|  |  |        this.$set(this.form, "corpsTypeId", this.detailData.treeDeptId);
 | 
	
		
			
				|  |  | +      if (this.$route.query) {
 | 
	
		
			
				|  |  | +        this.$set(this.form, "cname", this.$route.query.corpName);
 | 
	
		
			
				|  |  | +        this.$router.push({
 | 
	
		
			
				|  |  | +          query: {}
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +    } else {
 | 
	
		
			
				|  |  | +      if (this.$route.query) {
 | 
	
		
			
				|  |  | +        this.$set(this.form, "cname", this.$route.query.corpName);
 | 
	
		
			
				|  |  | +        this.$router.push({
 | 
	
		
			
				|  |  | +          query: {}
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |      gainUser().then(res => {
 | 
	
		
			
				|  |  |        this.userList = res.data.data;
 |