You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
<template> |
|
<BasicModal v-bind="$attrs" @register="registerModal" title="IP 查询" @ok="handleSubmit"> |
|
<BasicForm @register="registerForm" /> |
|
</BasicModal> |
|
</template> |
|
<script lang="ts" setup name="SystemAreaModal"> |
|
import { BasicModal, useModalInner } from '@/components/Modal' |
|
import { BasicForm, useForm } from '@/components/Form' |
|
import { formSchema } from './area.data' |
|
import { getAreaByIp } from '@/api/system/area' |
|
|
|
const [registerForm, { setFieldsValue, resetFields, validate }] = useForm({ |
|
labelWidth: 120, |
|
baseColProps: { span: 24 }, |
|
schemas: formSchema, |
|
showActionButtonGroup: false, |
|
actionColOptions: { span: 23 } |
|
}) |
|
|
|
const [registerModal, { setModalProps }] = useModalInner(async () => { |
|
resetFields() |
|
setModalProps({ confirmLoading: false }) |
|
}) |
|
|
|
async function handleSubmit() { |
|
try { |
|
const values = await validate() |
|
setModalProps({ confirmLoading: true }) |
|
console.info(values) |
|
const res = await getAreaByIp(values.ip) |
|
if (res) { |
|
values.result = res |
|
setFieldsValue({ ...values }) |
|
} |
|
} finally { |
|
setModalProps({ confirmLoading: false }) |
|
} |
|
} |
|
</script>
|
|
|