From 3b07f4f97919e2565f858de956bc3a0d965bef97 Mon Sep 17 00:00:00 2001 From: zhaogan Date: Thu, 30 May 2024 21:38:04 +0800 Subject: [PATCH] reverse data modify Signed-off-by: zhaogan --- modulecheck/routerMap.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/modulecheck/routerMap.json b/modulecheck/routerMap.json index a40a25cd..c77df686 100644 --- a/modulecheck/routerMap.json +++ b/modulecheck/routerMap.json @@ -15,7 +15,8 @@ "name", "pageSourceFile", "buildFunction", - "data" + "data", + "routerData" ] }, "properties": { @@ -35,7 +36,15 @@ "maxLength": 1023 }, "data": { - "description": "Indicates the custom data", + "description": "Indicates the custom data, which can only be configured to accommodate custom data of string type.", + "type": "object", + "maxProperties": 128, + "additionalProperties": { + "type": "string" + } + }, + "routerData": { + "description": "Indicates the custom router data, which can be configured to accommodate any type of custom data.", "type": "object" } }, -- Gitee