chore: 修改参数提示
This commit is contained in:
parent
df1fd3f89e
commit
88b6d8b9d8
@ -574,13 +574,17 @@ const errorWrite = (chat: any, message?: string) => {
|
|||||||
|
|
||||||
function chatMessage(chat?: any, problem?: string, re_chat?: boolean) {
|
function chatMessage(chat?: any, problem?: string, re_chat?: boolean) {
|
||||||
// 浏览器query参数找到接口传参
|
// 浏览器query参数找到接口传参
|
||||||
|
let msg = []
|
||||||
for (let f of apiInputFieldList.value) {
|
for (let f of apiInputFieldList.value) {
|
||||||
if (f.required && !route.query[f.field]) {
|
if (f.required && !route.query[f.field]) {
|
||||||
MsgWarning(`请在接入的URL补全必填参数${f.field}`)
|
msg.push(f.field)
|
||||||
return
|
|
||||||
}
|
}
|
||||||
form_data.value[f.field] = route.query[f.field]
|
form_data.value[f.field] = route.query[f.field]
|
||||||
}
|
}
|
||||||
|
if (msg.length > 0) {
|
||||||
|
MsgWarning(`请在URL中填写参数 ${msg.join('、')}的值`)
|
||||||
|
return
|
||||||
|
}
|
||||||
loading.value = true
|
loading.value = true
|
||||||
if (!chat) {
|
if (!chat) {
|
||||||
chat = reactive({
|
chat = reactive({
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user