소스 검색

通讯录列表性别列优化

西昌缴费二期
zhangli 2 년 전
부모
커밋
72b5779bfc
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/AddressBook/Index.js

+ 8
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/AddressBook/Index.js 파일 보기

@@ -86,7 +86,14 @@ var bootstrap = function ($, learun) {
{
label: "性别", name: "AGender", width: 200, align: "left",
formatter: function (cellvalue) {
return cellvalue == true ? "男" : "女";
if (cellvalue == true) {
return '男';
} else if (cellvalue == false) {
return '女';
} else {
return '';
}
//return cellvalue == true ? "男" : "女";
}
},
{ label: '单位名称', name: 'ACompany', width: 200, align: "left" },


불러오는 중...
취소
저장