增加用户上下文自动刷新,修复上传组件传参问题

This commit is contained in:
孟帅
2023-08-09 10:53:15 +08:00
parent 5538d9b720
commit 4069411156
10 changed files with 608 additions and 534 deletions

View File

@@ -53,9 +53,9 @@ export const columns = [
},
},
{
title: '登录地址',
key: 'addr',
width: 150,
title: '登录IP',
key: 'ip',
width: 120,
},
// {

View File

@@ -57,11 +57,11 @@
rules: [{ trigger: ['blur'] }],
},
{
field: 'addr',
field: 'ip',
component: 'NInput',
label: '登录地址',
label: '登录IP',
componentProps: {
placeholder: '请输入登录地址',
placeholder: '请输入登录IP',
onInput: (e: any) => {
console.log(e);
},