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 ThrowOnError
>({ >({
...options, ...options,
...formDataBodySerializer,
url: '/OneNETAccount/InsertAsync', url: '/OneNETAccount/InsertAsync',
}); });
}; };

View File

@ -259,5 +259,16 @@
"DeviceCreateTime": "Device Create Time", "DeviceCreateTime": "Device Create Time",
"DeviceUpdateTime": "Device Update Time", "DeviceUpdateTime": "Device Update Time",
"DeviceLastActiveTime": "Device Last Active 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

@ -263,8 +263,7 @@
"DeviceLastActiveTime": "设备最后活跃时间" "DeviceLastActiveTime": "设备最后活跃时间"
}, },
"OneNETManagement": { "OneNETManagement": {
"AccountName": "账号名称", "AccountName": "账号名称",
"AccountId": "账号ID",
"PhoneNumber": "手机号码", "PhoneNumber": "手机号码",
"AccountAccesskey": "账户通信密钥", "AccountAccesskey": "账户通信密钥",
"ProductCount": "产品数量", "ProductCount": "产品数量",

View File

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