简体中文
setTrsCss
约 77 字小于 1 分钟
2025-12-15
bizApi.setTrsCssA(rowId, style)
设置表格行样式
参数
| 参数 | 说明 | 类型 | 是否必填 |
|---|---|---|---|
| rowId | 从对象数据行ID | String | 是 |
| style | 样式 | Object | 是 |
返回结果
无
基础示例
设置红色背景
export default class Plugin {
apply() {
return [{
event: 'form.render.after',
functional: this.formRendereAfter.bind(this)
}]
}
formRendereAfter(context, plugin) {
context.bizApi.setTrsCss('1711334884102226', {background: 'red'});
}
}