feat:考试详情

pg_adapter
wangxy 9 months ago
parent e59a9a66f0
commit e093d88d36

@ -105,11 +105,10 @@
sortable: true sortable: true
}, },
{ {
field: 'state',
title: '状态', title: '状态',
align: 'center', align: 'center',
formatter: function(value, row, index) { formatter: function (value, row, index) {
return $.table.selectDictLabel(datas, value); return statusTools(row);
} }
}, },
{ {
@ -137,6 +136,31 @@
var url = prefixUser + '/toExam/' + id; var url = prefixUser + '/toExam/' + id;
$.modal.openTab("考试人员", url); $.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> </script>
</body> </body>
</html> </html>

Loading…
Cancel
Save