for admin form page

This commit is contained in:
hsueh chiahao
2025-10-11 22:56:59 +08:00
parent 2793c70010
commit c88e1faa7c
10 changed files with 445 additions and 17 deletions

View File

@@ -6,17 +6,17 @@
import { addFieldLabel } from './features/add-field-label/main.js';
/**
* 运行主要的 Kintone Helper 函数
* 主入口函数:协调并运行所有扩展功能
* @returns {Promise<void>}
*/
export const runKintoneHelper = async () => {
try {
await addFieldLabel();
} catch (error) {
console.error('Kintone Helper execution failed:', error);
console.error('Kintone Helper Extension execution failed:', error);
throw error;
}
};
// 目前立即执行
// 立即执行主函数
runKintoneHelper();