# yizhi-llm-paper-web-dy **Repository Path**: zhangqidaxia/yizhi-llm-paper-web-dy ## Basic Information - **Project Name**: yizhi-llm-paper-web-dy - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-14 - **Last Updated**: 2025-04-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # yizhi-llm-paper-web-dy ## 理想调用 ```javascript const essayEvaluator = new EssayEvaluator({ onMarkClick }); essay.initStage({ container: this.$refs.containerRef, width: stageWidth, height: stageHeight, }); essay.initLayer(groupConfig); essay.renderBgImages(this.essayImageList); // 渲染背景图 essay.renderMask(); //渲染半透明遮罩 essay.renderOrderNumber(); // 渲染序号 essay.renderScore(score); // 渲染分数 essay.bindDragAndScaleEvent(); const changeMarks = (viewType) => { const essayIns = this.essayInstance; essayIns.clearAllMark(); if (newViewType === "comprehensive") { if (this.subject === "english") { this.renderCorrectionMarks(false); } else { this.renderWordsentenceMarks(false); } } else if (newViewType === "paragraph") { this.renderParagraphMarks(); } else if (newViewType === "wordsentence") { this.renderWordsentenceMarks(); } else if (newViewType === "correction") { this.renderCorrectionMarks(); } }; ```