# 设置表单全部只读、取消只读、表单查看

//设置编辑表单全部只读
this.setFormReadonly(true);
//取消编辑表单只读
this.setFormReadonly(false);
1
2
3
4