|
|
|
@ -105,11 +105,10 @@
|
|
|
|
|
sortable: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'state',
|
|
|
|
|
title: '状态',
|
|
|
|
|
align: 'center',
|
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
|
return $.table.selectDictLabel(datas, value);
|
|
|
|
|
formatter: function (value, row, index) {
|
|
|
|
|
return statusTools(row);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -137,6 +136,31 @@
|
|
|
|
|
var url = prefixUser + '/toExam/' + id;
|
|
|
|
|
$.modal.openTab("考试人员", url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户状态显示 */
|
|
|
|
|
function statusTools(row) {
|
|
|
|
|
if (row.state == 1) {
|
|
|
|
|
return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="enable(\'' + row.id + '\')"></i> ';
|
|
|
|
|
} else {
|
|
|
|
|
return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.id + '\')"></i> ';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 停用 */
|
|
|
|
|
function disable(id) {
|
|
|
|
|
$.modal.confirm("确认要停用吗?", function() {
|
|
|
|
|
$.operate.post(prefix + "/changeStatus", { "id": id, "state": 1 });
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 启用 */
|
|
|
|
|
function enable(id) {
|
|
|
|
|
$.modal.confirm("确认要启用吗?", function() {
|
|
|
|
|
$.operate.post(prefix + "/changeStatus", { "id": id, "state": 0 });
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|