diff --git a/ruoyi-admin/src/main/resources/templates/system/elExam/exam/exam.html b/ruoyi-admin/src/main/resources/templates/system/elExam/exam/exam.html
index ffc02d8..3602c60 100644
--- a/ruoyi-admin/src/main/resources/templates/system/elExam/exam/exam.html
+++ b/ruoyi-admin/src/main/resources/templates/system/elExam/exam/exam.html
@@ -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 ' ';
+ } else {
+ return ' ';
+ }
+ }
+
+ /* 停用 */
+ 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 });
+ })
+ }
+