feat: 增加警示信息图标渲染

This commit is contained in:
2023-08-24 14:27:31 +08:00
parent d92a75e2b5
commit 5a9cbd09e6
191 changed files with 4313 additions and 6 deletions

View File

@@ -57,7 +57,7 @@ class ImportConfig {
for ((index, value) in params.withIndex()) {
// 前2个参数确定为对象本身和RenderEntity因此自定义参数从index+2开始设置
if (methodParams.size>index+2) {
callByParams[methodParams[index+2]] = value
callByParams[methodParams[index+2]] = value.replace("'", "")
}
}
when(val result = method.callBy(callByParams)) { // 如果方法返回的数据类型是boolean且返回为false则该数据不处理