feat:【system 系统管理】租户管理时,支持填写多个域名 websites

This commit is contained in:
YunaiV
2025-08-19 22:59:07 +08:00
parent fb8179fef2
commit 3b2b0d5438
6 changed files with 56 additions and 16 deletions

View File

@@ -95,9 +95,13 @@ export function useFormSchema(): VbenFormSchema[] {
},
{
label: '绑定域名',
fieldName: 'website',
component: 'Input',
rules: 'required',
fieldName: 'websites',
component: 'Textarea',
componentProps: {
placeholder: '请输入绑定域名,多个域名请换行分隔',
rows: 3,
allowClear: true,
},
},
{
fieldName: 'status',
@@ -211,7 +215,7 @@ export function useGridColumns<T = SystemTenantApi.Tenant>(
formatter: 'formatDateTime',
},
{
field: 'website',
field: 'websites',
title: '绑定域名',
minWidth: 180,
},