chore: 更新依赖库

This commit is contained in:
陈益 2025-07-27 21:46:44 +08:00
parent 55ac423faa
commit 7029e3777e
4 changed files with 18 additions and 7 deletions

View File

@ -3165,6 +3165,7 @@ export const postOneNETAccountCreate = <ThrowOnError extends boolean = false>(
ThrowOnError
>({
...options,
...formDataBodySerializer,
url: '/OneNETAccount/InsertAsync',
});
};

View File

@ -259,5 +259,16 @@
"DeviceCreateTime": "Device Create Time",
"DeviceUpdateTime": "Device Update Time",
"DeviceLastActiveTime": "Device Last Active Time"
},
"OneNETManagement": {
"AccountName": "AccountName",
"PhoneNumber": "PhoneNumber",
"AccountAccesskey": "AccountAccesskey",
"ProductCount": "ProductCount",
"OneNETAccountId": "OneNETAccountId",
"IoTPlatformProductId": "IoTPlatformProductId",
"ProductName": "ProductName",
"ProductAccesskey": "ProductAccesskey",
"IsEncrypted": "IsEncrypted"
}
}

View File

@ -264,7 +264,6 @@
},
"OneNETManagement": {
"AccountName": "账号名称",
"AccountId": "账号ID",
"PhoneNumber": "手机号码",
"AccountAccesskey": "账户通信密钥",
"ProductCount": "产品数量",

View File

@ -17,8 +17,8 @@ export const querySchema = computed(() => [
export const tableSchema: any = computed((): VxeGridProps['columns'] => [
{ title: $t('common.seq'), type: 'seq', width: 50 },
{
field: 'accountId',
title: $t('abp.OneNETManagement.AccountId'),
field: 'oneNETAccountId',
title: $t('abp.OneNETManagement.OneNETAccountId'),
minWidth: '150',
},
{
@ -53,10 +53,10 @@ export const tableSchema: any = computed((): VxeGridProps['columns'] => [
export const addAccountFormSchema: any = computed(() => [
{
component: 'Input',
fieldName: 'accountId',
label: $t('abp.OneNETManagement.AccountId'),
fieldName: 'OneNETAccountId',
label: $t('abp.OneNETManagement.OneNETAccountId'),
rules: z.string().min(1, {
message: `${$t('common.pleaseInput')}${$t('common.info')}${$t('abp.OneNETManagement.AccountId')}`,
message: `${$t('common.pleaseInput')}${$t('common.info')}${$t('abp.OneNETManagement.OneNETAccountId')}`,
}),
},
{