mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-17 13:47:44 +00:00
feat: 版本机制; fix: fix: 绑定设备提示
This commit is contained in:
parent
d34c1d8be1
commit
8425503797
16 changed files with 820 additions and 59 deletions
28
resources/help/version.html
Normal file
28
resources/help/version.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{{extend defaultLayout}}
|
||||
|
||||
{{block 'css'}}
|
||||
<link rel="stylesheet" href="{{@sys.currentPath}}/version.css">
|
||||
{{/block}}
|
||||
|
||||
{{block 'main'}}
|
||||
<div class="card">
|
||||
<% include(sys.specialTitle, {en: 'VERSION' , cn: '版本日志' }) %>
|
||||
<div class="list">
|
||||
{{each versionData version i}}
|
||||
<div class="item">
|
||||
<div class="version">ver {{version.version}}</div>
|
||||
<div class="content no-zzz-font">
|
||||
<ul>
|
||||
{{each version.logs log1 j}}
|
||||
<li>{{@log1.title}}</li>
|
||||
{{each log1.logs log2 k}}
|
||||
<li>{{@log2.title}}</li>
|
||||
{{/each}}
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
{{/block}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue