2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 03:20:52 +08:00
xiaoyao-cvs-plugin/resources/user/userInfo.html

50 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2022-08-16 23:46:06 +08:00
{{extend defaultLayout}}
{{block 'css'}}
<link rel="stylesheet" type="text/css" href="{{_res_path}}/user/userInfo.css"/>
<style>
.container {
width: 600px !important;
font-size: 1.125rem;
/* 全局字体大小 */
background-color: rgb(243,242,241);
2022-08-17 21:51:22 +08:00
padding: 20px 0 10px 0 !important;
2022-08-16 23:46:06 +08:00
}
</style>
{{/block}}
{{block 'main'}}
<div class="topTitle">
<div class="title-left">
通行证ID: <span class="passCheck">{{ltuid}}</span>
</div>
<div class="title-right">
{{day}}
</div>
</div>
{{each sumData}}
<div class="list">
2022-08-17 21:51:22 +08:00
<div class="list-title" style="width: {{$index.indexOf('wdy')>=0?'160px':''}};">
2022-08-16 23:46:06 +08:00
{{$index=="Yun"?"云原神":$index=="mysbbs"?"米游社":$index.indexOf("ys")>=0?"原神":$index.indexOf("bh3")>=0?"崩坏3":$index.indexOf("bh2")>=0?"崩坏2":$index.indexOf("wdy")>=0?"未定事件簿":$index}}
</div>
{{each $value item}}
<div class="list-div">
<div>
{{$index}}
</div>
2022-08-17 21:51:22 +08:00
{{if item=="未完成"|| item=="未签到" }}
<div>
<span class="false-color">
{{item}}
</span>
</div>
{{else}}
2022-08-16 23:46:06 +08:00
<div>
{{item}}
</div>
2022-08-17 21:51:22 +08:00
{{/if}}
2022-08-16 23:46:06 +08:00
</div>
{{/each}}
</div>
{{/each}}
{{/block}}