|
|
@@ -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" }, |
|
|
|