調整儀錶板和編輯器的界面,新增快速設定按鈕,並添加了相關的測試腳本和模板文件。

This commit is contained in:
2026-05-26 12:04:00 +08:00
parent 03d7eca139
commit f1bc0a30e1
10 changed files with 346 additions and 134 deletions

View File

@@ -2319,7 +2319,7 @@ window.VVVEB_PROJECT_SLUG = "{% endraw %}{{ slug | safe }}{% raw %}";
if(!btn) return;
btn.addEventListener('click', function(e){
var slug = window.VVVEB_PROJECT_SLUG || '';
var url = '/dashboard' + (slug ? ('?slug='+encodeURIComponent(slug)) : '');
var url = '/dashboard/project/' + encodeURIComponent(slug || '');
window.open(url, '_blank');
});
});