diff --git a/WebRoot/view/ywgl/rywh/tree_audit.html b/WebRoot/view/ywgl/rywh/tree_audit.html
index 839cec50..e66afc26 100644
--- a/WebRoot/view/ywgl/rywh/tree_audit.html
+++ b/WebRoot/view/ywgl/rywh/tree_audit.html
@@ -122,7 +122,7 @@
time: 1300
}, function () {
parent.layer.close(parent.layer.getFrameIndex(window.name));
- // parent.layui.table.reload("data-table");
+ parent.layui.table.reload("data-table");
});
} else {
layer.msg(result.message, {
diff --git a/WebRoot/view/ywgl/rywh/turn_apply_list.html b/WebRoot/view/ywgl/rywh/turn_apply_list.html
new file mode 100644
index 00000000..1b23e213
--- /dev/null
+++ b/WebRoot/view/ywgl/rywh/turn_apply_list.html
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/WebRoot/view/ywgl/rywh/turn_audit_list.html b/WebRoot/view/ywgl/rywh/turn_audit_list.html
index b1bace6e..d04849f9 100644
--- a/WebRoot/view/ywgl/rywh/turn_audit_list.html
+++ b/WebRoot/view/ywgl/rywh/turn_audit_list.html
@@ -18,6 +18,10 @@
color: #1e9fff !important;
}
+ .woo-theme-color-none {
+ color: #cccccc !important;
+ }
+
.woo-tool-span {
margin: 0 3px;
position: relative;
@@ -60,12 +64,21 @@
@@ -100,7 +113,7 @@
{ title: '姓名', field: 'person_name', align: 'center', width: "15%" },
{ title: '转出学校', field: 'source_bureau_name', align: 'center', width: "20%" },
{ title: '调转说明', field: 'apply_message', align: 'center' },
- { title: '状态', field: 'status_name', align: 'center', width: "5%" },
+ { title: '状态', field: 'apply_status_name', align: 'center', width: "5%" },
{ title: '操作', toolbar: '#table-bar', align: 'center', width: "10%" }
]],
skin: 'line',
@@ -135,29 +148,35 @@
}
window.nopass = function (obj) {
- $.ajax({
- url: "/QingLong/teacherYd/checkTeacherTransfer",
- data: {
- "id": obj.data.id,
- "status_id": 3
- },
- type: 'post',
- success: function (result) {
- if (result.success) {
- layer.msg("已拒绝!", {
- icon: 1,
- time: 1300
- }, function () {
- table.reload("data-table");
-
- });
- } else {
- layer.msg(result.message, {
- icon: 2,
- time: 2000
- });
+ layer.confirm('确定要拒绝吗?', {
+ icon: 3,
+ title: '提示'
+ }, function (index) {
+ $.ajax({
+ url: "/QingLong/teacherYd/checkTeacherTransfer",
+ data: {
+ "id": obj.data.id,
+ "status_id": 3,
+ "echo_message": "拒绝"
+ },
+ type: 'post',
+ success: function (result) {
+ if (result.success) {
+ layer.msg("已拒绝!", {
+ icon: 1,
+ time: 1300
+ }, function () {
+ table.reload("data-table");
+
+ });
+ } else {
+ layer.msg(result.message, {
+ icon: 2,
+ time: 2000
+ });
+ }
}
- }
+ });
});
}