feature(web): 增加时间线 Rollback 和 Clean 的查询

This commit is contained in:
2023-07-06 19:26:49 +08:00
parent f0c4031365
commit a5a9f600f1
8 changed files with 571 additions and 26 deletions

View File

@@ -29,6 +29,10 @@
margin: 0;
padding: 0;
}
.no-resize textarea {
resize: none !important;
}
</style>
</head>
<body>
@@ -72,7 +76,8 @@
]
}
}
amis.embed(
let debug = true
let server = amis.embed(
'#root',
amisJSON,
{
@@ -83,9 +88,12 @@
},
{
theme: 'ang',
// enableAMISDebug: true,
enableAMISDebug: debug,
},
)
);
if (debug) {
console.log('Source', amisJSON)
}
})()
</script>
</body>