|
@@ -73,10 +73,10 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<div v-if="scope.row.id && editMessage.id!=scope.row.id">
|
|
|
- {{ scope.row.assoAccountId }}
|
|
|
+ {{ scope.row.accountName + '('+ scope.row.accountUserName +')' }}
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <el-select style="width:100%" v-model="scope.row.assoAccountId" placeholder="请选择账号" filterable remote @focus="focusPerson(scope.row.userName)"
|
|
|
+ <el-select style="width:100%" v-model="scope.row.assoAccountId" placeholder="请选择账号" filterable remote @focus="focusPerson(scope.row.accountUserName)"
|
|
|
:popper-append-to-body="false" :remote-method="remoteMethodPerson" v-SelectLazyLoading="lazyLoadingPerson" :disabled="currentEditField && currentEditField!='assoAccountId'"
|
|
|
:loading="personnelList.loading">
|
|
|
<el-option v-for="item in personnelList.data" :key="Number(item.id)" :label="item.name"
|