From d09828cdec78a160f4530a8ab245216ed8671c27 Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期三, 20 九月 2023 18:43:48 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-management/src/main/webapp/static/modular/system/tStudent/tStudent.js | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 deletions(-) diff --git a/cloud-server-management/src/main/webapp/static/modular/system/tStudent/tStudent.js b/cloud-server-management/src/main/webapp/static/modular/system/tStudent/tStudent.js index 13c9571..c25024a 100644 --- a/cloud-server-management/src/main/webapp/static/modular/system/tStudent/tStudent.js +++ b/cloud-server-management/src/main/webapp/static/modular/system/tStudent/tStudent.js @@ -62,7 +62,7 @@ }; /** - * 打开查看详情 + * 打开修改 */ TStudent.openTStudentDetail = function () { if (this.check()) { @@ -78,6 +78,26 @@ } }; + +/** + * 打开详情 + */ +TStudent.openTStudentDetail1 = function () { + if (this.check()) { + var index = layer.open({ + type: 2, + title: '详情', + area: ['100%', '100%'], //宽高 + fix: false, //不固定 + maxmin: true, + content: Feng.ctxPath + '/tStudent/tStudent_info/' + TStudent.seItem.id + }); + this.layerIndex = index; + } +}; + + + /** * 删除 */ -- Gitblit v1.7.1