|
|
@@ -351,11 +351,23 @@ var bootstrap = function ($, learun) { |
|
|
|
{ label: "户口所在地", name: "FatherUnit", width: 100, align: "left" }, |
|
|
|
{ label: "档案所在地", name: "MatherUnit", width: 100, align: "left" }, |
|
|
|
{ |
|
|
|
label: "异动状态", name: "AbmormityMoveMark", width: 80, align: "center", |
|
|
|
label: "异动状态", name: "MoveStatus", width: 80, align: "center", |
|
|
|
formatter: function (cellvalue) { |
|
|
|
return cellvalue == "1" ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>"; |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "异动类型", name: "MoveType", width: 100, align: "left" , |
|
|
|
formatterAsync: function (callback, value, row, op, $cell) { |
|
|
|
learun.clientdata.getAsync('dataItem', { |
|
|
|
key: value, |
|
|
|
code: 'StuChangeType', |
|
|
|
callback: function (_data) { |
|
|
|
callback(_data.text); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: "审核状态", name: "CheckMark", width: 80, align: "center", |
|
|
|
formatter: function (cellvalue) { |
|
|
|