|  | @@ -25,10 +25,10 @@
 | 
	
		
			
				|  |  |            />
 | 
	
		
			
				|  |  |          </el-select>
 | 
	
		
			
				|  |  |        </el-form-item>
 | 
	
		
			
				|  |  | -      <el-form-item label="账户名称" prop="accountName">
 | 
	
		
			
				|  |  | +      <el-form-item label="账户名称" prop="accountId">
 | 
	
		
			
				|  |  |          <el-select
 | 
	
		
			
				|  |  |            :disabled="!queryParams.ksId"
 | 
	
		
			
				|  |  | -          v-model="queryParams.accountName"
 | 
	
		
			
				|  |  | +          v-model="queryParams.accountId"
 | 
	
		
			
				|  |  |            placeholder="选择账户名称"
 | 
	
		
			
				|  |  |            clearable
 | 
	
		
			
				|  |  |            filterable
 | 
	
	
		
			
				|  | @@ -38,7 +38,7 @@
 | 
	
		
			
				|  |  |              v-for="item in queryParamsList.accountList"
 | 
	
		
			
				|  |  |              :key="item.label"
 | 
	
		
			
				|  |  |              :label="`${item.label}${item.value ? '(' + item.value + ')' : ''}`"
 | 
	
		
			
				|  |  | -            :value="item.label"
 | 
	
		
			
				|  |  | +            :value="item.value"
 | 
	
		
			
				|  |  |            />
 | 
	
		
			
				|  |  |          </el-select>
 | 
	
		
			
				|  |  |        </el-form-item>
 | 
	
	
		
			
				|  | @@ -629,7 +629,7 @@
 | 
	
		
			
				|  |  |        @close="
 | 
	
		
			
				|  |  |          personVisible = false;
 | 
	
		
			
				|  |  |          personList = [];
 | 
	
		
			
				|  |  | -        resetQuery()
 | 
	
		
			
				|  |  | +        resetQuery();
 | 
	
		
			
				|  |  |        "
 | 
	
		
			
				|  |  |      >
 | 
	
		
			
				|  |  |        <el-tag
 | 
	
	
		
			
				|  | @@ -711,7 +711,8 @@ export default {
 | 
	
		
			
				|  |  |          pageNum: 1,
 | 
	
		
			
				|  |  |          pageSize: 10,
 | 
	
		
			
				|  |  |          ksId: undefined,
 | 
	
		
			
				|  |  | -        accountName: undefined,
 | 
	
		
			
				|  |  | +        // accountName: undefined,
 | 
	
		
			
				|  |  | +        accountId: undefined,
 | 
	
		
			
				|  |  |          accountType: undefined,
 | 
	
		
			
				|  |  |          putType: undefined,
 | 
	
		
			
				|  |  |          saleLeaderId: undefined,
 | 
	
	
		
			
				|  | @@ -965,7 +966,7 @@ export default {
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      // 获取快手账户列表
 | 
	
		
			
				|  |  |      getQueryAccountList(ksId) {
 | 
	
		
			
				|  |  | -      this.queryParams.accountName = undefined;
 | 
	
		
			
				|  |  | +      this.queryParams.accountId = undefined;
 | 
	
		
			
				|  |  |        if (!!ksId) {
 | 
	
		
			
				|  |  |          getQueryAccountList({ ksId })
 | 
	
		
			
				|  |  |            .then((res) => {
 |