fix: 各种提交(日志相关、组件封装相关、订单相关
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled

This commit is contained in:
2025-11-08 15:05:52 +08:00
parent e637a46889
commit 09a423b8dc
29 changed files with 885 additions and 240 deletions

View File

@@ -6,6 +6,18 @@ export const formOptions: VbenFormProps = {
// 默认展开
collapsed: false,
schema: [
{
component: 'VbenInput',
// defaultValue: [dayjs().startOf('month'), dayjs()],
fieldName: 'user_id',
label: '用户ID',
},
{
component: 'VbenInput',
// defaultValue: [dayjs().startOf('month'), dayjs()],
fieldName: 'router',
label: 'api接口',
},
{
component: 'RangePicker',
componentProps: {
@@ -22,7 +34,7 @@ export const formOptions: VbenFormProps = {
content: '查询',
},
// 是否在字段值改变时提交表单
submitOnChange: true,
submitOnChange: false,
// 按下回车时是否提交表单
submitOnEnter: false,
submitOnEnter: true,
};

View File

@@ -33,6 +33,7 @@ export const gridOptions: VxeGridProps<RowType> = {
},
{ field: 'url', title: '访问路由' },
{ field: 'ip', title: '用户IP地址' },
{ field: 'ip_address', title: 'IP归属地' },
{ field: 'controller', title: '访问控制器' },
// { field: 'param', title: '携带参数' },
{ field: 'equipment', title: '操作系统', slots: { default: 'equipment' }, width: 80 },