/** * 试用期到期提醒面板 * 功能:试用期到期时显示续费提示 * 依赖:vscode * 使用场景:试用用户到期时显示 */ import * as vscode from 'vscode'; export class ExpiredPanel { public static render() { const panel = vscode.window.createWebviewPanel( 'icCoderExpired', '试用期已到期', vscode.ViewColumn.One, { enableScripts: true } ); panel.webview.html = this.getHtmlContent(); } private static getHtmlContent(): string { return `
感谢您使用 IC Coder!您的 15 天试用期已结束。
如需继续使用,请联系我们获取正式版本。
`; } }