摘要:
//bigDecimal 转换成 Long类型 public static Long bigDecimalToLong(BigDecimal b){ BigDecimal c = new BigDecimal(b); Long l = c.longValue(); return l; } //bigDecimal... 阅读全文
摘要:
pmProjectSelect.combobox({ editable:false, width:165, url : ctx + '/PmProject/findByProjectMgr', //combobox默认选中第一个 onLoadSuccess:function(){ var data = pmProjectSelect.combobox('getData'... 阅读全文