更新静态工程
This commit is contained in:
parent
69476ca917
commit
8d1c86d475
|
@ -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 = []
|
||||||
|
|
|
@ -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 = []
|
||||||
|
|
Loading…
Reference in New Issue