|
|
@@ -21,8 +21,8 @@
|
|
|
<el-option
|
|
|
v-for="item in companyUserOptions"
|
|
|
:key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value">
|
|
|
+ :label="item.dictLabel"
|
|
|
+ :value="item.dictValue">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
@@ -534,6 +534,7 @@ export default {
|
|
|
getCompanyUserListLikeName() {
|
|
|
getCompanyUserListLikeName(this.companyUserOptionsParams).then(response => {
|
|
|
this.companyUserOptions = [...this.companyUserOptions, ...response.data.list]
|
|
|
+ console.log(this.companyUserOptions);
|
|
|
this.companyUserOptionsParams.hasNextPage = response.data.hasNextPage
|
|
|
this.companyUserOptionsLoading = false;
|
|
|
});
|