From 78a4df6ad36a5cdf18d40ef539e0ce9609c71b4f Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期六, 07 十月 2023 15:33:28 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/PlayPai --- cloud-server-management/src/main/webapp/WEB-INF/view/system/coursePackage/examineCoursePackage_info.html | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/coursePackage/examineCoursePackage_info.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/coursePackage/examineCoursePackage_info.html index 9fe4f92..a16fef0 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/coursePackage/examineCoursePackage_info.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/coursePackage/examineCoursePackage_info.html @@ -204,14 +204,15 @@ <div class="form-group"> <label class="col-sm-3 control-label">*审核状态:</label> <div class="col-sm-8" style="margin-top: 6px;"> - <input name="auditStatus" type="radio" value="2"/> 通过 - <input name="auditStatus" type="radio" value="3"/> 拒绝 + <input name="auditStatus" type="radio" value="2" ${auditStatus == 2 ? 'checked' : ''}/> 通过 + <input name="auditStatus" type="radio" value="3" ${auditStatus == 3 ? 'checked':''}/> 拒绝 </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">*拒绝理由:</label> <div class="col-sm-8" style="margin-top: 6px;"> - <textarea id="authRemark" style="width: 100%;height: 200px;" placeholder="请输入拒绝理由"></textarea> + <textarea id="authRemark" style="width: 100%;height: 200px;" placeholder="请输入拒绝理由" >${authRemark!}</textarea> + </div> </div> -- Gitblit v1.7.1