代码拉取完成,页面将自动刷新
def handler(fn):
def inner(*args, **kwargs):
res = fn(*args, **kwargs)
content = [
{
"h4": {
"content": res["name"],
},
},
{
"txt": {
"content": f"等级: {res['level']}",
},
},
{
"txt": {
"content": f"硬币: {res['coin']}",
},
},
{
"txt": {
"content": f"经验: {res['exp']}",
},
},
]
watch = res.get("watch")
if watch is not None:
content.append(
{
"txt": {
"content": watch,
}
}
)
share = res.get("share")
if share is not None:
content.append(
{
"txt": {
"content": f"分享视频: {share}",
}
}
)
coins = res.get("coins")
if coins is not None:
content.append(
{
"h5": {
"content": "投币",
},
"orderedList": {
"content": coins,
},
}
)
comics = res.get("comics")
if comics is not None:
content.extend(
[
{
"h5": {
"content": "漫画签到",
},
"txt": {
"content": f"连续签到 {comics} 天",
},
},
]
)
lb = res.get("lb")
if lb is not None:
content.extend(
[
{
"h5": {
"content": "直播",
},
"txt": {
"content": lb["raward"],
},
},
]
)
toCoin = res.get("toCoin")
if toCoin is not None:
content.append(
{
"h5": {
"content": "银瓜子兑换硬币",
},
"txt": {
"content": toCoin,
},
}
)
return content
return inner
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。