eos中数据字典转换的两种方式:


方式一:在datagrid中的列需要转换数据字典

<div field="pkgType" headerAlign="center" allowSort="true" dicttypeid="PKG_TYPE" renderer="pkgTypeData"  >                        
<b:message key="column.pac_type"/>
</div>


js中需写个转换函数

function pkgTypeData(e) {
return nui.getDictText("PKG_TYPE",
e.value);
}


方式二:下拉框中需要数据字典转换

<td>
<input id="dictcombobox_billType" name="entity.billType" required="true" class="nui-dictcombobox" dictTypeId="BILL_TYPE" style="width:100%;"/>
</td>