|
@@ -362,7 +362,7 @@ const formConfig = computed(() => {
|
|
|
itemWidth: 100,
|
|
|
isLoad: {
|
|
|
url: "/tenantUser/list",
|
|
|
- labelKey: "userName",
|
|
|
+ labelKey: "nickName",
|
|
|
labelVal: "userId",
|
|
|
method: "get",
|
|
|
resUrl: "rows",
|
|
@@ -397,7 +397,7 @@ const formConfigAllocation = computed(() => {
|
|
|
itemWidth: 100,
|
|
|
isLoad: {
|
|
|
url: "/tenantUser/list",
|
|
|
- labelKey: "userName",
|
|
|
+ labelKey: "nickName",
|
|
|
labelVal: "userId",
|
|
|
method: "get",
|
|
|
resUrl: "rows",
|
|
@@ -629,7 +629,7 @@ const getDict = () => {
|
|
|
proxy.get("/tenantUser/list", { pageNum: 1, pageSize: 10000, tenantId: useUserStore().user.tenantId }).then((res) => {
|
|
|
userList.value = res.rows.map((item) => {
|
|
|
return {
|
|
|
- label: item.userName,
|
|
|
+ label: item.nickName,
|
|
|
value: item.userId,
|
|
|
};
|
|
|
});
|