更新静态工程

This commit is contained in:
yaooo 2023-11-23 14:38:54 +08:00
parent 69476ca917
commit 8d1c86d475
2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ const queryUser = async (query: string) => {
loading.value = false loading.value = false
if (userList.count > 0) { if (userList.count > 0) {
userOptions.value = userList.lists.map((user: any) => { userOptions.value = userList.lists.map((user: any) => {
return { value: `${user.id}`, label: `ID: ${user.id} / Account: ${user.account}` } return { value: `${user.id}`, label: `ID: ${user.id} / 账户: ${user.account}` }
}) })
} else { } else {
userOptions.value = [] userOptions.value = []

View File

@ -187,7 +187,7 @@ const queryLand = async (query: string) => {
loading.value = false loading.value = false
if (landList.count > 0) { if (landList.count > 0) {
landOptions.value = landList.lists.map((land: any) => { landOptions.value = landList.lists.map((land: any) => {
return { value: `${land.id}`, label: `ID: ${land.id} / Title: ${land.title}` } return { value: `${land.id}`, label: `ID: ${land.id} / 名称: ${land.title}` }
}) })
} else { } else {
landOptions.value = [] landOptions.value = []